/* =========================================================
   TravelAndHeal — Hand-written CSS (no frameworks, no build step)
   ========================================================= */

:root {
  --primary: #0f4c81;
  --primary-50: #eaf1f8;
  --primary-100: #cfe0ee;
  --primary-300: #6fa2cc;
  --primary-400: #3f83bb;
  --primary-600: #0d4373;
  --deepblue: #062e52;

  --secondary: #2e8b57;
  --secondary-50: #e9f6ef;
  --secondary-100: #cbebda;
  --secondary-300: #6fc794;
  --secondary-400: #48ae76;
  --secondary-600: #267349;
  --secondary-700: #1e5c3a;

  --accent: #ff7a00;
  --accent-50: #fff2e5;
  --accent-500: #ff7a00;
  --accent-600: #e56d00;

  --teal: #0e9488;
  --teal-50: #e6f5f3;
  --teal-dark: #0b6e64;
  --violet: #6d5bd0;
  --violet-50: #efecfb;
  --violet-dark: #4c3d9e;
  --pink: #ec4899;
  --pink-50: #fce9f2;
  --pink-dark: #be185d;

  --surface: #f5f7fa;
  --white: #ffffff;
  --dark: #1a1a1a;
  --border: #e6ebf1;
  --muted: #6b7280;
  --whatsapp: #25d366;

  --gradient-hero: linear-gradient(135deg, rgba(6, 46, 82, 0.92) 0%, rgba(15, 76, 129, 0.85) 55%, rgba(46, 139, 87, 0.55) 100%);
  --gradient-cta: linear-gradient(120deg, #0f4c81 0%, #062e52 100%);
  --gradient-green: linear-gradient(120deg, #2e8b57 0%, #1e5c3a 100%);
  --gradient-orange: linear-gradient(120deg, #ff7a00 0%, #cc6100 100%);

  --shadow-soft: 0 4px 20px rgba(15, 76, 129, 0.08);
  --shadow-card: 0 10px 40px rgba(6, 46, 82, 0.1);
  --shadow-glow: 0 8px 30px rgba(46, 139, 87, 0.25);

  --radius: 1rem;
  --radius-lg: 1.25rem;
  --container-width: 1240px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

::selection {
  background-color: var(--secondary);
  color: var(--white);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 999px; }

.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;
}
.skip-link:focus {
  position: fixed;
  top: 0.5rem; left: 0.5rem;
  width: auto; height: auto;
  z-index: 100;
  background: var(--white);
  color: var(--primary-600);
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
  clip: auto; overflow: visible; white-space: normal;
}

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

.section {
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .section { padding: 4.75rem 0; }
}

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

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--secondary-700);
  background: var(--secondary-50);
  border: 1px solid var(--secondary-100);
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "Poppins", Arial, sans-serif;
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--secondary-300);
}

.section-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--deepblue);
  line-height: 1.25;
  margin-top: 0.75rem;
}

.section-title--white { color: var(--white); }

.section-sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub--light { color: rgba(255, 255, 255, 0.75); }

@media (min-width: 640px) {
  .section-title { font-size: 2rem; }
  .section-sub { font-size: 1rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 2.35rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  border: none;
}

.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.btn-primary {
  background: var(--gradient-green);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(46, 139, 87, 0.4); }

.btn-accent {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(255, 122, 0, 0.3);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255, 122, 0, 0.4); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary-600); }

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--primary-100);
  color: var(--primary);
  padding: 0.6rem 1.2rem;
}
.btn-ghost:hover { background: var(--primary-50); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); }

.btn-ghost-green {
  background: var(--white);
  border: 1.5px solid var(--secondary-100);
  color: var(--secondary-600);
}
.btn-ghost-green:hover { background: var(--secondary-50); transform: translateY(-2px); }

.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-violet { background: var(--violet); color: var(--white); }
.btn-violet:hover { background: var(--violet-dark); transform: translateY(-2px); }
.btn-blue-solid { background: var(--primary); color: var(--white); }
.btn-blue-solid:hover { background: var(--primary-600); transform: translateY(-2px); }
.btn-pink { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: var(--pink-dark); transform: translateY(-2px); }

.btn-sm { padding: 0.5rem 1.05rem; font-size: 0.78rem; }
.btn-block { width: 100%; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}
.card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-light {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--secondary);
  display: inline-block;
}

