/* ═════════════════════════════════════════════════════════════════
   PRATEEK CHILD DEVELOPMENT CENTER — PRODUCTION STYLESHEET
   Visual Identity: Warm, Trustworthy, Pediatric & Clinical Excellence
   ═════════════════════════════════════════════════════════════════ */

/* ── 1. DESIGN SYSTEM VARIABLES ── */
:root {
  /* Colors */
  --bg-main:         #FAF9F6;
  --bg-surface:      #FFFFFF;
  --bg-subtle:       #F4F7FB;
  --bg-card:         #FFFFFF;
  
  --primary:         #2563EB;
  --primary-dark:    #1D4ED8;
  --primary-light:   #EFF6FF;
  --primary-soft:    rgba(37, 99, 235, 0.08);

  --secondary:       #0D9488;
  --secondary-light: #F0FDFA;

  --accent-orange:   #EA580C;
  --accent-orange-l: #FFF7ED;

  --accent-green:    #16A34A;
  --accent-green-l:  #F0FDF4;

  --accent-purple:   #7C3AED;
  --accent-purple-l: #F5F3FF;

  --accent-rose:     #E11D48;
  --accent-rose-l:   #FFF1F2;

  --accent-yellow:   #F59E0B;
  --accent-yellow-l: #FFFBEB;

  --text-dark:       #0F172A;
  --text-body:       #334155;
  --text-muted:      #64748B;
  --text-light:      #94A3B8;

  --border-light:    #E2E8F0;
  --border-subtle:   #F1F5F9;

  /* Typography */
  --font-heading:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Fluid Spacing */
  --container-max:   1240px;
  --container-pad:   clamp(1.15rem, 3.5vw, 2.25rem);
  --section-py:      clamp(3.75rem, 7vw, 6.5rem);

  /* Border Radii */
  --radius-xs:       6px;
  --radius-sm:       10px;
  --radius-md:       16px;
  --radius-lg:       22px;
  --radius-xl:       30px;
  --radius-pill:     9999px;

  /* Shadows */
  --shadow-subtle:   0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
  --shadow-sm:       0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-md:       0 8px 24px rgba(15, 23, 42, 0.07), 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-lg:       0 16px 36px rgba(15, 23, 42, 0.09), 0 4px 14px rgba(15, 23, 42, 0.05);
  --shadow-hover:    0 20px 42px rgba(37, 99, 235, 0.12), 0 6px 18px rgba(15, 23, 42, 0.06);

  /* Transitions */
  --ease-spring:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:     cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-mid:  0.35s var(--ease-smooth);
}

/* ── 2. GLOBAL RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-main);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Mobile Quick Bar padding */
@media (max-width: 768px) {
  body {
    padding-bottom: 66px;
  }
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* ── Accessibility: Skip Link ── */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--primary);
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 99999;
  transition: top 0.2s ease;
}
.skip-to-content:focus {
  top: 1rem;
  outline: 3px solid var(--accent-orange);
}

/* Focus Outline */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 3. CONTAINER SYSTEM ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ── 4. TYPOGRAPHY & HEADINGS ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 4.8vw, 3.8rem); line-height: 1.12; }
h2 { font-size: clamp(1.75rem, 3.8vw, 2.75rem); line-height: 1.2; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.45rem); }
h4 { font-size: 1.1rem; }

p {
  color: var(--text-body);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
}

.lead-text {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.7;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.text-white { color: #FFFFFF !important; }
.text-muted { color: var(--text-muted) !important; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 660px;
  margin-inline: auto;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: var(--text-muted);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ── 5. BUTTONS & CTAS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.65rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  min-height: 48px;
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  border: 1.5px solid transparent;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-dark);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}
.btn-secondary:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 0.88rem 2rem;
  font-size: 1.02rem;
}

.btn-full {
  width: 100%;
}

