:root {
  --teal: #0B6E61;
  --teal-dark: #08524A;
  --teal-navy: #1A3A4A;
  --teal-deep: #0F2E3D;
  --teal-light: #EAF6F4;
  --teal-muted: #C8E6E2;
  --mint: #7ECEC4;
  --mint-light: #CBE9E6;
  --mint-subtle: #F0FAF9;
  --neutral-white: #FFFFFF;
  --neutral-offwhite: #F7F9F8;
  --neutral-light: #ECEEED;
  --neutral-border: #DDE5E4;
  --text-primary: #162020;
  --text-secondary: #4A5E5C;
  --text-muted: #7A9290;
  --text-light: #FFFFFF;
  --font-display: 'DM Serif Display', serif;
  --font-body: 'Inter', sans-serif;
  --section-py: 96px;
  --section-py-mobile: 64px;
  --radius-card: 16px;
  --radius-pill: 9999px;
  --radius-sm: 8px;
  --shadow-card: 0 1px 4px rgba(11,110,97,0.05), 0 4px 16px rgba(11,110,97,0.05);
  --shadow-card-hover: 0 12px 28px rgba(11,110,97,0.12), 0 2px 8px rgba(11,110,97,0.06);
  --shadow-hero-card: 0 8px 32px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.12);
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--neutral-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.2;
}

*:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.section-pad { padding: var(--section-py) 0; }
@media (max-width: 767px) { .section-pad { padding: var(--section-py-mobile) 0; } }

.ripple-bg {
  background-color: var(--neutral-offwhite);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Ccircle cx='400' cy='400' r='50' fill='none' stroke='%23B8D8E8' stroke-width='1' opacity='0.4'/%3E%3Ccircle cx='400' cy='400' r='100' fill='none' stroke='%23B8D8E8' stroke-width='1' opacity='0.35'/%3E%3Ccircle cx='400' cy='400' r='150' fill='none' stroke='%23B8D8E8' stroke-width='1' opacity='0.3'/%3E%3Ccircle cx='400' cy='400' r='200' fill='none' stroke='%23B8D8E8' stroke-width='1' opacity='0.25'/%3E%3Ccircle cx='400' cy='400' r='250' fill='none' stroke='%23B8D8E8' stroke-width='1' opacity='0.2'/%3E%3Ccircle cx='400' cy='400' r='300' fill='none' stroke='%23B8D8E8' stroke-width='1' opacity='0.15'/%3E%3Ccircle cx='400' cy='400' r='350' fill='none' stroke='%23B8D8E8' stroke-width='1' opacity='0.12'/%3E%3Ccircle cx='400' cy='400' r='400' fill='none' stroke='%23B8D8E8' stroke-width='1' opacity='0.10'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 600px 600px;
  position: relative;
}
.ripple-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247,251,252,0) 0%, rgba(247,251,252,0.3) 100%);
  pointer-events: none;
}

/* Card base */
.card-premium {
  background: var(--neutral-white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card-premium:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--mint);
  color: inherit;
  text-decoration: none;
}

/* Buttons */
.btn-primary-custom {
  background: var(--neutral-white);
  color: var(--teal-navy);
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-primary-custom:hover {
  background: var(--mint-subtle);
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  transform: translateY(-1px);
  color: var(--teal-navy);
  text-decoration: none;
}

.btn-teal {
  background: var(--teal);
  color: var(--text-light);
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(11,110,97,0.28);
  color: var(--text-light);
  text-decoration: none;
}

.btn-nav {
  background: var(--teal-navy);
  color: var(--text-light);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--teal-deep); color: var(--text-light); text-decoration: none; }

.btn-outline-white {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: var(--text-light); text-decoration: none; }

/* Navbar */
.navbar {
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  border-bottom: 1px solid transparent;
  min-height: 88px;
}
.navbar > .container {
  min-height: 88px;
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .navbar, .navbar > .container { min-height: 80px; }
}
@media (max-width: 767px) {
  .navbar, .navbar > .container { min-height: 76px; }
}

/* Navbar brand — logo + divider + tagline in a row */
.navbar-brand {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0;
  text-decoration: none !important;
}

