/* ========================================================
   MedicalTourismAbroad.com — Global Styles
   Design: Refined Editorial / Healthcare Authority
   Palette: Deep Navy + Teal + Warm Gold accents
   ======================================================== */

:root {
  /* Brand Colors */
  --navy:        #0B1D35;
  --navy-light:  #132B4D;
  --teal:        #0891B2;
  --teal-dark:   #0E7490;
  --teal-light:  #ECFEFF;
  --teal-muted:  #A5F3FC;
  --gold:        #D97706;
  --gold-light:  #FEF3C7;
  --green:       #059669;
  --green-light: #D1FAE5;
  --red:         #DC2626;
  --red-light:   #FEE2E2;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --gray-50:     #F1F5F9;
  --gray-100:    #E2E8F0;
  --gray-200:    #CBD5E1;
  --gray-300:    #94A3B8;
  --gray-400:    #64748B;
  --gray-500:    #475569;
  --gray-600:    #334155;
  --gray-700:    #1E293B;
  --gray-800:    #0F172A;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Nunito Sans', 'Helvetica Neue', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Spacing */
  --section-pad: clamp(3rem, 8vw, 6rem);
  --container:   1200px;

  /* Shadows */
  --shadow-sm:   0 1px 2px rgba(11,29,53,0.05);
  --shadow-md:   0 4px 12px rgba(11,29,53,0.08);
  --shadow-lg:   0 8px 30px rgba(11,29,53,0.12);
  --shadow-xl:   0 20px 60px rgba(11,29,53,0.15);

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --duration:    0.3s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--teal-dark);
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
}
a:hover {
  color: var(--teal);
}

/* ── Typography ───────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray-500);
}

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ── Layout ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-pad) 0;
}

.section--gray {
  background: var(--off-white);
}

.section--navy {
  background: var(--navy);
  color: var(--gray-100);
}
.section--navy h2,
.section--navy h3 {
  color: var(--white);
}
.section--navy p {
  color: var(--gray-200);
}

.section--teal-light {
  background: var(--teal-light);
}

/* ── Header / Navigation ──────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--duration) var(--ease-out);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-text span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: color var(--duration);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform var(--duration);
}
.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--duration) var(--ease-out);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--gray-500);
}
.nav-dropdown-menu a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--navy);
}

/* Mobile nav */
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--white);
    padding: 2rem 1.5rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--duration) var(--ease-out);
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
  }
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  padding: calc(72px + 4rem) 0 4rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 55%, var(--teal-dark) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(8,145,178,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(217,119,6,0.08) 0%, transparent 60%);
  pointer-events: none;
}
/* Subtle grid pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal-muted);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--gray-200);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--gray-200);
  font-weight: 600;
}
.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--teal-muted);
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(8,145,178,0.35);
}
.btn--primary:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(8,145,178,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.btn--outline-dark:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.btn--small {
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
}

/* ── Stats Bar ────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-number span {
  color: var(--teal);
}
.stat-label {
  font-size: 0.82rem;
  color: var(--gray-400);
  font-weight: 600;
}

@media (max-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* ── Section Headers ──────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.section-header .label {
  margin-bottom: 0.75rem;
  display: block;
}
.section-header h2 {
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-400);
}

/* ── Card Grid ────────────────────────────────────── */
.card-grid {
  display: grid;
  gap: 1.5rem;
}
.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
  .card-grid--3,
  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .card-grid--3,
  .card-grid--4,
  .card-grid--2 {
    grid-template-columns: 1fr;
  }
}

/* ── Procedure Cards ──────────────────────────────── */
.proc-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 1.75rem;
  transition: all var(--duration) var(--ease-out);
  text-decoration: none;
  display: block;
}
.proc-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.proc-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.proc-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.proc-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}
.proc-card .savings {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  display: inline-block;
}

/* ── Destination Cards ────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.dest-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--duration) var(--ease-out);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.dest-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.dest-card--featured {
  grid-column: span 6;
}
.dest-card--regular {
  grid-column: span 3;
}

.dest-card-img {
  height: 180px;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dest-card--featured .dest-card-img {
  height: 240px;
}
.dest-card-img .flag {
  font-size: 3rem;
}
.dest-card--featured .dest-card-img .flag {
  font-size: 4.5rem;
}
.dest-card-img .dest-gradient {
  position: absolute;
  inset: 0;
}

.dest-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dest-card-body h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.dest-card-body p {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
  flex: 1;
}
.dest-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.dest-card-meta .tag {
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}
.tag--teal {
  background: var(--teal-light);
  color: var(--teal-dark);
}
.tag--gold {
  background: var(--gold-light);
  color: var(--gold);
}
.tag--green {
  background: var(--green-light);
  color: var(--green);
}

.dest-card--featured .dest-card-body {
  padding: 1.5rem;
}
.dest-card--featured .dest-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.dest-card--featured .featured-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .dest-card--featured,
  .dest-card--regular {
    grid-column: span 6;
  }
}
@media (max-width: 600px) {
  .dest-card--featured,
  .dest-card--regular {
    grid-column: span 12;
  }
}

/* ── Cost Comparison Table ────────────────────────── */
.cost-table-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.cost-table thead {
  background: var(--navy);
}
.cost-table th {
  color: var(--white);
  font-weight: 700;
  text-align: left;
  padding: 1rem 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}