.link-inline {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-inline:hover {
  color: var(--primary-dark);
}

/* ── 6. SECTIONS ── */
.section {
  padding-block: var(--section-py);
  position: relative;
}

.section-alt {
  background-color: var(--bg-subtle);
}

/* ═════════════════════════════════════════════════════════════════
   TOPBAR
   ═════════════════════════════════════════════════════════════════ */
.topbar {
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-block: 0.5rem;
  position: relative;
  z-index: 1001;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar-divider {
  color: var(--text-light);
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--text-body);
}
.topbar-link:hover {
  color: var(--primary);
}
.topbar-link--whatsapp {
  color: var(--accent-green);
}
.topbar-link--whatsapp:hover {
  color: #15803D;
}

@media (max-width: 768px) {
  .topbar { display: none; }
}

/* ═════════════════════════════════════════════════════════════════
   NAVBAR
   ═════════════════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding-block: 0.9rem;
  transition: all var(--transition-mid);
}

.navbar.scrolled {
  padding-block: 0.55rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-light);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
  background-color: var(--primary-soft);
}

.nav-link.active {
  color: var(--primary);
  background-color: var(--primary-light);
  font-weight: 700;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta {
  padding: 0.6rem 1.35rem;
  font-size: 0.88rem;
  min-height: 42px;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.ham-line {
  display: block;
  width: 100%;
  height: 2.2px;
  background-color: var(--text-dark);
  border-radius: 4px;
  transition: transform 0.3s var(--ease-spring), opacity 0.2s ease;
  transform-origin: center;
}

.hamburger[aria-expanded="true"] .ham-line:nth-child(1) {
  transform: translateY(7.2px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .ham-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] .ham-line:nth-child(3) {
  transform: translateY(-7.2px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100vh - 64px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  overflow-y: auto;
  padding: 1.5rem var(--container-pad) 3rem;
  border-top: 1px solid var(--border-light);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s var(--ease-spring), opacity 0.25s ease;
}

.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 480px;
  margin-inline: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover, .mobile-nav-link:focus {
  background-color: var(--primary-light);
  color: var(--primary);
  border-color: rgba(37, 99, 235, 0.15);
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.mobile-quick-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mobile-contact-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--bg-subtle);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  border: 1px solid var(--border-light);
}
.mobile-contact-pill--wa {
  color: #16A34A;
  background: #DCFCE7;
  border-color: #BBF7D0;
}

/* ═════════════════════════════════════════════════════════════════
   HERO SECTION
   ═════════════════════════════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
  background: radial-gradient(circle at 85% 15%, #EFF6FF 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, #F5F3FF 0%, transparent 50%),
              var(--bg-main);
}

/* Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.blob-hero-1 {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.1);
  top: -120px;
  left: -120px;
}
.blob-hero-2 {
  width: 450px;
  height: 450px;
  background: rgba(124, 58, 237, 0.08);
  bottom: -100px;
  right: -80px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37, 99, 235, 0.08) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.eyebrow-wrap {
  display: flex;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(37, 99, 235, 0.18);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}

.hero-title {
  margin: 0;
}

.hero-highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  max-width: 540px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  color: var(--text-body);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 0.38rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-dark);
  box-shadow: var(--shadow-subtle);
}

.trust-chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-chip-icon--blue { color: var(--primary); }
.trust-chip-icon--green { color: var(--accent-green); }
.trust-chip-icon--orange { color: var(--accent-orange); }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-decor-shape {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-decor-shape--1 {
  inset: -16px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-purple-l));
  animation: blobRotate 18s ease-in-out infinite alternate;
}
.hero-decor-shape--2 {
  inset: -28px;
  background: rgba(204, 251, 241, 0.4);
  animation: blobRotate 22s ease-in-out infinite alternate-reverse;
}

@keyframes blobRotate {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: rotate(0deg); }
  50% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%; transform: rotate(4deg); }
  100% { border-radius: 50% 50% 60% 40% / 40% 40% 60% 60%; transform: rotate(-3deg); }
}

.hero-image-card {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-surface);
  background: var(--bg-subtle);
  aspect-ratio: 1 / 1.05;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Info Cards */
.float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.05rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.9);
  animation: floatGentle 4.5s ease-in-out infinite;
}