/* ---------- Reveal animation ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
}
.fade-up.in-view {
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  display: none;
  background: var(--deepblue);
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 14px 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
}
@media (min-width: 768px) { .topbar { display: block; } }

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

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

.topbar a, .topbar-static { display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.topbar a:hover { color: var(--secondary-300); }

.topbar-icon-circle {
  width: 1.5rem; height: 1.5rem;
  border-radius: 999px;
  background: var(--secondary-600);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.topbar-icon-circle svg { width: 0.75rem; height: 0.75rem; color: var(--white); }

.topbar-sep { width: 1px; height: 1rem; background: rgba(255, 255, 255, 0.2); flex-shrink: 0; }

.topbar-highlight { color: var(--secondary-300); font-weight: 500; }

.social-row { display: flex; align-items: center; gap: 0.6rem; }
.social-row a {
  width: 1.75rem; height: 1.75rem;
  border-radius: 999px;
  background: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.social-row a:hover { transform: translateY(-2px); color: var(--secondary-300); }
.social-row svg { width: 0.8rem; height: 0.8rem; color: var(--deepblue); }

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.65rem 0;
  border-radius: 0 0 1.5rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 1.5rem; right: 1.5rem; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--border) 50%, var(--primary) 100%);
  border-radius: 999px;
}
.site-header.is-scrolled {
  padding: 0.4rem 0;
  box-shadow: var(--shadow-card);
}

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

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img { height: 4.5rem; width: auto; display: block; }
@media (min-width: 640px) { .logo-img { height: 3.75rem; } }
@media (min-width: 1024px) { .logo-img { height: 4rem; } }

.nav-links {
  display: none;
  align-items: center;
  gap: 1.6rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(6, 46, 82, 0.8);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.35rem 0.8rem 0.55rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-link svg { width: 0.7rem; height: 0.7rem; opacity: 0.6; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0.15rem;
  width: 0.3rem; height: 0.3rem;
  border-radius: 999px;
  background: var(--secondary-600);
  transform: translateX(-50%) scale(0);
  transition: transform 0.25s;
}
.nav-link:hover { color: var(--secondary-600); }
.nav-link.is-active {
  color: var(--secondary-700);
  background: var(--secondary-50);
}
.nav-link.is-active::after { transform: translateX(-50%) scale(1); }

.nav-ctas {
  display: none;
  align-items: center;
  gap: 0.9rem;
}
@media (min-width: 1024px) { .nav-ctas { display: flex; } }


.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--deepblue);
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; }
.mobile-toggle .icon-close { display: none; }
.mobile-toggle.is-open .icon-open { display: none; }
.mobile-toggle.is-open .icon-close { display: inline-flex; }

.is-hidden { display: none !important; }

.mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  background: var(--white);
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}
.mobile-menu.is-open {
  max-height: 560px;
  opacity: 1;
}
@media (min-width: 1024px) { .mobile-menu { display: none; } }

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.25rem 0;
}

.mobile-nav-link {
  padding: 0.65rem 1.25rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--deepblue);
  border-bottom: 1px solid var(--border);
}

.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.25rem 0.25rem;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--deepblue);
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 3rem;
  padding: 7rem 0 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; padding: 4rem 0; }
}

.hero-text { color: var(--white); }

.hero-title {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 1rem;
}
.hero-title span { color: var(--secondary-400); }

@media (min-width: 640px) { .hero-title { font-size: 2.35rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 2.65rem; } }

.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-top: 1.1rem;
  max-width: 540px;
}
.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ---- Hero eyebrow accent ---- */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-500);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "Poppins", Arial, sans-serif;
}
.hero-eyebrow::before { content: ""; width: 1.5rem; height: 2px; background: var(--accent-500); display: inline-block; flex-shrink: 0; }

/* ---- Hero rating row ---- */
.hero-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  flex-wrap: wrap;
}
.hero-rating-row .stars svg { width: 0.85rem; height: 0.85rem; }
.hero-rating-score { font-weight: 700; color: var(--white); }

/* ---- Hero stats row ---- */
.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  margin-top: 1.25rem;
}
.hero-stat { display: flex; align-items: center; gap: 0.6rem; }
.hero-stat-icon {
  width: 2rem; height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-stat-icon svg { width: 0.95rem; height: 0.95rem; color: var(--secondary-300); }
.hero-stat strong { display: block; color: var(--white); font-size: 0.82rem; font-weight: 700; }
.hero-stat span { display: block; color: rgba(255, 255, 255, 0.65); font-size: 0.7rem; }

/* ---- Hero accreditation badges ---- */
.hero-accred-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-accred-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 0.15rem;
}
.hero-accred-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.55rem;
  padding: 0.32rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.hero-accred-badge svg { width: 0.8rem; height: 0.8rem; color: var(--secondary-300); flex-shrink: 0; }

/* ---- Hero media (image + floating cards) ---- */
.hero-media { position: relative; }
@media (min-width: 1024px) { .hero-media { align-self: start; } }
.hero-media-frame { border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow-card); height: 360px; }
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Hero lead form (replaces the hero right-side image) ---- */
.hero-form-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
}
@media (min-width: 640px) { .hero-form-card { padding: 2rem; } }
.hero-form-title { font-size: 1.1rem; font-weight: 700; color: var(--deepblue); padding-right: 5rem; }
.hero-form-sub { font-size: 0.82rem; color: var(--muted); margin-top: 0.35rem; margin-bottom: 1.25rem; line-height: 1.5; }
.hero-form-card .form-alert { margin-top: -0.15rem; }
.hero-media .hero-seal { z-index: 1; }

.hero-seal {
  position: absolute;
  top: -0.9rem; right: 1.5rem;
  width: 4rem; height: 4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  text-align: center;
  padding: 0.25rem;
}
.hero-seal svg { width: 1.1rem; height: 1.1rem; color: var(--primary); }
.hero-seal span { font-size: 0.46rem; font-weight: 700; color: var(--deepblue); line-height: 1.15; margin-top: 0.1rem; }

.hero-floating-services {
  display: none;
  position: absolute;
  right: -1rem; bottom: -1.75rem;
  max-width: 225px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1.1rem;
  box-shadow: var(--shadow-card);
  padding: 1rem;
}
@media (min-width: 640px) { 
  .hero-floating-services { display: block; } 
}
@media (max-width: 640px) { 
  .mobile-menu {
    margin-top: 0rem !important;
}
    .hero-inner {
      padding: 1rem 8px 0rem;
  }
  .trust-panel-media img {
          object-fit: unset !important;
  }
}
.hero-floating-service { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.45rem 0; }
.hero-floating-service + .hero-floating-service { border-top: 1px solid var(--border); }
.hero-floating-service-icon {
  width: 1.85rem; height: 1.85rem;
  border-radius: 0.55rem;
  background: var(--secondary-50);
  color: var(--secondary-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-floating-service-icon svg { width: 0.95rem; height: 0.95rem; }
.hero-floating-service h4 { font-size: 0.76rem; font-weight: 700; color: var(--deepblue); }
.hero-floating-service p { font-size: 0.66rem; color: var(--muted); margin-top: 0.1rem; line-height: 1.4; }
.hero-floating-services-footer {
  text-align: center;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--secondary-600);
  margin-top: 0.4rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

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

.form-alert {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.82rem;
  line-height: 1.5;
  border-radius: 0.6rem;
  padding: 0.65rem 0.9rem;
  margin-bottom: 0.85rem;
}
.form-alert.is-visible { display: block; }
.form-alert ul { margin: 0; padding-left: 1.1rem; }
.form-alert.is-success {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #15803d;
}

.input-field {
  width: 100%;
  border-radius: 0.65rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.6rem 0.85rem;
  font-size: 0.82rem;
  color: var(--dark);
  transition: box-shadow 0.2s, border-color 0.2s;
  appearance: none;
}
.input-field::placeholder { color: var(--muted); }
.input-field:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.45);
}