.cost-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--duration);
}
.cost-table tbody tr:last-child {
  border-bottom: none;
}
.cost-table tbody tr:hover {
  background: var(--teal-light);
}
.cost-table td {
  padding: 1rem 1.25rem;
  color: var(--gray-600);
  font-weight: 500;
}
.cost-table td:first-child {
  font-weight: 700;
  color: var(--navy);
}
.cost-table .highlight {
  color: var(--teal-dark);
  font-weight: 700;
}
.cost-table .savings-cell {
  color: var(--green);
  font-weight: 700;
}
.cost-table-note {
  padding: 1rem 1.25rem;
  font-size: 0.78rem;
  color: var(--gray-400);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

@media (max-width: 768px) {
  .cost-table-wrap {
    overflow-x: auto;
  }
  .cost-table {
    min-width: 600px;
  }
}

/* ── Trust Section ────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.trust-item {
  text-align: center;
  padding: 2rem 1.5rem;
}
.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}
.trust-item h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.trust-item p {
  font-size: 0.875rem;
  color: var(--gray-400);
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ── Colombia Spotlight ───────────────────────────── */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.spotlight-visual {
  background: linear-gradient(135deg, var(--teal-light), var(--gold-light));
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.spotlight-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(8,145,178,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(217,119,6,0.08) 0%, transparent 40%);
}
.spotlight-visual .big-flag {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.spotlight-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
}
.spotlight-stat {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}
.spotlight-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.spotlight-stat span {
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 600;
}

.spotlight-content .label {
  margin-bottom: 0.75rem;
  display: block;
}
.spotlight-content h2 {
  margin-bottom: 1rem;
}
.spotlight-content p {
  margin-bottom: 1.5rem;
}
.spotlight-points {
  list-style: none;
  margin-bottom: 2rem;
}
.spotlight-points li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-600);
}
.spotlight-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

@media (max-width: 900px) {
  .spotlight {
    grid-template-columns: 1fr;
  }
  .spotlight-visual {
    min-height: 280px;
  }
}

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--teal-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(8,145,178,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner p {
  color: var(--gray-200);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-banner .btn {
  position: relative;
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--gray-800);
  color: var(--gray-300);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: block;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray-300);
  max-width: 300px;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 0.65rem;
}
.footer-col a {
  font-size: 0.85rem;
  color: var(--gray-300);
  transition: color var(--duration);
}
.footer-col a:hover {
  color: var(--teal-muted);
}

.footer-disclaimer {
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: var(--gray-400);
  line-height: 1.7;
}
.footer-disclaimer a {
  color: var(--gray-300);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: var(--gray-400);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ── Legal / Content Pages ────────────────────────── */
.page-header {
  padding: calc(72px + 3rem) 0 3rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
}
.page-header h1 {
  margin-bottom: 0.5rem;
}
.page-header .subtitle {
  font-size: 1rem;
  color: var(--gray-400);
}

.page-content {
  padding: 3rem 0 5rem;
  max-width: 780px;
  margin: 0 auto;
}
.page-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
}
.page-content h3 {
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
}
.page-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}
.page-content ul,
.page-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.page-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--gray-500);
}
.page-content a {
  text-decoration: underline;
  text-decoration-color: var(--teal-muted);
  text-underline-offset: 2px;
}

/* ── Contact Form ─────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}
.contact-info-card {
  background: var(--teal-light);
  border-radius: 16px;
  padding: 2.5rem;
}
.contact-info-card h3 {
  margin-bottom: 1rem;
}
.contact-info-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.contact-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item p {
  font-size: 0.9rem;
  margin: 0;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--duration);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 404 Page ─────────────────────────────────────── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.error-page h1 {
  font-size: 8rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 1rem;
}
.error-page h2 {
  margin-bottom: 1rem;
}
.error-page p {
  max-width: 440px;
  margin: 0 auto 2rem;
}

/* ── Thanks Page ──────────────────────────────────── */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: var(--green);
}

/* ── Animations ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content > * {
  animation: fadeUp 0.7s var(--ease-out) both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.35s; }
.hero-content > *:nth-child(4) { animation-delay: 0.5s; }

/* ── Utility ──────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
