/* ═══════════════════════════════════════════════════════════════
   NABH CONSULTING SOLUTIONS — Enterprise Design System v4.0
   Master Corporate Theme: Navy (#003580) + Lime Green (#7CB518) + CTA Orange (#F26419)
   Typography: Playfair Display (Serif Headings) + Inter (Body) + Montserrat (Badges)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;0,900;1,600;1,700&family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@500;600;700;800&display=swap');

:root {
  /* Exact Brand Palette v4.0 */
  --primary-navy: #003580;       /* Enterprise Navy */
  --primary-navy-dark: #001f4d;  /* Deep Navy */
  --primary-navy-light: #0A58CA; /* Accent Blue */
  --accent-green: #7CB518;      /* Signature Lime Green */
  --accent-green-hover: #689912;
  --accent-green-light: #EBF8D3;
  --accent-green-glow: rgba(124, 181, 24, 0.4);

  /* Functional & Surface Colors */
  --cta-orange: #F26419;         /* High-conversion CTA Orange */
  --cta-orange-hover: #D94E07;
  --bg-page: #FFFFFF;
  --bg-surface: #F4F8FF;         /* Warm Off-White / Soft Tint */
  --bg-subtle: #F8FAFD;
  --bg-tint-emerald: #F2F9ED;

  /* Typography & Text */
  --text-dark: #0D1B2A;          /* High contrast text */
  --text-muted: #5A6A7A;         /* Secondary body text */
  --text-light: #8496AC;
  --text-on-dark: #FFFFFF;

  /* Borders & Shadows */
  --border-light: #E2E8F0;
  --border-focus: #B8D5FA;
  --radius-xs: 6px;
  --radius-sm: 8px;              /* Button radius */
  --radius-md: 16px;             /* Card radius */
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --shadow-subtle: 0 2px 10px rgba(0, 53, 128, 0.04);
  --shadow-card: 0 8px 32px rgba(0, 53, 128, 0.10);
  --shadow-card-hover: 0 16px 40px rgba(0, 53, 128, 0.16);
  --shadow-elevated: 0 24px 60px rgba(0, 31, 77, 0.20);

  /* Font Families */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-badge: 'Montserrat', sans-serif;
  --max-width: 1240px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Foundation ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.22;
  letter-spacing: -0.015em;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Dividers & Badges ── */
.gradient-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--primary-navy) 0%, var(--accent-green) 100%);
  width: 100%;
}
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  color: var(--primary-navy);
  border: 1px solid #D6E4FA;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-badge);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.badge-tag.green {
  background: var(--accent-green-light);
  color: #3D6607;
  border-color: #D3EDB1;
}

.section-head {
  max-width: 740px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(32px, 3.8vw, 44px);
  margin-bottom: 14px;
  color: var(--text-dark);
}
.section-head p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Standard Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-badge);
  font-size: 14.5px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary-navy);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 53, 128, 0.25);
}
.btn-primary:hover {
  background: var(--primary-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 53, 128, 0.35);
  color: #FFFFFF;
}
.btn-cta {
  background: var(--cta-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(242, 100, 25, 0.35);
}
.btn-cta:hover {
  background: var(--cta-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(242, 100, 25, 0.45);
  color: #FFFFFF;
}
.btn-outline {
  background: #FFFFFF;
  color: var(--primary-navy);
  border: 1.5px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--primary-navy);
  background: var(--bg-surface);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--accent-green);
  color: #FFFFFF;
  box-shadow: 0 4px 14px var(--accent-green-glow);
}
.btn-green:hover {
  background: var(--accent-green-hover);
  transform: translateY(-2px);
  color: #FFFFFF;
}
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: var(--radius-xs); }
.btn-lg { padding: 15px 32px; font-size: 16px; }

/* ════════════════════════════════════════════════════════════════
   1. TOP INFO BAR + STICKY NAVBAR (v4.0)
   ════════════════════════════════════════════════════════════════ */
.top-info-bar {
  background: #001f4d;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-info-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
}
.top-info-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-info-left a:hover, .top-info-right:hover {
  color: #B5E853;
}
.top-info-right {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #B5E853;
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-menu > a, .nav-dropdown-trigger {
  font-family: var(--font-badge);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 8px 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-menu > a:hover, .nav-dropdown-trigger:hover,
.nav-menu > a.active, .nav-dropdown.open .nav-dropdown-trigger {
  color: var(--primary-navy);
}
.nav-menu > a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--accent-green);
  border-radius: 2px;
}

