/* ============================================================
   MA FAMILY HEALTH — PREMIUM REDESIGN
   Style System: Luxury Healthcare + Glassmorphism + Dark Mode
   ============================================================ */

/* ─── CSS Custom Properties ─── */
:root {
  /* Color Palette */
  --clr-bg:         #060d10;
  --clr-bg-2:       #0a1419;
  --clr-bg-card:    #0f1e25;
  --clr-bg-glass:   rgba(15, 30, 37, 0.7);
  --clr-surface:    #12232c;
  --clr-border:     rgba(255,255,255,0.07);

  --clr-primary:    #1a8a7a;     /* teal-emerald */
  --clr-primary-lt: #22b5a0;
  --clr-primary-dk: #0f5e54;

  --clr-gold:       #c9a84c;     /* gold accent */
  --clr-gold-lt:    #e2c06a;
  --clr-gold-dk:    #a07830;
  --clr-gold-glow:  rgba(201,168,76,0.25);

  --clr-text:       #e8f0ef;
  --clr-text-muted: #7a9a96;
  --clr-text-dim:   #4e6a66;
  --clr-white:      #ffffff;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #060d10 0%, #0d2229 40%, #091c1a 100%);
  --grad-gold:    linear-gradient(135deg, #a07830 0%, #e2c06a 50%, #a07830 100%);
  --grad-teal:    linear-gradient(135deg, #0f5e54 0%, #22b5a0 100%);
  --grad-card:    linear-gradient(145deg, rgba(26,138,122,0.08) 0%, rgba(201,168,76,0.05) 100%);

  /* Typography */
  --font-body:    'Inter', 'Poppins', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-py: 6rem;
  --container:  1240px;

  /* Transitions */
  --ease:        cubic-bezier(0.25, 0.8, 0.25, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
  --shadow-teal: 0 0 40px rgba(34,181,160,0.12);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.4);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-primary); border-radius: 3px; }

/* ─── Selection ─── */
::selection { background: rgba(201,168,76,0.3); color: var(--clr-white); }

/* ─── Container ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn--gold {
  background: var(--grad-gold);
  color: #1a1005;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  filter: brightness(1.1);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-2px);
}

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ─── Section Helpers ─── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-white);
  margin-bottom: 1.2rem;
}
.section-title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ─── Reveal Animations ─── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(6, 13, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 8px 30px rgba(0,0,0,0.4);
  padding: 1rem 0;
}

.navbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__logo {
  display: inline-block;
  text-decoration: none;
}
.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.logo-main {
  height: 95px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
  transition: height 0.4s var(--ease);
}
.navbar.scrolled .logo-main {
  height: 75px;
}
.logo-subtext {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e2c06a; /* Lighter gold tone */
  margin-top: 2px;
  transition: all 0.4s var(--ease);
}
.navbar.scrolled .logo-subtext {
  font-size: 0.45rem;
  margin-top: 1px;
}

.navbar__nav { margin-left: auto; }

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__menu > li { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--clr-gold);
  background: rgba(201,168,76,0.06);
}

.dropdown-arrow { font-size: 0.7rem; transition: transform 0.3s; }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(10,20,26,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 1rem;
  min-width: 320px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-group { padding: 0.5rem; }

.dropdown-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.dropdown-group ul li a {
  display: block;
  padding: 0.35rem 0.5rem;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  border-radius: 6px;
  transition: all 0.2s;
}
.dropdown-group ul li a:hover {
  color: var(--clr-white);
  background: rgba(26,138,122,0.12);
  padding-left: 0.9rem;
}

.navbar__cta { margin-left: 1rem; }

/* Burger */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.navbar__burger span {
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.navbar__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--grad-hero);
  padding-top: 7rem;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.32;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 0;
}

.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(26,138,122,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(201,168,76,0.07) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(6,13,16,0.3) 0%, rgba(6,13,16,0.7) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  animation: heroFadeIn 1.2s var(--ease) both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  background: rgba(201,168,76,0.06);
  backdrop-filter: blur(10px);
  animation: heroFadeIn 1.2s 0.2s var(--ease) both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
  animation: heroFadeIn 1.2s 0.35s var(--ease) both;
}
.hero__title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--clr-text-muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  animation: heroFadeIn 1.2s 0.5s var(--ease) both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: heroFadeIn 1.2s 0.65s var(--ease) both;
}

.hero__badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  animation: heroFadeIn 1.2s 0.8s var(--ease) both;
  margin-top: 5rem;
  padding-bottom: 2rem;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.hero__badge:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}
.badge-icon { font-size: 1rem; }