.input-field--dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.input-field--dark::placeholder { color: rgba(255, 255, 255, 0.5); }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 0;
}
.form-success.is-visible { display: flex; }
.form-success-icon {
  width: 4rem; height: 4rem;
  border-radius: 999px;
  background: rgba(46, 139, 87, 0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.form-success-icon svg { width: 2rem; height: 2rem; color: var(--secondary-400); }
.form-success h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.form-success p { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; margin-top: 0.5rem; }

/* =========================================================
   WHY TRAVELANDHEAL
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card { padding: 1.35rem; }

.icon-box {
  width: 2.85rem; height: 2.85rem;
  border-radius: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.icon-box svg { width: 1.4rem; height: 1.4rem; }
.icon-box--blue { background: var(--primary-50); color: var(--primary); }
.icon-box--green { background: var(--secondary-50); color: var(--secondary-600); }
.icon-box--orange { background: var(--accent-50); color: var(--accent-600); }

.why-card h3 { font-size: 1rem; font-weight: 600; color: var(--deepblue); }
.why-card p { color: var(--muted); font-size: 0.83rem; margin-top: 0.4rem; }

/* =========================================================
   QUICK SPECIALTIES STRIP
   ========================================================= */
.quick-specialties-section {
  padding: 1.75rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.quick-specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .quick-specialties-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .quick-specialties-grid { grid-template-columns: repeat(6, 1fr); } }

.quick-specialty-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 0.6rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
  min-width: 0;
}
.quick-specialty-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
  border-color: var(--secondary-100);
}
.quick-specialty-thumb { width: 2.6rem; height: 2.6rem; border-radius: 0.7rem; overflow: hidden; flex-shrink: 0; }
.quick-specialty-thumb img { width: 100%; height: 100%; object-fit: cover; }
.quick-specialty-body { flex: 1; min-width: 0; }
.quick-specialty-body h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--deepblue);
  line-height: 1.25;
}
@media (min-width: 640px) {
  .quick-specialty-body h4 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.quick-specialty-arrow { color: var(--secondary-600); flex-shrink: 0; }
.quick-specialty-arrow svg { width: 0.85rem; height: 0.85rem; }

/* =========================================================
   TRUST PANEL (Why Patients Trust Us)
   ========================================================= */
.trust-panel {
  position: relative;
  overflow: hidden;
  background: var(--gradient-cta);
  border-radius: 1.75rem;
  padding: 1.75rem;
}
@media (min-width: 768px) { .trust-panel { padding: 2.75rem; } }

.trust-panel-glow {
  position: absolute;
  top: -5rem; left: -5rem;
  width: 18rem; height: 18rem;
  background: rgba(46, 139, 87, 0.18);
  border-radius: 999px;
  filter: blur(70px);
}

.trust-panel-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.trust-panel-content .section-header { text-align: left; margin: 0; max-width: none; }

.trust-icon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
@media (min-width: 480px) { .trust-icon-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .trust-icon-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-icon-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.9rem;
  padding: 1rem;
}
.trust-icon-item .icon-box {
  width: 2.4rem; height: 2.4rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary-300);
  margin-bottom: 0.65rem;
}
.trust-icon-item .icon-box svg { width: 1.15rem; height: 1.15rem; }
.trust-icon-item h3 { color: var(--white); font-size: 0.88rem; font-weight: 600; }
.trust-icon-item p { color: rgba(255, 255, 255, 0.65); font-size: 0.76rem; margin-top: 0.3rem; }

.trust-panel-media { position: relative; }
.trust-panel-media img {
  width: 100%; height: 280px;
  border-radius: 1.1rem;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.trust-badge-floating {
  position: absolute;
  bottom: -1.1rem; right: -0.75rem;
  background: var(--deepblue);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-card);
}
.trust-badge-floating .num { color: var(--white); font-weight: 700; font-size: 1.3rem; font-family: "Poppins", Arial, sans-serif; }
.trust-badge-floating .label { color: rgba(255, 255, 255, 0.7); font-size: 0.7rem; margin-top: 0.1rem; }

/* =========================================================
   COUNTERS / STATS (unique card design)
   ========================================================= */
