/* ============================================================
   VIVIA IVF — Design System V2
   High-end Medical Tourism | Mobile-First | SEO-Optimized
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@300;400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

/* ── CSS Variables ── */
:root {
  /* Primary Palette */
  --navy:       #0D2340;
  --navy-mid:   #1A3A5C;
  --navy-light: #2A5080;
  --teal:       #1B6B6B;
  --teal-light: #2A9090;

  /* Accent */
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale:  #F5E9C8;

  /* Neutrals */
  --white:      #FFFFFF;
  --off-white:  #F8F6F2;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-600:   #4B5563;
  --gray-800:   #1F2937;
  --black:      #0A0A0A;

  /* Typography */
  --font-serif:  'Cormorant Garamond', 'Noto Serif SC', Georgia, serif;
  --font-sans:   'Inter', 'Noto Sans SC', system-ui, sans-serif;

  /* Spacing */
  --section-py: 96px;
  --section-py-sm: 64px;
  --container:  1200px;
  --container-sm: 900px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(13,35,64,.08);
  --shadow-md:  0 8px 32px rgba(13,35,64,.12);
  --shadow-lg:  0 20px 60px rgba(13,35,64,.16);
  --shadow-gold: 0 8px 32px rgba(201,168,76,.25);

  /* Transitions */
  --ease:       cubic-bezier(.4,0,.2,1);
  --dur:        .3s;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1rem; color: var(--gray-600); line-height: 1.8; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--sm { max-width: var(--container-sm); }
.section { padding: var(--section-py) 0; }
.section--sm { padding: var(--section-py-sm) 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.75); }
.section--warm { background: var(--off-white); }
.section--gold { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-title { margin-bottom: 16px; }
.section-desc { max-width: 560px; margin: 0 auto 56px; text-align: center; font-size: 1.05rem; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: .85rem; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-body { padding: 32px; }

/* ── Divider ── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 20px auto 40px;
}
.divider--left { margin-left: 0; }

/* ── Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.site-header .header-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.scrolled {
  background: rgba(13,35,64,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.site-header.scrolled .header-inner { height: 68px; }

/* Logo */
.header-logo { flex-shrink: 0; }
.header-logo img { height: 44px; width: auto; }

/* Nav */
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--dur), background var(--dur);
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--gold);
  background: rgba(201,168,76,.1);
}

/* Dropdown */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 4px; }
.nav-item > a::after { content: '▾'; font-size: .7rem; opacity: .6; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--dur) var(--ease);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: .88rem;
  color: var(--gray-800) !important;
  border-radius: 8px;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--gray-50); color: var(--navy) !important; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  transition: all var(--dur);
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 140px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur) var(--ease);
}
.lang-switcher:hover .lang-dropdown,
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
}
.lang-dropdown a {
  display: block;
  padding: 8px 14px;
  font-size: .88rem;
  color: var(--gray-800);
  border-radius: 6px;
}
.lang-dropdown a:hover { background: var(--gray-50); color: var(--navy); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(27,107,107,.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201,168,76,.08) 0%, transparent 50%),
    linear-gradient(135deg, #0D2340 0%, #1A3A5C 50%, #0D2340 100%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg?v=2');
  background-size: cover;
  background-position: center;
  opacity: .15;
}
/* Geometric decorations */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.15);
}
.hero-deco-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-deco-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }
.hero-deco-3 { width: 200px; height: 200px; top: 30%; right: 30%; border-color: rgba(27,107,107,.2); }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