.hero__scroll-cta {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  animation: bounce 2s ease-in-out infinite, heroFadeIn 1.2s 1s var(--ease) both;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(90deg, rgba(15,94,84,0.3) 0%, rgba(10,20,26,0.8) 50%, rgba(15,94,84,0.3) 100%);
  border-top: 1px solid rgba(26,138,122,0.2);
  border-bottom: 1px solid rgba(26,138,122,0.2);
  padding: 2.5rem 0;
  backdrop-filter: blur(10px);
}

.stats-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.stat-number {
  display: inline;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.07);
}

/* ════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════ */
.about {
  padding: var(--section-py) 0;
  background: var(--clr-bg-2);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}
.about__image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(26,138,122,0.15), transparent 70%);
  border-radius: 20px;
}
.about__image {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(26,138,122,0.2);
  box-shadow: var(--shadow-teal), var(--shadow-card);
  position: relative;
}

.about__image-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad-gold);
  color: #1a1005;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.about__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: rgba(26,138,122,0.06);
  border: 1px solid rgba(26,138,122,0.12);
  border-radius: 12px;
  transition: all 0.3s;
}
.about__feature:hover {
  border-color: rgba(26,138,122,0.3);
  background: rgba(26,138,122,0.1);
}
.feature-icon { font-size: 1.5rem; flex-shrink: 0; }
.about__feature strong { display: block; color: var(--clr-white); margin-bottom: 0.2rem; }
.about__feature p { font-size: 0.88rem; color: var(--clr-text-muted); }

/* ════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════ */
.services {
  padding: var(--section-py) 0;
  position: relative;
  background: var(--clr-bg);
}

.services__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(26,138,122,0.06), transparent),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201,168,76,0.04), transparent);
  pointer-events: none;
}

.services__category-title {
  margin-bottom: 2rem;
}

.category-pill {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(26,138,122,0.1);
  border: 1px solid rgba(26,138,122,0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-primary-lt);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.services__grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Service Card */
.service-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.2);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.service-card:hover::before { opacity: 1; }

.service-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.service-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card__image-wrap img { transform: scale(1.06); }

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,13,16,0.85), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover .service-card__overlay { opacity: 1; }

.service-card__body {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}
.service-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--clr-white);
  margin-bottom: 0.6rem;
}
.service-card__body p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--clr-gold);
  font-weight: 500;
  display: block;
}

.service-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-primary-lt);
  transition: color 0.2s, letter-spacing 0.2s;
  letter-spacing: 0.02em;
}
.service-card:hover .service-card__link {
  color: var(--clr-gold);
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════
   WHY US
   ════════════════════════════════════════ */
.why-us {
  padding: var(--section-py) 0;
  background: var(--clr-bg-2);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,138,122,0.08), transparent 70%);
  pointer-events: none;
}

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

.why-card {
  padding: 2rem;
  background: var(--clr-bg-glass);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.15);
  box-shadow: var(--shadow-card);
}
.why-card:hover::after { transform: scaleX(1); }

.why-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   PRICING
   ════════════════════════════════════════ */
.pricing {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.pricing__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.pricing__image img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(26,138,122,0.2);
  box-shadow: var(--shadow-card);
}
.pricing__image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12), transparent 70%);
  pointer-events: none;
}

.pricing__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.pricing__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--clr-text);
  padding: 0.75rem 1rem;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 10px;
  transition: all 0.3s;
}
.pricing__list li:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.2);
}
.pricing__check {
  color: var(--clr-gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pricing__note {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,94,84,0.4) 0%, rgba(10,30,40,0.8) 50%, rgba(15,94,84,0.4) 100%);
  border-top: 1px solid rgba(26,138,122,0.2);
  border-bottom: 1px solid rgba(26,138,122,0.2);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 2rem;
  line-height: 1.3;
}
.cta-banner__inner h2 em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════
   BOOKING
   ════════════════════════════════════════ */
.booking {
  padding: var(--section-py) 0;
  background: var(--clr-bg-2);
  position: relative;
}
.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(26,138,122,0.06), transparent 70%);
  pointer-events: none;
}

.booking__wrapper {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.booking__tabs {
  display: flex;
  gap: 0;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--clr-border);
}

.booking__tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.booking__tab:hover { color: var(--clr-text); }
.booking__tab.active {
  color: var(--clr-gold);
  border-bottom-color: var(--clr-gold);
  background: rgba(201,168,76,0.04);
}

.booking__panel { padding: 2rem; }
.booking__panel--hidden { display: none; }

.booking__iframe-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--clr-border);
  background: #fff;
  min-height: 650px;
}
.booking__iframe-container iframe {
  display: block;
  min-height: 650px;
}

.booking__note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--clr-text-dim);
}

