:root {
  --green-light: #7cce6b;
  --green-medium: #0da428;
  --green-vivid: #0a881f;
  --green-dark: #003a1d;
  --white: #ffffff;
  --black: #000000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  color: var(--green-vivid);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease;
  border-radius: 0.85rem;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.18);
}

/* Contact Widget Styles */
.contact-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  font-family: 'Inter', sans-serif;
}

.contact-widget-trigger {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green-medium), var(--green-vivid));
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(13, 164, 40, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-green 3s infinite;
}

.contact-widget-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(13, 164, 40, 0.6);
}

.contact-widget-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: scale(0.8) translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-widget-panel.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}

.contact-widget-header {
  background: linear-gradient(135deg, var(--green-medium), var(--green-vivid));
  color: white;
  padding: 20px;
  border-radius: 16px 16px 0 0;
  position: relative;
}

.contact-widget-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.contact-widget-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.contact-widget-body {
  padding: 20px;
}

.contact-widget-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.2s ease;
}

.contact-widget-phone:hover {
  background: var(--green-medium);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.contact-widget-form .form-group {
  margin-bottom: 16px;
}

.contact-widget-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--green-dark);
}

.contact-widget-form input,
.contact-widget-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.contact-widget-form input:focus,
.contact-widget-form textarea:focus {
  outline: none;
  border-color: var(--green-medium);
}

.contact-widget-form textarea {
  resize: vertical;
  min-height: 80px;
}

.contact-widget-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--green-medium), var(--green-vivid));
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-widget-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(13, 164, 40, 0.3);
}

@keyframes pulse-green {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(13, 164, 40, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(13, 164, 40, 0.6), 0 0 0 10px rgba(13, 164, 40, 0.1);
  }
}

@media (max-width: 768px) {
  .contact-widget {
    bottom: 15px;
    right: 15px;
  }
  
  .contact-widget-panel {
    width: 280px;
    right: -10px;
  }
  
  .contact-widget-trigger {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}

.logo {
  border-radius: 0;
  box-shadow: none;
}

.card-service img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  animation: card-image-breathe 16s ease-in-out infinite;
}

.card-service:hover img {
  animation: none;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.35);
  filter: brightness(1.05) saturate(1.08);
}

.top-contact-bar {
  background-color: var(--green-dark);
  color: var(--white);
  font-size: 0.875rem;
  padding: 0.25rem 0;
}

.top-contact-bar a {
  color: var(--green-light);
  font-weight: 600;
}

.top-contact-bar a:hover {
  color: var(--green-medium);
}

.navbar {
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar.navbar-scrolled {
  background-color: #ffffff;
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar .navbar-brand {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.logo {
  height: 56px;
  width: auto;
}

.footer .logo {
  height: 72px;
}

.navbar .nav-link {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
  padding-inline: 0.9rem;
}

.navbar .nav-link.active {
  color: var(--green-vivid);
  position: relative;
}

.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.3rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-light), var(--green-vivid));
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--green-vivid);
}

.navbar .nav-phone {
  background: linear-gradient(135deg, var(--green-medium), var(--green-vivid));
  color: var(--white) !important;
  border-radius: 50px;
  padding: 0.5rem 1.25rem !important;
  margin-left: 0.5rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(13, 164, 40, 0.25);
}

.navbar .nav-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 164, 40, 0.4);
  text-decoration: none;
}

.navbar .nav-phone i {
  font-size: 0.9em;
}

@media (max-width: 991px) {
  .navbar .nav-phone {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    display: inline-block;
  }
}