/* Hero Left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .06em;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}

/* Hero Right - Consultation Form */
.hero-form-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
}
.hero-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-form-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: .92rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--dur), background var(--dur);
  -webkit-appearance: none;
}
.form-group input::placeholder { color: rgba(255,255,255,.35); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.12);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); color: var(--white); }
.form-privacy {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}
.trust-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-600);
}
.trust-item-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--gray-200);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s var(--ease);
}
.service-card:hover .service-card-bg { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,35,64,.92) 0%, rgba(13,35,64,.4) 50%, transparent 100%);
}
.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
}
.service-card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}
.service-card-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: gap var(--dur);
}
.service-card-link:hover { gap: 10px; }
.service-card-link::after { content: '→'; }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 2px solid var(--gray-200);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gray-200);
  transition: background var(--dur);
}
.pricing-card:hover,
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-8px);
}
.pricing-card:hover::before,
.pricing-card.featured::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.pricing-card.featured .pricing-badge {
  display: block;
}
.pricing-badge {
  display: none;
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: .06em;
}
.pricing-flag { font-size: 2.5rem; margin-bottom: 12px; }
.pricing-country {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.pricing-tagline {
  font-size: .85rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.pricing-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--gray-400); }
.pricing-features {
  margin: 24px 0;
  text-align: left;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: .88rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature-icon {
  width: 20px;
  height: 20px;
  background: rgba(27,107,107,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--teal);
  flex-shrink: 0;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--teal));
}
.process-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}
.process-step:last-child { margin-bottom: 0; }
.process-num {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-gold);
}
.process-body { padding-top: 16px; }
.process-body h3 { margin-bottom: 8px; font-size: 1.2rem; }
.process-body p { font-size: .92rem; }
.process-duration {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  margin-top: 8px;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--dur) var(--ease);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  background: var(--gray-100);
}
.team-card-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy-mid), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,.3);
}
.team-card-body { padding: 24px; }
.team-card-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-card-title {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.team-card-hospital {
  font-size: .85rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.team-card-desc { font-size: .88rem; color: var(--gray-600); line-height: 1.7; }
.team-card-cert {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.cert-badge {
  padding: 4px 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-600);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-pale);
  font-family: Georgia, serif;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
}
.testimonial-meta {
  font-size: .78rem;
  color: var(--gray-400);
}
.testimonial-stars { color: var(--gold); font-size: .85rem; margin-bottom: 4px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--teal) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.1);
  top: -200px; right: -100px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.1);
  bottom: -100px; left: -50px;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-reassurance {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.cta-reassurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.cta-reassurance-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060F1C;
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-logo { height: 40px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: .8; }
.footer-brand-desc { font-size: .88rem; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: background var(--dur), color var(--dur);
}
.footer-social-link:hover { background: var(--gold); color: var(--navy); }
.footer-col-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--dur);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}
.footer-contact-item strong { color: rgba(255,255,255,.8); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copyright { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-partners {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-partners a {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  font-weight: 600;
  letter-spacing: .06em;
  transition: color var(--dur);
}
.footer-partners a:hover { color: var(--gold); }

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
}
.mobile-sticky-wa { background: #25D366; color: var(--white); }
.mobile-sticky-tel { background: var(--gold); color: var(--navy); }

/* ============================================================
   FLOATING CONTACT WIDGET
   ============================================================ */
.float-contact {
  position: fixed;
  right: 24px;
  bottom: 80px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur), box-shadow var(--dur);
  cursor: pointer;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); box-shadow: var(--shadow-lg); }
.float-wa { background: #25D366; color: var(--white); }
.float-tel { background: var(--gold); color: var(--navy); }
.float-top { background: var(--white); color: var(--navy); border: 1px solid var(--gray-200); font-size: .9rem; }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(27,107,107,.2) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 600px; margin: 0 auto 24px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--dur); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }
.breadcrumb-current { color: var(--gold); }

/* ============================================================
   CONTENT SECTIONS (Inner Pages)
   ============================================================ */