/* Booking fallback card */
.booking__fallback {
  padding: 1rem 0 2rem;
}
.booking__fallback-inner {
  text-align: center;
  padding: 4rem 2rem;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(26,138,122,0.08), transparent 80%);
  border: 1px solid rgba(26,138,122,0.15);
  border-radius: 16px;
}
.booking__fallback-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: pulse-float 3s ease-in-out infinite;
}
@keyframes pulse-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.booking__fallback-inner h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--clr-white);
  margin-bottom: 0.75rem;
}
.booking__fallback-inner > p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.booking__fallback-info {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.booking__fallback-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  text-align: left;
  min-width: 200px;
  transition: all 0.3s;
}
.booking__fallback-item:hover {
  border-color: rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
}
.bfi-icon { font-size: 1.6rem; flex-shrink: 0; }
.booking__fallback-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.25rem;
}
.booking__fallback-item span {
  display: block;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}
.booking__fallback-item a { color: var(--clr-primary-lt); transition: color 0.2s; }
.booking__fallback-item a:hover { color: var(--clr-gold); }
.booking__fallback-btn {
  padding: 1.1rem 3rem;
  font-size: 1rem;
  box-shadow: 0 6px 30px rgba(201,168,76,0.4);
}
.booking__fallback-btn:hover { box-shadow: 0 10px 40px rgba(201,168,76,0.6); }

.booking__call-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
}

.booking__call-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(26,138,122,0.06);
  border: 1px solid rgba(26,138,122,0.15);
  border-radius: 14px;
  transition: all 0.3s;
  cursor: pointer;
}
.booking__call-card:hover {
  border-color: var(--clr-gold);
  background: rgba(201,168,76,0.06);
  transform: translateY(-3px);
}
.booking__call-card--info { grid-column: 1 / -1; cursor: default; }
.booking__call-card--info:hover { transform: none; }

.call-card__icon { font-size: 2rem; flex-shrink: 0; }
.booking__call-card strong { display: block; color: var(--clr-white); margin-bottom: 0.25rem; }
.booking__call-card span { display: block; font-size: 0.88rem; color: var(--clr-text-muted); }

/* ════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════ */
.contact {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
}

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

.contact__card {
  padding: 2rem 1.5rem;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s var(--ease);
}
.contact__card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.contact__icon { font-size: 2.2rem; margin-bottom: 1rem; }
.contact__card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.contact__card p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.hours-closed { color: var(--clr-text-dim); margin-top: 0.25rem; }
.contact__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-primary-lt);
  transition: color 0.2s;
}
.contact__link:hover { color: var(--clr-gold); }

.contact__map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}
.contact__map iframe { display: block; filter: grayscale(0.5) contrast(1.1); }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: #040b0e;
  border-top: 1px solid rgba(26,138,122,0.15);
}