/* Caret */
.caret-icon { font-size: 10px; transition: transform 0.2s ease; }
.nav-dropdown:hover .caret-icon, .nav-dropdown.open .caret-icon { transform: rotate(180deg); }

/* Nav Mega Menus */
.nav-dropdown { position: relative; }
.mega-menu-wrapper {
  position: absolute;
  top: calc(100% + 12px);
  background: #FFFFFF;
  border: 1px solid #D6E4FA;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1010;
  padding: 24px;
}
.nav-dropdown:hover .mega-menu-wrapper,
.nav-dropdown.open .mega-menu-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-menu-wrapper.services-mega {
  width: 900px;
  left: 0;
  transform: translateY(8px);
}
.nav-dropdown:hover .mega-menu-wrapper.services-mega,
.nav-dropdown.open .mega-menu-wrapper.services-mega { transform: translateY(0); }

.mega-menu-wrapper.industries-mega {
  width: 560px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
}
.nav-dropdown:hover .mega-menu-wrapper.industries-mega,
.nav-dropdown.open .mega-menu-wrapper.industries-mega { transform: translateX(-50%) translateY(0); }

.mega-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mega-service-cat {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: var(--transition);
}
.mega-service-cat:hover {
  background: #FFFFFF;
  border-color: var(--primary-navy-light);
  box-shadow: var(--shadow-subtle);
}
.mega-cat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.mega-cat-head strong {
  font-family: var(--font-badge);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-navy);
}
.mega-sublinks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mega-sublinks-list li a {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.35;
}
.mega-sublinks-list li a:hover {
  color: var(--primary-navy-light);
  padding-left: 2px;
}
.mega-sublinks-list li a span.arrow {
  color: var(--accent-green);
  font-weight: 700;
}

.mega-footer-bar {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mega-footer-bar a {
  font-family: var(--font-badge);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-navy);
}

.mega-industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.industry-item-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-xs);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}
.industry-item-card:hover {
  background: #FFFFFF;
  border-color: var(--primary-navy);
  color: var(--primary-navy);
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--primary-navy);
  border-radius: 2px;
}

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-elevated);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a.drawer-link {
  font-family: var(--font-badge);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-subtle);
}
.drawer-accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: var(--font-badge);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-subtle);
  text-align: left;
}
.drawer-accordion-content {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 10px 0 10px 16px;
  background: var(--bg-surface);
  border-radius: var(--radius-xs);
}
.drawer-accordion-content.open { display: flex; }

/* ════════════════════════════════════════════════════════════════
   2. HERO SECTION — FULL-WIDTH ROTATING SPLIT SLIDER (ACME Style — NABH Brand Colors)
   ════════════════════════════════════════════════════════════════ */
.hero-slider-section {
  position: relative;
  width: 100%;
  min-height: 560px;
  background: #001e50;
  overflow: hidden;
  color: #FFFFFF;
}
.hero-slider-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-navy) 50%, transparent 50%);
  z-index: 5;
  pointer-events: none;
}
.hero-slider-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(315deg, var(--accent-green) 50%, transparent 50%);
  z-index: 5;
  pointer-events: none;
}
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Background overlay rgba(0, 30, 80, 0.82) */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 80, 0.82);
  backdrop-filter: blur(1px);
  z-index: 1;
}

/* Split Content Grid (ACME Style) */
.hero-split-wrapper {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 2px 1.15fr;
  gap: 48px;
  align-items: center;
  padding: 70px 0 90px;
}
.hero-slide-left {
  text-align: left;
}
.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 181, 24, 0.2);
  color: #B5E853;
  border: 1px solid rgba(124, 181, 24, 0.4);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-badge);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.hero-slide-left h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 52px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

/* Vertical Divider in Split Layout: #7CB518 Lime Green */
.hero-slide-divider {
  width: 2px;
  height: 220px;
  background: var(--accent-green);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent-green-glow);
}

/* Right Side Bullet Points */
.hero-slide-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.45;
}
.hero-bullet-item .bullet-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-green);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--accent-green);
}

/* Slider Controls & Dot Indicators */
.hero-dots-container {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  width: 32px;
  border-radius: 6px;
  background: var(--accent-green);
  border-color: var(--accent-green);
  box-shadow: 0 0 12px var(--accent-green-glow);
}

/* ════════════════════════════════════════════════════════════════
   ANIMATED BRAND MANTRA STRIP (Navy Strip Below Hero)
   Plan → Build → Equip → Digitise → Standardise → Accredit → Grow
   ════════════════════════════════════════════════════════════════ */