/* Full logo — no cropping */
.navbar-logo-full {
  height: 72px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
@media (max-width: 1023px) { .navbar-logo-full { height: 64px; } }
@media (max-width: 767px)  { .navbar-logo-full { height: 60px; } }

/* Vertical divider between logo and tagline */
.navbar-brand-divider {
  width: 1px;
  height: 24px;
  background-color: #D1D5DB;
  margin-left: 10px;
  margin-right: 10px;
  flex-shrink: 0;
  align-self: center;
}
@media (min-width: 640px) {
  .navbar-brand-divider { height: 28px; margin-left: 14px; margin-right: 14px; }
}
@media (min-width: 1024px) {
  .navbar-brand-divider { height: 36px; margin-left: 22px; margin-right: 18px; }
}

/* Tagline text */
.navbar-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 9px;
  color: #4B5563;
  line-height: 1.35;
  letter-spacing: 0.02em;
  display: block;
  max-width: 120px;
}
@media (min-width: 640px)  { .navbar-tagline { font-size: 11px; max-width: 160px; } }
@media (min-width: 768px)  { .navbar-tagline { font-size: 13px; } }
@media (min-width: 1024px) { .navbar-tagline { font-size: 15px; max-width: 200px; } }
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.nav-brand-name { font-family: var(--font-body); font-weight: 600; font-size: 16px; color: var(--teal-navy); line-height: 1.2; }
.nav-brand-sub { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-muted); }
.navbar .nav-link { font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: color 0.2s ease; }
.navbar .nav-link:hover { color: var(--teal-navy); }

/* Footer */
.footer-link { color: rgba(255,255,255,0.55); font-size: 14px; text-decoration: none; transition: color 0.2s ease; }
.footer-link:hover { color: #7ECEC4; }

/* Glass card */
.glass-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-hero-card);
}