.counters-section {
  position: relative;
  padding: 2.75rem 0;
  background: var(--surface);
  background-image: radial-gradient(rgba(15, 76, 129, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  overflow: hidden;
}
.counters-glow-a {
  position: absolute;
  top: -6rem; left: -4rem;
  width: 16rem; height: 16rem;
  background: rgba(46, 139, 87, 0.14);
  border-radius: 999px;
  filter: blur(60px);
}
.counters-glow-b {
  position: absolute;
  bottom: -6rem; right: -4rem;
  width: 16rem; height: 16rem;
  background: rgba(15, 76, 129, 0.12);
  border-radius: 999px;
  filter: blur(60px);
}

.counters-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .counters-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.stat-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 1.35rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  overflow: hidden;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.stat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.stat-card--blue::before { background: linear-gradient(90deg, var(--primary), var(--primary-300)); }
.stat-card--green::before { background: linear-gradient(90deg, var(--secondary), var(--secondary-300)); }
.stat-card--orange::before { background: linear-gradient(90deg, var(--accent-500), var(--accent-50)); }
.stat-card--teal::before { background: linear-gradient(90deg, var(--secondary-600), var(--primary-300)); }

.stat-icon-ring {
  width: 3rem; height: 3rem;
  border-radius: 999px;
  margin: 0 auto 0.75rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.stat-card--blue .stat-icon-ring { background: var(--primary-50); color: var(--primary); }
.stat-card--green .stat-icon-ring { background: var(--secondary-50); color: var(--secondary-600); }
.stat-card--orange .stat-icon-ring { background: var(--accent-50); color: var(--accent-600); }
.stat-card--teal .stat-icon-ring { background: var(--primary-50); color: var(--secondary-600); }
.stat-icon-ring svg { width: 1.35rem; height: 1.35rem; }

.counter-value {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card--green .counter-value { background: var(--gradient-green); -webkit-background-clip: text; background-clip: text; }
.stat-card--orange .counter-value { background: var(--gradient-orange); -webkit-background-clip: text; background-clip: text; }
@media (min-width: 768px) { .counter-value { font-size: 2.1rem; } }
.counter-label {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* =========================================================
   GRID CARDS (specialties / hospitals / doctors)
   ========================================================= */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 3.5rem;
}
@media (min-width: 640px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.media-card { overflow: hidden; }

.media-card-img {
  position: relative;
  height: 13rem;
  overflow: hidden;
}
.media-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.media-card:hover .media-card-img img { transform: scale(1.06); }

.media-card-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: none;
}

.media-card-body { padding: 1.15rem; }
.media-card-body h3 { font-size: 1rem; font-weight: 600; color: var(--deepblue); }
.media-card-body p { color: var(--muted); font-size: 0.82rem; margin-top: 0.4rem; }

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--secondary-600);
  font-weight: 600;
  font-size: 0.8rem;
  margin-top: 0.85rem;
  transition: gap 0.2s;
}
.learn-more:hover { gap: 0.7rem; }
.learn-more svg { width: 1rem; height: 1rem; }

/* ---- Treatment cards (v2) ---- */
.treatment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.3s ease;
}
.treatment-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }

.treatment-card-img {
  position: relative;
  aspect-ratio: 5 / 3;
  border-radius: 1.25rem 1.25rem 0 0;
  overflow: hidden;
  background: var(--surface);
}
.treatment-card-img img { width: 100%; height: 100%; object-fit: contain; object-position: center; }

.treatment-card-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--white);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--deepblue);
  box-shadow: var(--shadow-soft);
}
.treatment-card-badge-icon {
  width: 1.3rem; height: 1.3rem;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.treatment-card-badge-icon svg { width: 0.7rem; height: 0.7rem; }

.treatment-card-icon-circle {
  position: absolute;
  left: 50%; bottom: -1.75rem;
  transform: translateX(-50%);
  width: 3.5rem; height: 3.5rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.treatment-card-icon-circle svg { width: 1.6rem; height: 1.6rem; }

.treatment-card-body { padding: 2.25rem 1.25rem 1.25rem; text-align: center; }
.treatment-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--deepblue); }
.treatment-card-body p { color: var(--muted); font-size: 0.8rem; margin-top: 0.5rem; line-height: 1.5; }

.treatment-tags-row {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.treatment-tag { display: flex; align-items: center; gap: 0.3rem; font-size: 0.68rem; color: var(--dark); font-weight: 600; }
.treatment-tag svg { width: 0.8rem; height: 0.8rem; flex-shrink: 0; }

.treatment-card-actions { display: flex; gap: 0.6rem; margin-top: 1.15rem; }
.treatment-card-actions .btn { flex: 1; min-width: 0; }
@media (max-width: 480px) {
  .treatment-card-actions { flex-direction: column; }
}

.treatment-card--teal .treatment-card-badge-icon { background: var(--secondary-50); color: var(--secondary-600); }
.treatment-card--teal .treatment-card-icon-circle svg { color: var(--secondary-600); }
.treatment-card--teal .treatment-tag svg { color: var(--secondary-600); }

.treatment-card--blue .treatment-card-badge-icon { background: var(--primary-50); color: var(--primary); }
.treatment-card--blue .treatment-card-icon-circle svg { color: var(--primary); }
.treatment-card--blue .treatment-tag svg { color: var(--primary); }

.treatment-card--purple .treatment-card-badge-icon { background: var(--violet-50); color: var(--violet); }
.treatment-card--purple .treatment-card-icon-circle svg { color: var(--violet); }
.treatment-card--purple .treatment-tag svg { color: var(--violet); }

.treatment-card--green .treatment-card-badge-icon { background: var(--secondary-50); color: var(--secondary-700); }
.treatment-card--green .treatment-card-icon-circle svg { color: var(--secondary-700); }
.treatment-card--green .treatment-tag svg { color: var(--secondary-700); }

.treatment-card--pink .treatment-card-badge-icon { background: var(--pink-50); color: var(--pink-dark); }
.treatment-card--pink .treatment-card-icon-circle svg { color: var(--pink-dark); }
.treatment-card--pink .treatment-tag svg { color: var(--pink-dark); }

/* ---- Hospitals ---- */
.hospital-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hospital-location {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.hospital-location svg { width: 0.9rem; height: 0.9rem; }
.hospital-badge {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--secondary-600);
  background: var(--secondary-50);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-top: 0.6rem;
}
.hospital-actions { display: flex; gap: 0.6rem; margin-top: 1rem; }
.hospital-actions .btn { flex: 1; min-width: 0; }
@media (max-width: 480px) {
  .hospital-actions { flex-direction: column; }
}

/* ---- Doctors (single consistent card design) ---- */
.doctor-card-v2 {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  overflow: hidden;
}
.doctor-card-v2:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }

.doc-top-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.85rem; }

.doc-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--secondary-50);
  color: var(--secondary-700);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.66rem;
  font-weight: 700;
}
.doc-status-dot { width: 0.4rem; height: 0.4rem; border-radius: 999px; background: var(--secondary); flex-shrink: 0; }

.doc-photo-body { display: flex; align-items: center; gap: 0.9rem; }
.doc-photo { width: 5.5rem; height: 5.5rem; border-radius: 1rem; overflow: hidden; flex-shrink: 0; }
.doc-photo img { width: 100%; height: 100%; object-fit: cover; }

.doc-name { font-size: 1rem; font-weight: 700; color: var(--deepblue); font-family: "Poppins", Arial, sans-serif; line-height: 1.25; }
.doc-specialty { font-size: 0.82rem; font-weight: 600; margin-top: 0.15rem; color: var(--secondary-600); }
.doc-hospital-line {
  display: flex; align-items: center; gap: 0.35rem;
  color: var(--muted); font-size: 0.74rem; margin-top: 0.35rem;
}
.doc-hospital-line svg { width: 0.8rem; height: 0.8rem; flex-shrink: 0; }

.doc-stat-list { margin-top: 0.85rem; display: flex; flex-direction: column; gap: 0.4rem; }
.doc-stat-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.76rem; color: var(--dark); }
.doc-stat-row svg { width: 0.9rem; height: 0.9rem; flex-shrink: 0; }

.doc-rating { display: flex; align-items: center; gap: 0.35rem; margin-top: 0.75rem; font-size: 0.78rem; }
.doc-rating svg { width: 0.85rem; height: 0.85rem; color: var(--accent-500); flex-shrink: 0; }
.doc-rating strong { color: var(--deepblue); font-weight: 700; }
.doc-rating span { color: var(--muted); }

.doc-languages { font-size: 0.74rem; color: var(--muted); margin-top: 0.65rem; }
.doc-languages strong { color: var(--dark); font-weight: 600; }

.doc-actions { display: flex; gap: 0.6rem; margin-top: 1rem; }
.doc-actions .btn { flex: 1; min-width: 0; }
@media (max-width: 480px) {
  .doc-actions { flex-direction: column; }
}

/* ---- Doctors trust strip ---- */
.doctors-trust-strip {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .doctors-trust-strip { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .doctors-trust-strip { grid-template-columns: repeat(6, 1fr); } }
.doctors-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.76rem; font-weight: 600; color: var(--deepblue); }
.doctors-trust-item svg { width: 1.15rem; height: 1.15rem; color: var(--secondary-600); flex-shrink: 0; }

/* =========================================================
   CTA BANNER (slim mid-page)
   ========================================================= */
.cta-banner {
  padding: 2.5rem 0;
  background: linear-gradient(100deg, var(--deepblue) 0%, var(--primary) 45%, var(--secondary-600) 100%);
}
.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-banner-inner { grid-template-columns: 1.2fr 1fr; }
}
.cta-banner-text { color: var(--white); }
.cta-banner-text h2 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 640px) { .cta-banner-text h2 { font-size: 1.7rem; } }
.cta-banner-text h2 span { color: var(--secondary-300); }
.cta-banner-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-top: 0.6rem;
  max-width: 460px;
}
.btn-cta-banner {
  background: var(--white);
  color: var(--primary-600);
  margin-top: 1.25rem;
}
.btn-cta-banner:hover { transform: translateY(-2px); background: var(--surface); }
.btn-cta-banner-icon {
  width: 1.5rem; height: 1.5rem;
  border-radius: 999px;
  background: var(--secondary-50);
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-cta-banner-icon svg { width: 0.8rem; height: 0.8rem; color: var(--secondary-600); }

.cta-banner-media { display: none; }
@media (min-width: 768px) {
  .cta-banner-media { display: flex; align-items: flex-end; justify-content: center; height: 220px; }
  .cta-banner-media img { max-width: 100%; height: 100%; object-fit: contain; object-position: bottom; }
}

/* =========================================================
   HOW IT WORKS (illustrated process)
   ========================================================= */
.timeline-wrap { position: relative; overflow: hidden; }

.how-it-works-plane {
  display: none;
  position: absolute;
  top: 1.75rem; right: 3rem;
  width: 85px;
  color: var(--primary-300);
  opacity: 0.9;
}
@media (min-width: 900px) { .how-it-works-plane { display: block; } }

.process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary-50);
  border: 1px solid var(--secondary-100);
  color: var(--secondary-700);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: "Poppins", Arial, sans-serif;
}
.process-eyebrow-dot { width: 0.3rem; height: 0.3rem; border-radius: 999px; background: var(--secondary-600); display: inline-block; flex-shrink: 0; }

.process-title {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--deepblue);
  margin-top: 0.85rem;
}
.process-title span { color: var(--secondary-600); }
@media (min-width: 640px) { .process-title { font-size: 2.25rem; } }
.process-title-underline { width: 2.5rem; height: 4px; background: var(--secondary-400); border-radius: 999px; margin: 0.6rem auto 0; }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3.25rem;
}
@media (min-width: 900px) { .timeline { grid-template-columns: repeat(5, 1fr); gap: 0.6rem; align-items: start; } }