.brand-mantra-strip {
  background: #001f4d;
  color: #FFFFFF;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow-x: auto;
}
.mantra-flow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.mantra-step-item {
  font-family: var(--font-badge);
  font-size: 14.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
}
.mantra-step-item.active-glow {
  color: #FFFFFF;
  background: var(--accent-green);
  box-shadow: 0 0 20px var(--accent-green-glow);
  transform: scale(1.06);
}
.mantra-connector {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 800;
  font-size: 15px;
}

/* ════════════════════════════════════════════════════════════════
   3. STATS STRIP (5 Counters Animated on Scroll)
   ════════════════════════════════════════════════════════════════ */
.clean-stats-strip {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 36px 0;
}
.stats-grid-clean {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.stat-box-clean {
  text-align: center;
  position: relative;
}
.stat-box-clean:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-light);
}
.stat-box-clean .stat-icon {
  font-size: 24px;
  margin-bottom: 4px;
}
.stat-box-clean .num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box-clean .num span.plus { color: var(--accent-green); }
.stat-box-clean .label {
  font-family: var(--font-badge);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════════
   4. ABOUT SNAPSHOT + PHILOSOPHY BOX (Homepage)
   ════════════════════════════════════════════════════════════════ */
.about-snapshot-section {
  padding: 90px 0;
  background: #FFFFFF;
}
.about-snapshot-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.about-snapshot-text h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  color: var(--primary-navy);
  margin-bottom: 20px;
}
.about-snapshot-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.about-snapshot-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  align-items: center;
}

/* Philosophy Card */
.philosophy-box-card {
  background: linear-gradient(145deg, #001f4d 0%, #003580 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.philosophy-box-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 140px;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--font-serif);
  line-height: 1;
}
.philosophy-box-card .box-badge {
  display: inline-block;
  background: rgba(124, 181, 24, 0.2);
  color: #B5E853;
  border: 1px solid rgba(124, 181, 24, 0.4);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-badge);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.philosophy-box-card h4 {
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.35;
}
.philosophy-box-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 24px;
}
.philosophy-motto-tag {
  font-family: var(--font-badge);
  font-size: 16px;
  font-weight: 700;
  color: #B5E853;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
}

/* ════════════════════════════════════════════════════════════════
   5. 6-CARD SERVICES OVERVIEW & ACCORDION (3x2 Grid)
   ════════════════════════════════════════════════════════════════ */
.services-section-v4 {
  padding: 90px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.services-grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card-v4 {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card-v4:hover {
  transform: translateY(-8px);
  border-left: 4px solid var(--accent-green);
  box-shadow: var(--shadow-card-hover);
}
.service-card-v4.active {
  border-color: var(--primary-navy);
  background: #F0F5FD;
  box-shadow: 0 10px 30px rgba(0, 53, 128, 0.14);
}
.service-card-v4.active::before {
  content: '';
  position: absolute;
  top: -1.5px;
  left: 20px;
  right: 20px;
  height: 4px;
  background: var(--accent-green);
  border-radius: 4px 4px 0 0;
}
.service-card-v4 .card-icon-box {
  width: 56px;
  height: 56px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.service-card-v4 h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--primary-navy);
  margin-bottom: 10px;
}
.service-card-v4 p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}
.service-card-v4 .action-link {
  font-family: var(--font-badge);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Accordion Drawer Surface (3 Columns) */
.service-expanded-drawer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  margin-top: 0;
}
.service-expanded-drawer.open {
  max-height: 2500px;
  opacity: 1;
  margin-top: 32px;
}
.drawer-card-surface {
  background: #FFFFFF;
  border: 1.5px solid #CBDDF7;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.drawer-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: var(--transition);
}
.drawer-close-btn:hover { background: var(--border-light); color: var(--text-dark); }

.drawer-3col {
  display: grid;
  grid-template-columns: 1.15fr 1fr 310px;
  gap: 36px;
}
.col-overview h3 {
  font-size: 26px;
  color: var(--primary-navy);
  margin-bottom: 14px;
}
.col-overview p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.why-matters-box {
  background: var(--bg-tint-emerald);
  border-left: 3px solid var(--accent-green);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 20px;
}
.why-matters-box strong {
  display: block;
  font-family: var(--font-badge);
  font-size: 13.5px;
  color: #386008;
  margin-bottom: 4px;
}
.why-matters-box p {
  font-size: 14px;
  color: #2F4213;
  margin-bottom: 0;
  line-height: 1.5;
}