.footer__top { padding: 4rem 0 2rem; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer__brand p {
  font-size: 0.88rem;
  color: var(--clr-text-dim);
  line-height: 1.7;
  margin: 1.25rem 0 1.5rem;
}

.footer__logo-link {
  display: inline-block;
  text-decoration: none;
}
.footer__logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__logo-wrapper .logo-main {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
  margin-bottom: 4px;
}
.footer__logo-wrapper .logo-subtext {
  font-size: 0.6rem;
  margin-top: 0;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(26,138,122,0.25);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  transition: all 0.3s;
}
.footer__social:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul li { font-size: 0.85rem; color: var(--clr-text-dim); line-height: 1.5; }
.footer__col ul li a {
  color: var(--clr-text-dim);
  transition: color 0.2s, padding-left 0.2s;
}
.footer__col ul li a:hover { color: var(--clr-primary-lt); padding-left: 4px; }

.footer__bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer__bottom p {
  font-size: 0.78rem;
  color: var(--clr-text-dim);
  text-align: center;
}
.footer__bottom a {
  color: var(--clr-primary-lt);
  transition: color 0.2s;
}
.footer__bottom a:hover { color: var(--clr-gold); }

/* ════════════════════════════════════════
   SCROLL TO TOP
   ════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--grad-gold);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
  z-index: 999;
  color: #1a1005;
}
.scroll-top.visible {
  opacity: 1;
  transform: none;
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.6);
}

/* ════════════════════════════════════════
   ABOUT US PAGE STYLES
   ════════════════════════════════════════ */
.about-hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: #061115;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('file:///C:/Users/ninaj/.gemini/antigravity/brain/f8769649-1c97-4170-8b96-b306f8f32caa/about_hero_bg_1782878951324.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: blur(2px);
  z-index: 1;
}
.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.about-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.15;
  margin: 1rem 0 1.5rem;
}
.about-hero__title em {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}
.about-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.bio-section {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
}
.bio-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: center;
}
.bio-photo-wrap {
  position: relative;
  padding: 1rem;
}
.bio-photo-glow {
  position: absolute;
  inset: 5%;
  background: var(--grad-gold);
  filter: blur(50px);
  opacity: 0.25;
  z-index: 0;
}
.bio-photo-frame {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  background: var(--clr-surface);
}
.bio-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.bio-badge {
  position: absolute;
  z-index: 2;
  background: rgba(6, 17, 21, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.bio-badge--1 {
  top: 10%;
  left: -15px;
}
.bio-badge--2 {
  bottom: 20%;
  right: -15px;
}
.bio-badge__number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bio-badge__icon {
  font-size: 1.5rem;
}
.bio-badge__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.2;
}
.bio-languages {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
  text-align: center;
  background: rgba(26,138,122,0.15);
  border: 1px solid rgba(26,138,122,0.3);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  color: var(--clr-primary-lt);
  font-size: 0.9rem;
  font-weight: 500;
}

.bio-content .section-tag { margin-bottom: 0.5rem; display: inline-block; }
.bio-name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--clr-text);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.bio-credentials {
  font-size: 0.6em;
  color: var(--clr-gold);
  font-weight: 500;
  display: inline-block;
}
.bio-tagline {
  font-size: 1.1rem;
  color: var(--clr-primary-lt);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.bio-text p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.bio-text strong {
  color: var(--clr-text);
  font-weight: 600;
}
.bio-highlights {
  margin: 2rem 0;
  padding: 1.75rem;
  background: var(--clr-surface);
  border-radius: 16px;
  border: 1px solid var(--clr-border);
}
.bio-highlights h4 {
  color: var(--clr-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}
.bio-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.bio-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.bio-list li strong { color: var(--clr-text); }
.check-icon {
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}
.bio-cta { margin-top: 2rem; }

.credentials-section {
  padding: var(--section-py) 0;
  background: var(--clr-surface-alt);
  position: relative;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.cred-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-top: 3px solid var(--clr-gold);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, border-color 0.3s;
}
.cred-card:hover {
  transform: translateY(-5px);
  border-color: var(--clr-primary-lt);
}
.cred-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cred-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}
.cred-card__subtitle {
  font-size: 0.85rem;
  color: var(--clr-gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cred-card__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cred-card__list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}
.cred-card__list li strong {
  color: var(--clr-text);
  font-size: 1rem;
}
.cred-card__list--simple li {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.cred-card__list--simple li::before {
  content: "•";
  color: var(--clr-gold);
  font-weight: bold;
}

/* ════════════════════════════════════════
   RESPONSIVE — TABLET
   ════════════════════════════════════════ */
@media (max-width: 1100px) {
  .about__grid,
  .bio-grid,
  .pricing__grid { grid-template-columns: 1fr; gap: 3rem; }
  .bio-photo-wrap { max-width: 500px; margin: 0 auto; }
  .credentials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about__image-wrap { order: -1; max-width: 500px; margin: 0 auto; }
  .pricing__image { max-width: 500px; margin: 0 auto; }
  .services__grid--3 { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  :root { --section-py: 4.5rem; }
  .stats-bar__grid { flex-wrap: wrap; }
  .stat-item { flex: 1 1 40%; }
  .stat-divider:nth-child(4) { display: none; }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE
   ════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }

  /* Navbar Mobile */
  .navbar__nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6,13,16,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 2rem;
  }
  .navbar__nav.open { display: flex; }
  .navbar__menu {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    width: 100%;
  }
  .navbar__menu > li { width: 100%; }
  .nav-link { justify-content: center; font-size: 1rem; padding: 0.75rem 1rem; }
  .dropdown { display: none; }
  .navbar__cta { display: none; }
  .navbar__burger { display: flex; z-index: 1001; }

  .hero__title { font-size: clamp(2rem, 9vw, 3.5rem); }
  .hero__actions { flex-direction: column; }
  .hero__badges { flex-direction: column; align-items: center; }

  .stats-bar__grid { flex-direction: column; }
  .stat-divider { width: 80px; height: 1px; }
  .stat-item { padding: 0.75rem 2rem; }

  .services__grid,
  .services__grid--3 { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .booking__call-options { grid-template-columns: 1fr; }
  .booking__call-card--info { grid-column: auto; }
  .booking__tab { padding: 0.75rem 1rem; font-size: 0.8rem; }

  .about__image-badge { right: 0.5rem; bottom: 0.5rem; font-size: 0.75rem; }
  .dropdown-group { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section-title { font-size: 1.8rem; }
  .hero__eyebrow { font-size: 0.7rem; }
}