.float-card-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-card-icon--blue { background: var(--primary-light); color: var(--primary); }
.float-card-icon--orange { background: var(--accent-orange-l); color: var(--accent-orange); }
.float-card-icon--green { background: var(--accent-green-l); color: var(--accent-green); }

.float-card-content {
  display: flex;
  flex-direction: column;
}
.float-card-content strong {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}
.float-card-content span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.float-card--1 {
  top: 8%;
  left: -24px;
  animation-delay: 0s;
}
.float-card--2 {
  top: 50%;
  right: -28px;
  animation-delay: 1.5s;
}
.float-card--3 {
  bottom: 8%;
  left: -16px;
  animation-delay: 3s;
}

@keyframes floatGentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ═════════════════════════════════════════════════════════════════
   TRUST STRIP
   ═════════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding-block: 1.25rem;
}

.trust-strip-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.trust-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.trust-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-green-l);
  color: var(--accent-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═════════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: clamp(3rem, 6vw, 5.5rem);
}

.about-visual {
  position: relative;
}

.about-collage {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.about-main-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--bg-surface);
}

.about-img-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-secondary-img-wrap {
  position: absolute;
  bottom: -32px;
  right: -28px;
  width: 210px;
  height: 210px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--bg-surface);
}

.about-img-sub {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-pill-card {
  position: absolute;
  top: 24px;
  left: -24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.about-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-pill-text {
  display: flex;
  flex-direction: column;
}
.about-pill-text strong {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  color: var(--text-dark);
}
.about-pill-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block: 0.75rem;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}
.pillar-item:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-subtle);
  transform: translateX(4px);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon--blue { background: var(--primary-light); color: var(--primary); }
.pillar-icon--green { background: var(--accent-green-l); color: var(--accent-green); }
.pillar-icon--orange { background: var(--accent-orange-l); color: var(--accent-orange); }

.pillar-text h3 {
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}
.pillar-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* ═════════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═════════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.85rem);
}

.service-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.15rem);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-mid);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-spring);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37, 99, 235, 0.2);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-mid);
}
.service-card:hover .service-icon-box {
  transform: scale(1.08) rotate(-4deg);
}

.service-icon-box--blue { background: var(--primary-light); color: var(--primary); }
.service-icon-box--green { background: var(--accent-green-l); color: var(--accent-green); }
.service-icon-box--orange { background: var(--accent-orange-l); color: var(--accent-orange); }
.service-icon-box--purple { background: var(--accent-purple-l); color: var(--accent-purple); }
.service-icon-box--teal { background: var(--secondary-light); color: var(--secondary); }
.service-icon-box--rose { background: var(--accent-rose-l); color: var(--accent-rose); }

.service-badge {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--bg-subtle);
  color: var(--text-muted);
}

.service-title {
  font-size: 1.18rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.15rem;
}

.service-points {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: auto;
}

.service-points li {
  font-size: 0.84rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.service-points li::before {
  content: "•";
  color: var(--primary);
  font-weight: 900;
  font-size: 1.1rem;
}

.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.5rem;
  transition: all var(--transition-fast);
}
.service-cta-link svg {
  transition: transform var(--transition-fast);
}
.service-cta-link:hover {
  color: var(--primary-dark);
}
.service-cta-link:hover svg {
  transform: translateX(4px);
}

/* ═════════════════════════════════════════════════════════════════
   CONDITIONS WE TREAT
   ═════════════════════════════════════════════════════════════════ */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.85rem);
}

.condition-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.65rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-mid);
  display: flex;
  flex-direction: column;
}
.condition-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.25);
}

.condition-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform var(--transition-fast);
}
.condition-card:hover .condition-icon-wrap {
  transform: scale(1.1);
}

.condition-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
  color: var(--text-dark);
}

.condition-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ═════════════════════════════════════════════════════════════════
   OUR 4-STEP APPROACH (TIMELINE)
   ═════════════════════════════════════════════════════════════════ */