.col-process h4 {
  font-family: var(--font-badge);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.clean-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.clean-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
}
.clean-check-list li .chk {
  color: var(--accent-green);
  font-weight: 800;
  flex-shrink: 0;
}

.numbered-step-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.numbered-step-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-dark);
}
.numbered-step-list .step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.timeline-callout {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  color: var(--primary-navy);
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-weight: 600;
}

/* Sticky Right Consultation Column */
.col-cta-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.col-cta-card h4 {
  font-size: 18px;
  color: var(--primary-navy);
  margin-bottom: 6px;
}
.col-cta-card p.sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.mini-callback-form input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xs);
  font-size: 13.5px;
  margin-bottom: 8px;
  outline: none;
}

/* Quality 4 Sub-Options */
.nabh-sub-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.nabh-sub-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.nabh-sub-card:hover, .nabh-sub-card.active {
  background: #FFFFFF;
  border-color: var(--accent-green);
  box-shadow: var(--shadow-subtle);
}
.nabh-sub-card.active {
  border-color: var(--primary-navy);
  background: #F0F5FD;
}
.nabh-sub-card strong {
  display: block;
  font-size: 13.5px;
  color: var(--primary-navy);
  margin-bottom: 4px;
}
.nabh-sub-card span {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════════
   6. FOUNDER'S MESSAGE SECTION ⭐ (NEW v4.0)
   ════════════════════════════════════════════════════════════════ */
.founder-section {
  padding: 90px 0;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.founder-grid-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.founder-photo-col {
  text-align: center;
}
.founder-photo-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-card);
  display: inline-block;
  max-width: 360px;
  width: 100%;
}
.founder-photo-card img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 16px;
}
.founder-name-plate strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--primary-navy);
}
.founder-name-plate span {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}
.founder-credential-badge {
  display: inline-block;
  background: var(--accent-green-light);
  color: #3D6607;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-badge);
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
}