.dropdown-menu {
  background-color: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

.dropdown-item {
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.95rem;
}

.dropdown-item:hover {
  background-color: rgba(124, 206, 107, 0.12);
  color: var(--green-dark);
}

main {
  padding-top: 5.5rem;
}

.hero {
  padding: 4rem 0 3rem;
  background-image: url('../../images/dumpsters-in-jacksonville.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 206, 107, 0.3);
  background: linear-gradient(135deg, rgba(124, 206, 107, 0.15), rgba(13, 164, 40, 0.1));
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.6s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw + 1rem, 3.8rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.75);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 38rem;
  line-height: 1.8;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-highlight {
  color: var(--green-medium);
}

.hero-stats {
  margin-top: 2rem;
}

.hero-stats .stat {
  border-left: 2px solid #ffffff33;
  padding-left: 1rem;
}

.hero-stats .stat strong {
  display: block;
  font-size: 1.35rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: 1.75rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.6s ease,
              filter 0.6s ease;
  animation: hero-image-breathe 12s ease-in-out infinite;
}

.hero-visual:hover img {
  animation: none;
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 36px 90px rgba(15, 23, 42, 0.5);
  filter: brightness(1.06) saturate(1.08);
}

.hero-video {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: block;
}

.section-video {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  border: 4px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.45);
}

.about-video {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

.location-photo {
  border-radius: 1.25rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.28);
  border: 3px solid rgba(255, 255, 255, 0.9);
  outline: 1px solid rgba(124, 206, 107, 0.5);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.5s ease,
              filter 0.5s ease;
  animation: location-photo-breathe 14s ease-in-out infinite;
}

.about-location-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.location-photo:hover {
  animation: none;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.45);
  filter: brightness(1.05) saturate(1.06);
}

.hero-card {
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  backdrop-filter: blur(20px);
  animation: scaleIn 0.8s ease-out 0.6s both;
}

.hero-floating-badge {
  position: absolute;
  top: 6%;
  right: 8%;
  background: linear-gradient(135deg, var(--green-light), var(--green-medium));
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 25px rgba(124, 206, 107, 0.4);
  animation: fadeIn 1s ease-out 1s both, float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(124, 206, 107, 0.03) 0%, rgba(124, 206, 107, 0.08) 50%, rgba(124, 206, 107, 0.03) 100%);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--green-dark);
}

.text-green-dark {
  color: var(--green-dark) !important;
}

h2,
h3,
h4,
.h4,
.h5 {
  color: var(--green-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 42rem;
  line-height: 1.8;
}

/* Hero CTA buttons - emotional motion & glow */
.hero .btn-green-primary,
.hero .btn-outline-green {
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 81, 47, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  animation: hero-btn-float 3s ease-in-out infinite;
}

.hero .btn-green-primary::after,
.hero .btn-outline-green::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.35), transparent 55%);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero .btn-green-primary:hover,
.hero .btn-outline-green:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 81, 47, 0.35);
}

.hero .btn-green-primary:hover::after,
.hero .btn-outline-green:hover::after {
  opacity: 1;
  transform: translateX(4px);
}

@keyframes hero-btn-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.badge-pill {
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}

.badge-green {
  background-color: #7cce6b1a;
  color: var(--green-dark);
}

.btn-green-primary {
  background: linear-gradient(135deg, var(--green-medium), var(--green-vivid));
  color: var(--white);
  border: none;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(10, 136, 31, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-green-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-green-primary:hover {
  background: linear-gradient(135deg, var(--green-vivid), var(--green-medium));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 136, 31, 0.4);
}

.btn-green-primary:hover::before {
  left: 100%;
}

.btn-outline-green {
  border: 2px solid var(--green-vivid);
  color: var(--green-dark);
  background: transparent;
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .btn-outline-green {
  color: #ffffff; /* branco para 'View All Services' */
}

.btn-outline-green:hover {
  background: linear-gradient(135deg, var(--green-vivid), var(--green-medium));
  border-color: var(--green-vivid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 136, 31, 0.3);
}

.btn-cta-pulse {
  position: relative;
  overflow: hidden;
}

.btn-cta-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.6);
  opacity: 0;
  transform: scale(0.9);
  animation: pulse-cta 2s ease-out infinite;
}

@keyframes pulse-cta {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.card-service {
  border-radius: 1.5rem;
  border: 1px solid rgba(10, 136, 31, 0.12);
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, rgba(124, 206, 107, 0.03));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.card-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(124, 206, 107, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card-service:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(10, 136, 31, 0.3);
  box-shadow: 0 20px 60px rgba(10, 136, 31, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-service:hover::before {
  opacity: 1;
}

.card-service img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-service-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.card-service-title::before {
  content: '';
  width: 4px;
  height: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green-medium), var(--green-light));
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-light), var(--green-medium));
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(124, 206, 107, 0.3);
}