.timeline-container {
  position: relative;
  margin-top: 1rem;
}

.timeline-track {
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-purple) 50%, var(--secondary) 100%);
  z-index: 0;
  border-radius: var(--radius-pill);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 4px solid var(--bg-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform var(--transition-fast);
}
.timeline-step:hover .step-badge {
  transform: scale(1.1);
  border-color: var(--primary-light);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.step-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.35rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: all var(--transition-mid);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.step-icon--blue { background: var(--primary-light); color: var(--primary); }
.step-icon--green { background: var(--accent-green-l); color: var(--accent-green); }
.step-icon--orange { background: var(--accent-orange-l); color: var(--accent-orange); }
.step-icon--purple { background: var(--accent-purple-l); color: var(--accent-purple); }

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ═════════════════════════════════════════════════════════════════
   WHY CHOOSE US
   ═════════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.85rem);
}

.why-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.65rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-mid);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.2);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  transition: transform var(--transition-fast);
}
.why-card:hover .why-card-icon {
  transform: scale(1.08);
}

.why-card-icon--blue { background: var(--primary-light); color: var(--primary); }
.why-card-icon--green { background: var(--accent-green-l); color: var(--accent-green); }
.why-card-icon--orange { background: var(--accent-orange-l); color: var(--accent-orange); }
.why-card-icon--purple { background: var(--accent-purple-l); color: var(--accent-purple); }
.why-card-icon--teal { background: var(--secondary-light); color: var(--secondary); }
.why-card-icon--rose { background: var(--accent-rose-l); color: var(--accent-rose); }

.why-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.55rem;
  color: var(--text-dark);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ═════════════════════════════════════════════════════════════════
   JOURNEY / EMOTIONAL SECTION
   ═════════════════════════════════════════════════════════════════ */
.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: clamp(3rem, 6vw, 5.5rem);
}

.journey-visual {
  position: relative;
}

.journey-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--bg-surface);
}

.journey-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.journey-quote-bubble {
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
}
.quote-symbol {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  line-height: 0.8;
  color: var(--accent-yellow);
  display: block;
  margin-bottom: 0.25rem;
}
.journey-quote-bubble p {
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
  font-size: 0.95rem;
  margin: 0;
}

.journey-content {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.journey-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* ═════════════════════════════════════════════════════════════════
   GALLERY SECTION
   ═════════════════════════════════════════════════════════════════ */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gallery-filter-btn {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  color: var(--text-muted);
  border: 1.5px solid var(--border-light);
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.gallery-filter-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-card {
  width: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-subtle);
  border: 3px solid var(--bg-surface);
  display: block;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-smooth);
}
.gallery-card:hover .gallery-img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: opacity var(--transition-mid);
}
.gallery-card:hover .gallery-overlay,
.gallery-card:focus-visible .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
}

.gallery-caption {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

/* ═════════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═════════════════════════════════════════════════════════════════ */
.testimonials-slider-wrap {
  max-width: 820px;
  margin-inline: auto;
  position: relative;
}

.testimonials-slider {
  position: relative;
  min-height: 320px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.testimonial-card {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-rating {
  color: #F59E0B;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.testimonial-quote {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.75;
  color: var(--text-dark);
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #FFFFFF;
  flex-shrink: 0;
}
.author-avatar--blue { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.author-avatar--green { background: linear-gradient(135deg, var(--accent-green), #15803D); }
.author-avatar--orange { background: linear-gradient(135deg, var(--accent-orange), #C2410C); }

.author-info {
  display: flex;
  flex-direction: column;
}
.author-info strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-dark);
}
.author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonial-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  color: var(--text-light);
  font-style: normal;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-light);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
}
.slider-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
  background: var(--border-light);
  transition: all var(--transition-fast);
}
.slider-dot.active {
  width: 28px;
  background: var(--primary);
}

/* ═════════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═════════════════════════════════════════════════════════════════ */
.faq-container {
  max-width: 820px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.3);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}
.faq-trigger:hover {
  background-color: var(--bg-subtle);
}
.faq-trigger[aria-expanded="true"] {
  color: var(--primary);
}

.faq-icon-pill {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring), background-color var(--transition-fast), color var(--transition-fast);
}
.faq-trigger[aria-expanded="true"] .faq-icon-pill {
  transform: rotate(45deg);
  background-color: var(--primary-light);
  color: var(--primary);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-smooth);
}
.faq-panel:not([hidden]) {
  display: grid;
  grid-template-rows: 1fr;
}