/* Hero gradient (legacy) */
.hero-gradient { background: linear-gradient(135deg, #1A3A4A 0%, #0B6E61 60%, #1A7A6E 100%); }

/* Hero split two-zone layout */
.hero-split {
  display: flex;
  flex-direction: row;
  min-height: clamp(560px, 80vh, 900px);
  position: relative;
  overflow: hidden;
}
.hero-zone-left {
  flex: 1;
  min-height: 100%;
  background: linear-gradient(160deg, #0B6E61 0%, #0B5D52 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(100px, 12vh, 140px) clamp(32px, 5vw, 72px) clamp(48px, 6vh, 80px);
}
.hero-zone-right {
  flex: 1;
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(100px, 12vh, 140px) clamp(24px, 4vw, 56px) clamp(48px, 6vh, 80px);
  overflow: hidden;
}
.hero-zone-cards {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Hero responsive breakpoints */
@media (min-width: 1440px) {
  .hero-split { min-height: 85vh; }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .hero-split { min-height: 78vh; }
}
@media (max-width: 1023px) {
  .hero-split { flex-direction: column; min-height: auto; }
  .hero-zone-left { min-height: auto; padding: 100px 24px 48px; align-items: flex-start; }
  .hero-zone-right { min-height: auto; padding: 48px 24px 56px; }
  .hero-zone-cards { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 767px) {
  .hero-split { min-height: auto; }
  .hero-zone-left { padding: 100px 20px 48px; }
  .hero-zone-right { padding: 40px 20px 56px; }
}

/* Trust bar */
.trust-bar { background: #0F2E3D; overflow: hidden; padding: 14px 0; }
.trust-bar-inner { display: flex; width: max-content; animation: marquee 25s linear infinite; gap: 48px; }
.trust-bar:hover .trust-bar-inner { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 14px; white-space: nowrap; }
.trust-item-num { color: var(--mint); font-weight: 600; font-size: 12px; }

/* Initials circle */
.initials-circle {
  width: 80px; height: 80px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--teal);
}
.initials-circle-lg { width: 120px; height: 120px; font-size: 36px; background: rgba(255,255,255,0.15); color: white; }

/* Badge */
.badge-credential {
  background: var(--teal);
  color: white;
  border-radius: var(--radius-pill);
  font-size: 11px;
  padding: 4px 10px;
  font-weight: 600;
  display: inline-block;
}

/* Specialty pill */
.specialty-pill {
  background: var(--teal-light);
  color: var(--teal);
  border-radius: var(--radius-pill);
  font-size: 13px;
  padding: 8px 16px;
  display: inline-block;
}
.specialty-pill--primary {
  background: linear-gradient(135deg, #E8F4F2 0%, #D0EBE8 100%);
  color: #0B6E61;
  border: 1px solid rgba(11,110,97,0.20);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Service pill toggle */
.service-pill {
  border: 1px solid var(--teal);
  color: var(--teal);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
  font-size: 14px;
  font-family: var(--font-body);
}
.service-pill.selected { background: var(--teal); color: white; }
.service-pill:hover:not(.selected) { background: var(--teal-light); }

/* Hero pill toggle (on dark bg) */
.hero-pill {
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.15s ease;
  background: transparent;
  font-size: 14px;
  font-family: var(--font-body);
}
.hero-pill.selected { background: var(--teal); border-color: var(--teal); }
.hero-pill:hover:not(.selected) { border-color: white; }

/* ── Service Detail Hero ── */
.service-hero {
  background: linear-gradient(135deg, #0B6E61 0%, #0B5D52 60%, #1A3A4A 100%);
  padding: 140px 0 80px;
  min-height: 380px;
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) { .service-hero { padding: 120px 0 70px; } }
@media (max-width: 767px)  { .service-hero { padding: 108px 0 60px; } }
.service-hero-content { max-width: 820px; }
.service-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  max-width: 720px;
}
.service-hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(161, 218, 210, 0.85);
  margin-bottom: 16px;
  display: block;
}
.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 32px;
}

/* ── FAQ Premium Pill Nav ── */
.faq-pill-track-wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 4px;
  padding: 5px;
  background: #F1F5F4;
  border-radius: 9999px;
  margin-top: 48px;
  margin-bottom: 40px;
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.faq-pill-track-wrap::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .faq-pill-track-wrap { flex-wrap: wrap; justify-content: center; }
}

/* Sliding active background — absolutely positioned, moved by JS */
.faq-pill-indicator {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  border-radius: 9999px;
  background: linear-gradient(135deg, #0B6E61 0%, #2A6F97 100%);
  box-shadow: 0 4px 14px rgba(11,110,97,0.28), 0 2px 6px rgba(11,110,97,0.14);
  pointer-events: none;
  transition: left 0.32s cubic-bezier(0.34, 1.2, 0.64, 1),
              width 0.32s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0;
}

.faq-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: none;
  border-radius: 9999px;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #4B5563;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.22s ease;
  outline: none;
}
.faq-pill:hover:not(.active) { color: #0B6E61; }
.faq-pill.active { color: #ffffff; }
.faq-pill:focus-visible {
  outline: 2px solid #0B6E61;
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .faq-pill { padding: 8px 14px; font-size: 13px; }
  .faq-pill-track-wrap { padding-left: 4px; padding-right: 4px; }
}

/* FAQ panel visibility */
.faq-panel { display: none; }
.faq-panel.active { display: block; animation: faqFadeIn 0.25s ease; }
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Progress bar */
.progress-track { height: 8px; border-radius: 999px; background: #EDF3F6; overflow: hidden; position: relative; }
.progress-fill { height: 100%; border-radius: 999px; width: 0%; transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.progress-fill-before { background: var(--teal-muted); }
.progress-fill-after { background: linear-gradient(90deg, #0B6E61, #7ECEC4); }

/* Step circle */
.step-circle {
  width: 56px; height: 56px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 20px;
  flex-shrink: 0;
}
.step-circle-sm {
  width: 44px; height: 44px;
  background: #E8F4FB;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

/* Sticky sidebar */
@media (min-width: 992px) {
  .sidebar-sticky { position: sticky; top: 100px; }
}

/* Underline accent */
.heading-underline { width: 40px; height: 3px; background: var(--teal); border-radius: 2px; margin-top: 12px; }

/* Breadcrumb custom */
.breadcrumb-custom { font-size: 13px; color: rgba(255,255,255,0.6); }
.breadcrumb-custom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb-custom a:hover { color: white; }

/* Section title block */
.section-title-block .eyebrow { margin-bottom: 12px; }
.section-title-block h2 { margin-bottom: 0; }

/* Icon wrapper in cards */
.card-icon { color: var(--teal); transition: transform 0.2s ease; }
.card-premium:hover .card-icon { transform: scale(1.1); }

/* Carousel */
.carousel-container { position: relative; max-width: 100%; margin: 0 auto; }
.carousel-viewport { position: relative; height: 520px; overflow: hidden; border-radius: 20px 20px 0 0; box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 8px 24px rgba(0,0,0,0.20); background: transparent; }
@media (max-width: 768px) { .carousel-viewport { height: 380px; } }
@media (max-width: 480px) { .carousel-viewport { height: 260px; } }
.carousel-slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.04); transition: opacity 0.6s ease, transform 0.6s ease; }
.carousel-slide.active { opacity: 1; transform: scale(1); }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.carousel-caption-bar { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-top: none; border-radius: 0 0 20px 20px; padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; }
.carousel-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px); color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s ease, transform 0.2s ease;
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
}
.carousel-arrow:hover { background: rgba(255,255,255,0.28); transform: translateY(-50%) scale(1.08); }
.carousel-arrow-prev { left: 16px; }
.carousel-arrow-next { right: 16px; }
@media (max-width: 480px) { .carousel-arrow { width: 36px; height: 36px; } .carousel-arrow-prev { left: 10px; } .carousel-arrow-next { right: 10px; } }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.carousel-dot { width: 6px; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.25); border: none; cursor: pointer; transition: width 0.3s ease, background 0.3s ease; padding: 0; }
.carousel-dot.active { width: 20px; background: #7ECEC4; }

/* Accordion */
.accordion-item-custom { border-bottom: 1px solid var(--neutral-border); }
.accordion-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px 20px; text-align: left; background: transparent; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--teal-navy);
  border-radius: var(--radius-sm); transition: background 0.3s ease;
}
.accordion-btn[aria-expanded="true"] { background: rgba(234,246,244,0.5); }
.accordion-icon {
  width: 24px; height: 24px; border-radius: 50%; background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.accordion-btn[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
.accordion-body { padding: 0 20px 16px; color: var(--text-secondary); font-size: 14px; line-height: 1.8; display: none; }
.accordion-body.open { display: block; }

/* Form styles */
.form-control-custom {
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s ease;
  width: 100%;
}
.form-control-custom:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(42,111,151,0.1); outline: none; }
.form-label-custom { font-size: 14px; font-weight: 500; color: var(--text-primary); margin-bottom: 6px; display: block; }

/* Premium hover glow on buttons */
.btn-teal, .btn-primary-custom, .btn-nav {
  position: relative;
  overflow: hidden;
}
.btn-teal::after, .btn-primary-custom::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 0 0 4px rgba(11,110,97,0.1);
}
.btn-teal:hover::after, .btn-primary-custom:hover::after { opacity: 1; }

/* Card hover border-left accent */
.card-premium {
  border-left: 3px solid transparent;
}
.card-premium:hover {
  border-left-color: var(--teal);
}

/* Smooth heading underline reveal */
.heading-underline {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.heading-underline.revealed { transform: scaleX(1); }

/* Glass card hover shimmer */
.glass-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* Step circle pulse on scroll */
.step-circle, .step-circle-sm {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.step-circle.pop { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(11,110,97,0.1); }
.step-circle-sm.pop { transform: scale(1.08); box-shadow: 0 0 0 6px rgba(11,110,97,0.08); }

/* Initials circle hover */
.card-premium:hover .initials-circle {
  transform: scale(1.05);
  transition: transform 0.25s ease;
}

/* Badge subtle glow */
.badge-credential {
  transition: box-shadow 0.2s ease;
}
.card-premium:hover .badge-credential {
  box-shadow: 0 0 0 3px rgba(11,110,97,0.12);
}

/* Navbar logo entrance */
.nav-logo-icon {
  transition: transform 0.3s ease;
}
.nav-logo-icon:hover {
  transform: scale(1.08) rotate(-3deg);
}

/* Section fade-in on scroll */
.section-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }

/* Floating CTA pulse */
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}
.btn-breathe {
  animation: breathe 3s ease-in-out infinite;
}

/* Arrow slide on hover */
.arrow-slide { display: inline-block; transition: transform 0.25s ease; }
a:hover .arrow-slide, button:hover .arrow-slide { transform: translateX(4px); }

/* Team card rectangular photo */
.team-card-img {
  width: 100%;
  height: 200px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
@media (max-width: 991px) { .team-card-img { height: 180px; } }
@media (max-width: 767px)  { .team-card-img { height: 160px; } }

/* Smooth page scroll */
html { scroll-behavior: smooth; }

/* Prevent g-5 Bootstrap rows from causing horizontal scroll.
   .row.g-5 uses -24px margins but .container only has 12px padding,
   creating 12px overflow per side. Clip it at section boundaries.
   overflow-x: clip (not hidden) avoids creating a BFC, so position:sticky
   on sidebar elements inside sections is unaffected. */
section {
  overflow-x: clip;
}

/* Safety net: any residual overflow never creates a horizontal scrollbar */
html {
  overflow-x: hidden;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .trust-bar-inner { animation-play-state: paused; }
  .carousel-slide { transition: opacity 0.2s ease; transform: none !important; }
  .card-premium { transition: none; }
  .progress-fill { transition: none; }
  .section-reveal { opacity: 1; transform: none; transition: none; }
  .stagger-children > * { opacity: 1; transform: none; transition: none; }
  .heading-underline { transform: scaleX(1); transition: none; }
  .btn-breathe { animation: none; }
  .step-circle, .step-circle-sm { transition: none; }
  html { scroll-behavior: auto; }
}