.service-sidebar .check-icon {
  width: 1.4rem;
  height: 1.4rem;
  font-size: 0.75rem;
  box-shadow: 0 1px 6px rgba(124, 206, 107, 0.4);
}

.footer {
  background: linear-gradient(180deg, #e5e7eb, #d5d8dd);
  color: var(--green-dark);
  padding: 3rem 0 1.5rem;
}

.footer a {
  color: var(--green-medium);
}

.footer a:hover {
  color: var(--green-vivid);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 2rem;
  padding-top: 1.25rem;
  font-size: 0.85rem;
}

.footer .btn-green-primary {
  color: #ffffff;
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
  color: var(--white);
}

.page-hero.services-hero {
  padding: 5.5rem 0 4.5rem;
  min-height: 60vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../images/demolition-residential.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero.contact-hero {
  padding: 5.5rem 0 4.5rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.8)), url('../images/dumpsters-in-jacksonville.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumb a {
  color: var(--green-light);
}

.breadcrumb .active {
  color: #ffffffbf;
}

.service-layout {
  padding: 3rem 0 3.5rem;
  background: linear-gradient(180deg, rgba(124, 206, 107, 0.04), #ffffff 45%, rgba(124, 206, 107, 0.03));
}

.service-sidebar {
  position: sticky;
  top: 6.5rem;
}

.service-sidebar .list-group-item {
  border: none;
  border-left: 3px solid transparent;
  border-radius: 0;
  padding-left: 0.85rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.service-sidebar .list-group-item.active,
.service-sidebar .list-group-item:hover {
  background-color: #7cce6b1a;
  border-left-color: var(--green-vivid);
  color: var(--green-dark);
  text-decoration: none;
}

.form-control:focus {
  border-color: var(--green-vivid);
  box-shadow: 0 0 0 0.2rem #0a881f40;
}

.badge-location {
  background: linear-gradient(135deg, rgba(124, 206, 107, 0.8), rgba(13, 164, 40, 0.85));
  color: #ffffff;
  border: 1px solid rgba(10, 136, 31, 0.2);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.badge-location:hover {
  background: linear-gradient(135deg, var(--green-light), var(--green-medium));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 206, 107, 0.3);
}

.cta-banner {
  padding: 3.25rem 0;
  background: radial-gradient(circle at 10% 0%, rgba(124, 206, 107, 0.2) 0%, transparent 55%),
              radial-gradient(circle at 90% 100%, rgba(13, 164, 40, 0.25) 0%, transparent 55%),
              linear-gradient(135deg, var(--green-dark), var(--green-medium));
  color: var(--white);
}

.cta-banner h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-banner p {
  margin-bottom: 0;
  max-width: 34rem;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cta-badge-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: radial-gradient(circle, var(--green-light) 0%, var(--green-vivid) 60%, transparent 100%);
  box-shadow: 0 0 0 0 rgba(124, 206, 107, 0.7);
  animation: pulse-dot 1.8s ease-out infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 206, 107, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(124, 206, 107, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(124, 206, 107, 0);
  }
}

@keyframes card-image-breathe {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.02);
  }
}

@keyframes hero-image-breathe {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.03);
  }
}

@keyframes location-photo-breathe {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.03);
  }
}

@media (max-width: 991.98px) {
  main {
    padding-top: 5rem;
  }

  .service-sidebar {
    position: static;
    margin-bottom: 2rem;
  }
  
  .hero {
    padding: 3.5rem 0 2.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-stats {
    margin-top: 1.5rem;
  }

  .hero-floating-badge {
    top: 4%;
    right: 4%;
    font-size: 0.8rem;
    padding-inline: 1.2rem;
  }

  .btn.btn-lg {
    width: 100%;
    justify-content: center;
  }
}

/* Elegant fade/slide animation utilities */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