.content-section { padding: 80px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--gray-100);
}
.content-image img { width: 100%; height: 100%; object-fit: cover; }
.content-label { margin-bottom: 12px; }
.content-title { margin-bottom: 20px; }
.content-text { margin-bottom: 32px; }
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-body h4 { font-size: 1rem; margin-bottom: 4px; }
.feature-body p { font-size: .88rem; }

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-box {
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.stat-box-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-box-num em {
  font-style: normal;
  color: var(--gold);
}
.stat-box-label { font-size: .85rem; color: var(--gray-400); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  transition: background var(--dur);
}
.faq-question:hover { background: var(--gray-50); }
.faq-question.active { background: var(--navy); color: var(--white); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  transition: all var(--dur);
}
.faq-question.active .faq-icon { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.8;
}
.faq-answer.open { max-height: 400px; padding: 20px 24px; }

/* Cost Table */
.cost-table-wrap { overflow-x: auto; }
.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.cost-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
}
.cost-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:nth-child(even) td { background: var(--gray-50); }
.cost-table .total td {
  font-weight: 700;
  color: var(--navy);
  background: var(--gold-pale);
  font-size: 1rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--white);
}
.contact-info-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.contact-info-card p { color: rgba(255,255,255,.65); margin-bottom: 36px; }
.contact-method {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-method-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-method-label {
  font-size: .78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-method-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 { color: var(--navy); margin-bottom: 8px; }
.contact-form-card > p { color: var(--gray-400); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: .92rem;
  color: var(--gray-800);
  outline: none;
  transition: border-color var(--dur), background var(--dur);
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
}
.contact-form .form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding-top: 100px; }
  .hero-form-card { max-width: 520px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-py: 56px; }

  /* Header */
  .header-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right var(--dur) var(--ease);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .header-nav.open { right: 0; }
  .header-nav a { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.05);
    border-radius: 8px;
    margin-top: 4px;
  }
  .nav-dropdown a { color: rgba(255,255,255,.7) !important; }
  .hamburger { display: flex; }
  .header-actions .btn { display: none; }
  .lang-btn { font-size: .78rem; padding: 5px 10px; }

  /* Hero */
  .hero-content { padding: 100px 20px 60px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }

  /* Sections */
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 20px; }
  .trust-divider { display: none; }

  /* Mobile sticky bar */
  .mobile-sticky-bar { display: flex; }
  .float-contact { bottom: 80px; right: 16px; }
  .float-btn { width: 46px; height: 46px; font-size: 1rem; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .hero-form-card { padding: 28px 20px; }
  .contact-info-card, .contact-form-card { padding: 32px 24px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-box { padding: 24px 16px; }
  .stat-box-num { font-size: 1.8rem; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-8 { margin-top: 8px; }
.mb-8 { margin-bottom: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   ADDITIONAL FIXES v2.0.1
   ============================================================ */

/* Service card image fallbacks */
.service-card .service-card-bg {
  background-color: var(--navy-mid);
}

/* Ensure hero section has minimum height on mobile */
@media (max-width: 768px) {
  .hero { min-height: auto; padding-bottom: 40px; }
  .hero-content { padding-bottom: 40px; }
  .hero-stats { justify-content: center; }
  .hero-stat-item { min-width: 80px; }
  .services-grid { gap: 20px; }
  .service-card { aspect-ratio: 3/2; }
  .service-card-title { font-size: 1.2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-timeline::before { left: 30px; }
  .process-num { width: 60px; height: 60px; font-size: 1.1rem; }
  .process-step { gap: 20px; }
  .single.php .container { grid-template-columns: 1fr; }
}

/* Fix header transparency on initial load */
.site-header:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(13,35,64,.8) 0%, transparent 100%);
}

/* Fix dropdown z-index */
.nav-dropdown { z-index: 1001; }

/* Smooth image loading */
img { transition: opacity .3s ease; }
img[src=] { opacity: 0; }

/* Content images aspect ratio fix */
.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Single post sidebar sticky on desktop */
@media (min-width: 1024px) {
  .single-sidebar { position: sticky; top: 100px; }
}

/* Print styles */
@media print {
  .hero { min-height: auto; padding: 40px 0; }
}