.timeline-connector {
  display: none;
}
.timeline-arrow {
  display: none;
}
@media (min-width: 900px) {
  .timeline-connector {
    display: block;
    position: absolute;
    top: 2.65rem; left: 11%; right: 11%;
    border-top: 2px dashed var(--primary-300);
    z-index: 0;
  }
  .timeline-arrow {
    display: flex;
    position: absolute;
    top: 2.65rem;
    transform: translate(-50%, -50%);
    width: 1.75rem; height: 1.75rem;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--border);
    align-items: center; justify-content: center;
    box-shadow: var(--shadow-soft);
    z-index: 1;
  }
  .timeline-arrow svg { width: 0.85rem; height: 0.85rem; color: var(--primary); }
  .timeline-arrow--1 { left: 20%; }
  .timeline-arrow--2 { left: 40%; }
  .timeline-arrow--3 { left: 60%; }
  .timeline-arrow--4 { left: 80%; }
}

.timeline-step { position: relative; text-align: center; z-index: 1; }

.step-icon-ring {
  position: relative;
  width: 5rem; height: 5rem;
  border-radius: 999px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.step-icon-ring svg { width: 2.1rem; height: 2.1rem; }

.step-badge {
  position: absolute;
  top: -0.35rem; left: -0.35rem;
  width: 1.8rem; height: 1.8rem;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: var(--shadow-soft);
}

.step-card {
  position: relative;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1rem 1.15rem;
  margin-top: 1.5rem;
  border: 1px solid var(--border);
}
.step-card::before {
  content: "";
  position: absolute;
  top: -0.5rem; left: 50%;
  width: 1.1rem; height: 1.1rem;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 0.2rem 0 0 0;
}

.step-mini-icon {
  width: 2.15rem; height: 2.15rem;
  border-radius: 999px;
  margin: 0.75rem auto 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--border);
}
.step-mini-icon svg { width: 1rem; height: 1rem; }

.timeline-step h3 { font-weight: 700; font-size: 0.9rem; margin-top: 0; }
.step-underline { width: 1.65rem; height: 3px; border-radius: 999px; margin: 0.4rem auto 0.6rem; }
.timeline-step p { color: var(--muted); font-size: 0.76rem; line-height: 1.55; }

.step--navy .step-icon-ring svg { color: var(--deepblue); }
.step--navy .step-badge { background: var(--deepblue); }
.step--navy h3 { color: var(--deepblue); }
.step--navy .step-underline { background: var(--primary); }
.step--navy .step-card::before { background: var(--deepblue); }
.step--navy .step-mini-icon { border-color: var(--deepblue); color: var(--deepblue); }

.step--green .step-icon-ring svg { color: var(--secondary-600); }
.step--green .step-badge { background: var(--secondary-600); }
.step--green h3 { color: var(--secondary-700); }
.step--green .step-underline { background: var(--secondary); }
.step--green .step-card::before { background: var(--secondary-600); }
.step--green .step-mini-icon { border-color: var(--secondary-600); color: var(--secondary-600); }

.step--teal .step-icon-ring svg { color: var(--teal); }
.step--teal .step-badge { background: var(--teal-dark); }
.step--teal h3 { color: var(--teal-dark); }
.step--teal .step-underline { background: var(--teal); }
.step--teal .step-card::before { background: var(--teal); }
.step--teal .step-mini-icon { border-color: var(--teal); color: var(--teal); }

.step--violet .step-icon-ring svg { color: var(--violet); }
.step--violet .step-badge { background: var(--violet-dark); }
.step--violet h3 { color: var(--violet-dark); }
.step--violet .step-underline { background: var(--violet); }
.step--violet .step-card::before { background: var(--violet); }
.step--violet .step-mini-icon { border-color: var(--violet); color: var(--violet); }

.step--blue .step-icon-ring svg { color: var(--primary); }
.step--blue .step-badge { background: var(--primary-600); }
.step--blue h3 { color: var(--primary-600); }
.step--blue .step-underline { background: var(--primary-400); }
.step--blue .step-card::before { background: var(--primary); }
.step--blue .step-mini-icon { border-color: var(--primary); color: var(--primary); }


/* =========================================================
   SERVICES
   ========================================================= */
.services-grid-outer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .services-grid-outer { grid-template-columns: 1fr 1fr; } }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.25rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 0.85rem;
  transition: background 0.2s;
}
.service-item:hover { background: var(--surface); }
.service-item .icon-box { width: 2.35rem; height: 2.35rem; margin-bottom: 0; flex-shrink: 0; }
.service-item .icon-box svg { width: 1.05rem; height: 1.05rem; }
.service-item h3 { font-weight: 600; color: var(--deepblue); font-size: 0.9rem; }
.service-item p { color: var(--muted); font-size: 0.78rem; margin-top: 0.2rem; }

.services-media { position: relative; display: none; }
@media (min-width: 640px) { .services-media { display: block; } }
.services-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.floating-badge {
  display: none;
  position: absolute;
  bottom: -2rem; left: -2rem;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  max-width: 260px;
}
@media (min-width: 640px) { .floating-badge { display: block; } }

.floating-badge-inner { display: flex; align-items: center; gap: 0.75rem; }
.floating-badge-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.floating-badge-icon svg { width: 1.25rem; height: 1.25rem; }
.floating-badge-title { font-weight: 700; color: var(--deepblue); font-size: 0.9rem; }
.floating-badge-sub { color: var(--muted); font-size: 0.78rem; }

/* =========================================================
   COST ESTIMATE SECTION
   ========================================================= */
.cost-section {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(135deg, #eaf6f2 0%, #eef4fb 100%);
  overflow: hidden;
}

.cost-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .cost-grid { grid-template-columns: 0.95fr 1.05fr; gap: 3rem; } }

.cost-form-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.cost-form-title { font-family: "Poppins", Arial, sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--deepblue); line-height: 1.3; }
.cost-form-sub { color: var(--muted); font-size: 0.85rem; margin-top: 0.4rem; margin-bottom: 1.5rem; }