.faq-content {
  overflow: hidden;
}
.faq-content p {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ═════════════════════════════════════════════════════════════════
   CONTACT & APPOINTMENT SECTION
   ═════════════════════════════════════════════════════════════════ */
.contact-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, #EFF6FF 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, #F5F3FF 0%, transparent 40%),
              var(--bg-main);
}

.blob-contact-1 {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.08);
  top: -100px;
  right: -100px;
}
.blob-contact-2 {
  width: 400px;
  height: 400px;
  background: rgba(13, 148, 136, 0.06);
  bottom: -80px;
  left: -80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
}
.contact-info-card:hover {
  transform: translateX(4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon--blue { background: var(--primary-light); color: var(--primary); }
.contact-icon--green { background: var(--accent-green-l); color: var(--accent-green); }
.contact-icon--orange { background: var(--accent-orange-l); color: var(--accent-orange); }

.contact-details {
  display: flex;
  flex-direction: column;
}
.contact-details strong {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}
.contact-details span {
  font-size: 0.92rem;
  color: var(--text-body);
}
.contact-highlight {
  font-weight: 700;
  color: var(--primary);
}
.contact-details small {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Form Card */
.form-card {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.form-header {
  margin-bottom: 1.75rem;
}
.form-header h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}
.form-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
}
.form-group .req { color: var(--accent-rose); }
.form-group .optional { color: var(--text-light); font-weight: 400; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  background-color: var(--bg-subtle);
  color: var(--text-dark);
  font-size: 0.94rem;
  transition: all var(--transition-fast);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-group input.input-error,
.form-group select.input-error {
  border-color: var(--accent-rose);
  background-color: var(--accent-rose-l);
}

.error-msg {
  font-size: 0.76rem;
  color: var(--accent-rose);
  font-weight: 600;
  min-height: 1rem;
}

.form-feedback {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem;
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
}
.form-feedback--success {
  background: var(--accent-green-l);
  border: 1px solid #86EFAC;
  color: #14532D;
}
.form-feedback--error {
  background: var(--accent-rose-l);
  border: 1px solid #FECDD3;
  color: #881337;
}

.feedback-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.form-feedback strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.form-feedback p {
  font-size: 0.86rem;
  margin: 0;
  color: inherit;
}



/* ═════════════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════════════ */
.footer {
  background: #0B1329;
  color: #94A3B8;
  position: relative;
  overflow: hidden;
}

.footer-main {
  padding-block: clamp(3.5rem, 6vw, 5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.25fr 1.65fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.logo--footer .logo-main {
  color: #FFFFFF;
}

.footer-bio {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.7;
  margin-top: 1.15rem;
  margin-bottom: 1.5rem;
}

.footer-social-links {
  display: flex;
  gap: 0.65rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.social-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}
.social-btn--wa:hover {
  background: #16A34A;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: #94A3B8;
  transition: color var(--transition-fast);
}
.footer-nav a:hover {
  color: #FFFFFF;
  padding-left: 3px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: #94A3B8;
}
.footer-contact-row svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary-light);
}
.footer-contact-row a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1.35rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: #64748B;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 1.25rem;
}
.footer-legal-links a {
  font-size: 0.82rem;
  color: #64748B;
}
.footer-legal-links a:hover {
  color: #FFFFFF;
}

/* ═════════════════════════════════════════════════════════════════
   STICKY MOBILE QUICK-ACTION BAR
   ═════════════════════════════════════════════════════════════════ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  padding: 0.5rem 1rem;
  box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.08);
}

.mobile-sticky-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 0.6rem;
  max-width: 480px;
  margin-inline: auto;
}

.mobile-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  min-height: 44px;
}

.mobile-bar-btn--wa {
  background: var(--accent-green-l);
  color: #16A34A;
  border-color: #BBF7D0;
}

.mobile-bar-btn--cta {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
  }
}

/* ═════════════════════════════════════════════════════════════════
   DESKTOP FLOATING WHATSAPP BUTTON
   ═════════════════════════════════════════════════════════════════ */
.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 997;
  transition: all var(--transition-fast);
}
.floating-wa-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

@media (max-width: 768px) {
  .floating-wa-btn {
    display: none;
  }
}

/* ═════════════════════════════════════════════════════════════════
   LIGHTBOX MODAL
   ═════════════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media-wrap {
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
}

.lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.lightbox-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.lightbox-nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.08);
}
.lightbox-nav-btn--prev { left: -60px; }
.lightbox-nav-btn--next { right: -60px; }

@media (max-width: 768px) {
  .lightbox-nav-btn--prev { left: 10px; }
  .lightbox-nav-btn--next { right: 10px; }
  .lightbox-close-btn { top: -40px; right: 10px; }
}

/* ═════════════════════════════════════════════════════════════════
   SCROLL ANIMATION ENGINE (Lightweight & Smooth)
   ═════════════════════════════════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-smooth), transform 0.65s var(--ease-smooth);
}
[data-aos="fade-left"] {
  transform: translateX(26px);
}
[data-aos="fade-right"] {
  transform: translateX(-26px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS (Desktop -> Laptop -> Tablet -> Mobile)
   ═════════════════════════════════════════════════════════════════ */

/* ── Large Screens & Desktops (1200px - 1440px+) ── */
@media (min-width: 1280px) {
  .hero-img { height: 500px; }
}

/* ── Laptop / Small Desktop (≤1120px) ── */
@media (max-width: 1120px) {
  .nav-links { gap: 0.1rem; }
  .nav-link { font-size: 0.84rem; padding: 0.4rem 0.55rem; }
  
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; }
}