/* Founder Message Copy Column */
.founder-message-col {
  position: relative;
  border-left: 4px solid var(--accent-green);
  padding-left: 36px;
}
.founder-quote-watermark {
  position: absolute;
  top: -40px;
  left: 20px;
  font-size: 140px;
  color: rgba(124, 181, 24, 0.15);
  font-family: var(--font-serif);
  line-height: 1;
  pointer-events: none;
}
.founder-message-col h3 {
  font-size: clamp(28px, 3.4vw, 38px);
  color: var(--primary-navy);
  margin-bottom: 6px;
}
.founder-message-col .founder-subhead {
  font-family: var(--font-badge);
  font-size: 15px;
  font-weight: 700;
  color: var(--cta-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.founder-message-col .quote-paragraph {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-style: normal;
}
.founder-sign-off {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.founder-sign-off strong {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--primary-navy);
  display: block;
}
.founder-sign-off span {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════════
   7. VISION & MISSION SECTION ⭐ (NEW v4.0)
   ════════════════════════════════════════════════════════════════ */
.vision-mission-section {
  padding: 80px 0;
  background: #FFFFFF;
}
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.vision-card {
  background: linear-gradient(145deg, #001f4d 0%, #003580 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 44px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vision-card .icon-bubble {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.vision-card h3 {
  font-size: 28px;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.vision-card p {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.mission-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 44px;
  box-shadow: var(--shadow-card);
}
.mission-card .icon-bubble {
  width: 52px;
  height: 52px;
  background: var(--accent-green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.mission-card h3 {
  font-size: 28px;
  color: var(--primary-navy);
  margin-bottom: 12px;
}
.mission-card p.lead-m {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}
.mission-strive-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mission-strive-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.mission-strive-list li .chk {
  color: var(--accent-green);
  font-weight: 800;
}

/* ════════════════════════════════════════════════════════════════
   8. CLIENT MARQUEE & FEATURED CLIENTS ROW (v4.0)
   ════════════════════════════════════════════════════════════════ */
.clients-marquee-section {
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.featured-clients-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.featured-client-card {
  background: #FFFFFF;
  border: 1.5px solid #D6E4FA;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
}
.featured-client-card:hover {
  border-color: var(--primary-navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.featured-tag {
  display: inline-block;
  background: var(--primary-navy);
  color: #FFFFFF;
  font-family: var(--font-badge);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
.featured-tag.college { background: var(--primary-navy); }
.featured-tag.charity { background: #3D6607; }
.featured-tag.govt { background: #007072; }
.featured-client-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--primary-navy-dark);
  margin-bottom: 2px;
}
.featured-client-card span {
  font-size: 12.5px;
  color: var(--text-muted);
}

.marquee-row {
  display: flex;
  overflow: hidden;
  user-select: none;
  margin-bottom: 14px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track-smooth {
  display: flex;
  gap: 14px;
  animation: scrollInfinite 50s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-track-smooth.reverse {
  animation-direction: reverse;
}
.marquee-badge {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-family: var(--font-badge);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}
.marquee-badge .hosp-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
}
@keyframes scrollInfinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════════
   9. HOW WE WORK — 7-STEP JOURNEY TIMELINE (v4.0)
   ════════════════════════════════════════════════════════════════ */
.journey-timeline-section {
  padding: 90px 0;
  background: #FFFFFF;
}
.timeline-7steps-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  position: relative;
  margin-top: 40px;
}
.timeline-7steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-navy) 0%, var(--accent-green) 100%);
  z-index: 1;
}
.journey-step-card {
  position: relative;
  z-index: 2;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}
.journey-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-green);
  box-shadow: var(--shadow-card);
}
.journey-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-badge);
  font-size: 14px;
  font-weight: 700;
  margin: 0 auto 12px;
  box-shadow: 0 4px 10px rgba(0, 53, 128, 0.2);
}
.journey-step-card h4 {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--primary-navy);
  margin-bottom: 4px;
}
.journey-step-card .subtag {
  font-family: var(--font-badge);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.journey-step-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════════
   10. OUR SPECIALISED PARTNER NETWORK SECTION
   ════════════════════════════════════════════════════════════════ */
.partner-network-section {
  padding: 90px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.partner-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.partner-domain-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow-subtle);
}
.partner-domain-card:hover {
  border-color: var(--primary-navy-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.partner-domain-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.partner-domain-info h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--primary-navy);
  margin-bottom: 6px;
}
.partner-domain-info p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ════════════════════════════════════════════════════════════════
   11. TESTIMONIALS SLIDING CAROUSEL (6 Slides v4.0)
   ════════════════════════════════════════════════════════════════ */
.testimonials-sliding-section {
  padding: 90px 0;
  background: #FFFFFF;
}
.slider-container-clean {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
}
.slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-clean-card {
  min-width: 100%;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
}
.slide-photo-side {
  height: 100%;
  min-height: 320px;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.slide-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-text-side {
  padding: 44px 40px;
}
.star-rating {
  color: #F59E0B;
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.quote-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.doctor-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-navy);
}
.hospital-city {
  font-size: 13.5px;
  color: var(--text-muted);
}

.slider-nav-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.slider-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  color: var(--primary-navy);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-nav-btn:hover {
  background: var(--primary-navy);
  color: #FFFFFF;
}
.slider-dots-box {
  display: flex;
  gap: 8px;
}
.slider-dot-item {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot-item.active {
  width: 28px;
  border-radius: 6px;
  background: var(--primary-navy);
}

/* ════════════════════════════════════════════════════════════════
   12. FINAL HIGH-CONVERSION CTA STRIP
   ════════════════════════════════════════════════════════════════ */
.final-cta-clean {
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, #004299 60%, var(--accent-green) 100%);
  color: #FFFFFF;
  padding: 85px 0;
  text-align: center;
}
.final-cta-clean h2 {
  font-size: clamp(32px, 4vw, 46px);
  color: #FFFFFF;
  margin-bottom: 16px;
}
.final-cta-clean p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 36px;
}
.final-cta-clean .btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════════
   13. CLEAN CORPORATE FOOTER
   ════════════════════════════════════════════════════════════════ */
.site-footer {
  background: #08162B;
  color: #A0AEC0;
  padding: 70px 0 0;
  font-size: 14.5px;
}
.footer-grid-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand-col img {
  height: 48px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.footer-brand-col p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #8C9CAE;
}
.footer-heading {
  font-family: var(--font-badge);
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-list a {
  color: #8C9CAE;
}
.footer-links-list a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #8C9CAE;
}
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0 30px;
  text-align: center;
  font-size: 13px;
  color: #64748B;
}

/* ════════════════════════════════════════════════════════════════
   14. STICKY FLOATING CONTACT DOCK
   ════════════════════════════════════════════════════════════════ */
.floating-actions-dock {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.dock-main-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--cta-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: var(--transition);
}
.dock-main-btn:hover { transform: scale(1.08); }
.dock-main-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--cta-orange);
  animation: waPulse 2s infinite;
}
.dock-main-icon {
  position: absolute;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.dock-main-icon.icon-close { opacity: 0; transform: rotate(-90deg) scale(0.4); }
.floating-actions-dock.active .dock-main-icon.icon-open { opacity: 0; transform: rotate(90deg) scale(0.4); }
.floating-actions-dock.active .dock-main-icon.icon-close { opacity: 1; transform: rotate(0) scale(1); }

.dock-sub-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.9);
  transition: var(--transition);
}
.floating-actions-dock.active .dock-sub-actions {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.dock-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  position: relative;
  transition: var(--transition);
}
.dock-btn:hover { transform: scale(1.1); }
.dock-btn.phone-btn { background: var(--primary-navy); }
.dock-btn.wa-btn { background: #25D366; }
.dock-btn.wa-btn::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.dock-btn.loc-btn { background: #3B82F6; }

.dock-tooltip {
  position: absolute;
  right: 64px;
  background: var(--primary-navy-dark);
  color: #FFFFFF;
  font-family: var(--font-badge);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.dock-btn:hover .dock-tooltip { opacity: 1; right: 60px; }

.office-info-popover {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  width: 260px;
  box-shadow: var(--shadow-elevated);
  display: none;
  font-size: 13px;
  color: var(--text-dark);
  text-align: left;
}
.office-info-popover.active { display: block; }
.office-info-popover strong {
  display: block;
  font-family: var(--font-serif);
  color: var(--primary-navy);
  margin-bottom: 4px;
}

/* ════════════════════════════════════════════════════════════════
   15. RESPONSIVE OPTIMIZATIONS
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-split-wrapper { grid-template-columns: 1fr; gap: 24px; }
  .hero-slide-divider { display: none; }
  .about-snapshot-grid { grid-template-columns: 1fr; }
  .services-grid-3x2 { grid-template-columns: repeat(2, 1fr); }
  .drawer-3col { grid-template-columns: 1fr 1fr; }
  .col-cta-card { grid-column: 1 / -1; }
  .founder-grid-split { grid-template-columns: 1fr; text-align: center; }
  .founder-message-col { border-left: none; padding-left: 0; border-top: 3px solid var(--accent-green); padding-top: 24px; }
  .vision-mission-grid { grid-template-columns: 1fr; }
  .timeline-7steps-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline-7steps-grid::before { display: none; }
  .partner-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .featured-clients-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid-layout { grid-template-columns: 1fr 1fr; }
  .slide-clean-card { grid-template-columns: 1fr; }
  .slide-photo-side { min-height: 220px; }
  .mega-menu-wrapper.services-mega { width: 720px; }
  .mega-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-info-bar { display: none; }
  .nav-menu, .header-actions .btn { display: none; }
  .hamburger-btn { display: flex; }
  .hero-slide-left h1 { font-size: 28px; }
  .hero-bullet-item { font-size: 15px; }
  .stats-grid-clean { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-box-clean:not(:last-child)::after { display: none; }
  .services-grid-3x2 { grid-template-columns: 1fr; }
  .drawer-3col { grid-template-columns: 1fr; }
  .nabh-sub-cards { grid-template-columns: 1fr; }
  .timeline-7steps-grid { grid-template-columns: 1fr; }
  .partner-grid-6 { grid-template-columns: 1fr; }
  .featured-clients-row { grid-template-columns: 1fr; }
  .footer-grid-layout { grid-template-columns: 1fr; }

  .founder-grid-split {
    grid-template-columns: 120px 1fr;
    text-align: left;
    align-items: flex-start;
    gap: 18px;
  }
  .founder-photo-col { text-align: left; }
  .founder-photo-card { padding: 8px; max-width: 120px; }
  .founder-photo-card img { height: 140px; margin-bottom: 8px; }
  .founder-name-plate strong { font-size: 14px; }
  .founder-name-plate span { font-size: 10px; }
  .founder-credential-badge { font-size: 9px; padding: 3px 8px; margin-top: 6px; }
  .founder-message-col { border-left: none; padding-left: 0; border-top: none; padding-top: 0; }
  .founder-quote-watermark { display: none; }

  .floating-actions-dock {
    right: 16px;
    bottom: 16px;
  }
  .dock-tooltip { display: none !important; }
  .office-info-popover { width: 220px; right: 60px; }
}