.cost-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.85rem; }
.cost-input-wrap { position: relative; margin-bottom: 0.85rem; }
.cost-form-row .cost-input-wrap { margin-bottom: 0; }
.cost-input-wrap:has(textarea) .cost-input-icon { top: 1.15rem; transform: none; }
.cost-input-icon {
  position: absolute;
  left: 1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-600);
  width: 1.1rem; height: 1.1rem;
  pointer-events: none;
}
.cost-input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.75rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-size: 0.83rem;
  background: var(--white);
  color: var(--dark);
  appearance: none;
}
.cost-input:focus {
  outline: none;
  border-color: var(--secondary-300);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.15);
}
select.cost-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23267349' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 0.85rem;
  padding-right: 2.25rem;
  color: var(--dark);
}
select.cost-input:invalid { color: var(--muted); }

.btn-cost-submit {
  width: 100%;
  background: var(--deepblue);
  color: var(--white);
  border-radius: 999px;
  padding: 0.9rem;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  transition: background 0.2s;
}
.btn-cost-submit:hover { background: var(--primary-600); }
.btn-cost-submit svg { width: 1rem; height: 1rem; }

.cost-cta-green {
  background: var(--gradient-green);
  border-radius: 1.5rem;
  padding: 1.5rem 1.75rem;
  margin-top: 1.25rem;
}
.cost-cta-green h4 { color: var(--white); font-weight: 700; font-size: 1.05rem; font-family: "Poppins", Arial, sans-serif; }
.cost-cta-green p { color: rgba(255, 255, 255, 0.85); font-size: 0.8rem; margin-top: 0.25rem; margin-bottom: 1rem; }

.cost-cta-buttons { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cost-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 0.2s;
}
.cost-cta-btn:hover { transform: translateY(-2px); }
.cost-cta-btn--ghost { background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.3); color: var(--white); }
.cost-cta-btn--solid { background: var(--white); color: var(--secondary-700); }
.cost-cta-btn svg { width: 0.9rem; height: 0.9rem; }

.cost-media {
  position: relative;
  display: none;
  justify-content: center;
  align-items: flex-end;
  min-height: 320px;
}
@media (min-width: 640px) { .cost-media { display: flex; min-height: 420px; } }
.cost-media img { max-width: 100%; height: auto; max-height: 460px; object-fit: contain; }

.cost-stat-badge {
  position: absolute;
  top: 0.5rem; right: 0.5rem;
  background: var(--white);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}
@media (min-width: 640px) { .cost-stat-badge { right: 1.5rem; } }
.cost-stat-badge .num {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  background: var(--gradient-green);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cost-stat-badge .label { font-size: 0.7rem; color: var(--muted); margin-top: 0.15rem; line-height: 1.3; }

.stars { display: flex; color: var(--accent-500); }
.stars svg { width: 1rem; height: 1rem; }

/* =========================================================
   DISCLAIMER (before contact)
   ========================================================= */
.disclaimer-section {
  padding: 1.75rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.disclaimer-box { max-width: 900px; margin: 0 auto; text-align: center; }
.disclaimer-box h3 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deepblue);
  margin-bottom: 0.5rem;
}
.disclaimer-box p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
}

/* =========================================================
   CONTACT SECTION (before footer)
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }

.contact-heading {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  color: var(--deepblue);
  font-size: 1.55rem;
  line-height: 1.28;
}
@media (min-width: 640px) { .contact-heading { font-size: 1.9rem; } }
.contact-heading span { color: var(--secondary-600); }

.contact-info-text { color: var(--muted); font-size: 0.88rem; margin-top: 0.75rem; max-width: 480px; line-height: 1.65; }

.contact-media {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  margin-top: 1.35rem;
  height: 160px;
}
.contact-media img { width: 100%; height: 100%; object-fit: cover; }
.contact-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.contact-play-btn span {
  width: 2.85rem; height: 2.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
}
.contact-play-btn svg { width: 1.1rem; height: 1.1rem; color: var(--primary); margin-left: 2px; }

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-top: 1.35rem; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  box-shadow: var(--shadow-soft);
}
.contact-card-icon {
  width: 2.1rem; height: 2.1rem;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 1rem; height: 1rem; }
.contact-card h4 { font-size: 0.8rem; font-weight: 600; color: var(--deepblue); }
.contact-card p { font-size: 0.78rem; color: var(--muted); margin-top: 0.1rem; word-break: break-word; }

.contact-form-card { background: var(--deepblue); border-radius: 1.25rem; padding: 1.5rem; color: var(--white); }
@media (min-width: 640px) { .contact-form-card { padding: 2rem; } }
.contact-form-card h3 { font-size: 1.05rem; font-weight: 700; }
.contact-form-underline { width: 2.5rem; height: 3px; background: var(--secondary); border-radius: 999px; margin: 0.6rem 0 1.35rem; }
.contact-form-card textarea.input-field {
  min-height: 100px;
  resize: vertical;
  font-family: "Inter", Arial, sans-serif;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--deepblue); color: rgba(255, 255, 255, 0.7); padding-top: 4rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-logo { display: inline-flex; align-items: center; }
.footer-logo-img { height: 3rem; width: auto; display: block; border-radius: 0.6rem; }
.footer-about { font-size: 0.82rem; margin-top: 0.85rem; max-width: 280px; line-height: 1.6; }

.social-links { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
.social-links a {
  width: 2.25rem; height: 2.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.social-links a:hover { background: var(--secondary); }
.social-links svg { width: 1rem; height: 1rem; }

.footer-heading {
  font-weight: 600;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.82rem; }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--secondary-400); }
.footer-links li { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-links svg { width: 1rem; height: 1rem; margin-top: 0.2rem; flex-shrink: 0; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom-links { display: flex; align-items: center; gap: 1.25rem; }
.footer-bottom-links a:hover { color: var(--secondary-400); }

/* =========================================================
   BOOKING MODAL
   ========================================================= */