/* ── Tablet (≤992px) ── */
@media (max-width: 992px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  .eyebrow-wrap { justify-content: center; }
  .hero-desc { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust-chips { justify-content: center; }
  
  .hero-visual { order: -1; }
  .hero-visual-frame { max-width: 440px; }
  
  .float-card--1 { left: -10px; }
  .float-card--2 { right: -10px; }
  .float-card--3 { left: -10px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-collage { margin-inline: auto; }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .journey-visual { order: -1; }
  .journey-image-card { max-width: 500px; margin-inline: auto; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .timeline-track { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-col--brand { grid-column: span 2; }
}

/* ── Mobile Landscape & Small Tablet (≤768px) ── */
@media (max-width: 768px) {
  :root {
    --section-py: 4rem;
  }

  .float-card--1, .float-card--2, .float-card--3 {
    display: none;
  }

  .about-secondary-img-wrap {
    width: 160px;
    height: 160px;
    bottom: -20px;
    right: -10px;
  }
  .about-pill-card {
    left: 10px;
    top: 10px;
  }

  .services-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .timeline-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }

  .form-row { grid-template-columns: 1fr; gap: 0; }



  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-col--brand { grid-column: span 1; }
  
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

/* ── Narrow Mobile (≤480px / 375px / 320px) ── */
@media (max-width: 480px) {
  .hero-visual-frame { max-width: 100%; }
  .hero-img { height: 320px; }

  .about-main-img-wrap { height: 320px; }
  .about-img-main { height: 100%; }
  .about-secondary-img-wrap { display: none; }
  .about-pill-card { position: static; margin-top: 1rem; width: 100%; }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }

  .about-actions {
    flex-direction: column;
    width: 100%;
  }
  .about-actions .btn {
    width: 100%;
  }

  .journey-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .journey-cta-group .btn {
    width: 100%;
  }

  .form-card {
    padding: 1.25rem;
  }
}