body.modal-open { overflow: hidden; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 46, 82, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }

.modal-box {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.65rem;
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-card);
  transform: translateY(16px);
  transition: transform 0.3s ease;
}
.modal-overlay.is-open .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  width: 2rem; height: 2rem;
  border-radius: 999px;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: background 0.2s;
}
.modal-close:hover { background: var(--border); }
.modal-close svg { width: 1rem; height: 1rem; }

.modal-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deepblue);
  font-family: "Poppins", Arial, sans-serif;
  padding-right: 1.5rem;
}
.modal-sub { font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; margin-bottom: 1.25rem; }

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.floating-buttons {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
@media (max-width: 767px) { .floating-buttons { bottom: 1rem; right: 1rem; } }

.btn-back-to-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: all 0.3s;
  width: 2.75rem; height: 2.75rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--deepblue);
}
.btn-back-to-top:hover { background: var(--primary-50); }
.btn-back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.btn-back-to-top svg { width: 1.25rem; height: 1.25rem; }

.btn-call-float {
  width: 3.5rem; height: 3.5rem;
  border-radius: 999px;
  background: var(--gradient-cta);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: transform 0.2s;
}
.btn-call-float:hover { transform: translateY(-2px); }
.btn-call-float svg { width: 1.5rem; height: 1.5rem; }
@media (max-width: 767px) {
  .btn-back-to-top,
  .btn-call-float { display: none; }
}

.btn-whatsapp-float {
  position: relative;
  width: 4rem; height: 4rem;
  border-radius: 999px;
  background: var(--whatsapp);
  box-shadow: var(--shadow-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: transform 0.2s;
}
.btn-whatsapp-float:hover { transform: translateY(-2px); }
.btn-whatsapp-float svg { width: 2rem; height: 2rem; position: relative; }
.whatsapp-ping {
  position: absolute; inset: 0;
  border-radius: 999px;
  background: var(--whatsapp);
  opacity: 0.4;
  animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

/* =========================================================
   RESPONSIVE FORM ROW COLLAPSE
   ========================================================= */
@media (max-width: 420px) {
  .form-row { grid-template-columns: 1fr; }
}

/* =========================================================
   LEGAL PAGES (Privacy Policy / Terms / Cookie Policy)
   ========================================================= */
.legal-hero { padding: 6.5rem 0 2.5rem; background: var(--deepblue); }
.legal-hero .container { text-align: center; }
.legal-hero h1 { color: var(--white); font-size: 1.9rem; font-weight: 700; }
.legal-hero p { color: rgba(255, 255, 255, 0.75); margin-top: 0.5rem; font-size: 0.85rem; }

.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deepblue);
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--muted); font-size: 0.92rem; line-height: 1.75; margin-bottom: 0.9rem; }
.legal-content ul { margin: 0 0 0.9rem 1.2rem; color: var(--muted); font-size: 0.92rem; line-height: 1.75; list-style: disc; }
.legal-content li { margin-bottom: 0.35rem; }
.legal-content a { color: var(--primary); text-decoration: underline; }
.legal-content strong { color: var(--deepblue); }

/* =========================================================
   THANK YOU PAGE
   ========================================================= */
.thankyou-hero { padding: 6.5rem 0 3.5rem; background: var(--deepblue); text-align: center; }
.thankyou-icon {
  width: 4.5rem; height: 4.5rem;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  background: var(--gradient-green);
  box-shadow: var(--shadow-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.thankyou-icon svg { width: 2.25rem; height: 2.25rem; }
.thankyou-hero h1 { color: var(--white); font-size: 2rem; font-weight: 700; }
.thankyou-hero p { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; max-width: 480px; margin: 0.75rem auto 0; line-height: 1.6; }
.thankyou-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 2rem; }

.thankyou-steps { display: grid; gap: 1.75rem; max-width: 900px; margin: 0 auto; }
@media (min-width: 768px) { .thankyou-steps { grid-template-columns: repeat(3, 1fr); } }
.thankyou-step { text-align: center; }
.thankyou-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 999px;
  background: var(--secondary-50);
  color: var(--secondary-600);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.thankyou-step h3 { font-size: 1rem; font-weight: 700; color: var(--deepblue); margin-bottom: 0.4rem; }
.thankyou-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* =========================================================
   TRUSTED COUNTRIES (FLAGS CAROUSEL)
   ========================================================= */
.trusted-flags-section .section-header { text-align: center; }
.trusted-flags-underline {
  width: 4.5rem;
  height: 3px;
  background: var(--primary);
  border-radius: 999px;
  margin: 0.9rem auto 0;
}

.country-flags-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.flag-nav {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: none;
  background: var(--gradient-green);
  color: var(--white);
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.flag-nav svg { width: 1.05rem; height: 1.05rem; }
.flag-nav:hover { transform: translateY(-2px); }
.flag-nav:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

.country-flags-viewport { flex: 1; overflow: hidden; }
.country-flags {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
  will-change: transform;
}
.country-flag {
  flex: 0 0 auto;
  width: 120px;
  height: 80px;
  border-radius: 0.6rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.country-flag img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 640px) {
  .country-flags-wrap { gap: 0.5rem; margin-top: 1.75rem; }
  .flag-nav { width: 2.25rem; height: 2.25rem; }
  .flag-nav svg { width: 0.9rem; height: 0.9rem; }
  .country-flags { gap: 0.6rem; }
  .country-flag { width: 84px; height: 56px; }
}
