/* ══════════════════════════════
   RESET & CSS VARIABLES
══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core Brand Colors — Teal & Navy (from VacciBuddy logo) */
  --blue-900:   #0a2f3d;
  --blue-800:   #0b4a4a;
  --blue-700:   #0f766e;
  --blue-600:   #0d9488;
  --blue-500:   #14b8a6;
  --blue-400:   #2dd4bf;
  --blue-300:   #5eead4;
  --blue-200:   #99f6e4;
  --blue-100:   #ccfbf1;
  --blue-50:    #f0fdfa;

  /* Neutral/Surface */
  --white:      #ffffff;
  --slate-50:   #f8fafc;
  --slate-100:  #f1f5f9;
  --slate-200:  #e2e8f0;
  --slate-300:  #cbd5e1;
  --slate-600:  #475569;
  --slate-700:  #334155;
  --slate-800:  #1e293b;
  --slate-900:  #0f172a;

  /* Accent - Coral/Red for the logo's cross mark & urgent notes */
  --coral-500:  #ef4444;
  --coral-600:  #dc2626;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #2dd4bf 100%);
  --grad-header:  linear-gradient(90deg, #0f766e, #14b8a6);
  --grad-btn:     linear-gradient(135deg, #0d9488, #14b8a6);
  --grad-card:    linear-gradient(160deg, #f0fdfa 0%, #ffffff 100%);

  --font-display: 'Outfit', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    18px;
  --radius-xl:    24px;

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 16px rgba(13,148,136,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:    0 10px 40px rgba(13,148,136,0.14), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-form:  0 24px 60px rgba(13,148,136,0.16), 0 4px 16px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); }

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

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(0.75); opacity: 0.5; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ══════════════════════════════
   TOP BAR
══════════════════════════════ */
.topbar {
  background: var(--blue-900);
  color: rgba(255,255,255,0.80);
  font-size: 0.8rem;
  padding: 9px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  letter-spacing: 0.01em;
}
.topbar a {
  color: var(--blue-300);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.topbar a:hover { color: #fff; }
.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.topbar-item svg {
  width: 13px; height: 13px;
  stroke: var(--blue-300);
  flex-shrink: 0;
}
.topbar-sep { color: rgba(255,255,255,0.2); }

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
header {
  background: var(--white);
  border-bottom: 1.5px solid var(--blue-100);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 2px 20px rgba(13,148,136,0.07);
  transition: box-shadow 0.3s;
}
.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-wrap img {
  height: 52px;
  width: auto;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-800);
  text-decoration: none;
  transition: color 0.2s;
}
.header-phone svg {
  width: 18px; height: 18px;
  stroke: var(--blue-500);
  stroke-width: 2.2;
}
.header-phone:hover { color: var(--blue-600); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-btn);
  color: #fff;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(20,184,166,0.34);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20,184,166,0.44);
}
.btn-primary:active { transform: translateY(0); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 88vh;
  background: var(--blue-50);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 90px 40px 80px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(20,184,166,0.16) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(15,118,110,0.10) 0%, transparent 70%);
  bottom: -100px; left: 5%;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--blue-200) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.45;
}

.dest-bubble {
  position: absolute;
  background: rgba(255,255,255,0.90);
  border: 1.5px solid var(--blue-200);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.78rem;
  color: var(--blue-700);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  animation: float 7s ease-in-out infinite;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
  user-select: none;
}
.dest-bubble.b1 { top: 10%;   left: 3%;   animation-delay: 0s; }
.dest-bubble.b2 { top: 22%;   right: 4%;  animation-delay: 1.4s; }
.dest-bubble.b3 { bottom: 30%; left: 2%;   animation-delay: 2.8s; }
.dest-bubble.b4 { bottom: 18%; right: 6%;  animation-delay: 0.7s; }
.dest-bubble.b5 { top: 54%;   left: 3%;   animation-delay: 2.1s; }
@media (max-width: 1480px) { .dest-bubble { display: none; } }

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-left { animation: slideUp 0.65s cubic-bezier(0.16,1,0.3,1) both; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-100);
  border: 1.5px solid var(--blue-200);
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-eyebrow svg { width: 12px; height: 12px; stroke: var(--blue-500); stroke-width: 2.5; }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.hero h1 .gradient-text {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid var(--blue-200);
  color: var(--slate-700);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.chip svg {
  width: 14px; height: 14px;
  stroke: var(--blue-500);
  stroke-width: 2.5;
  flex-shrink: 0;
}

.hero-urgency {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid var(--blue-200);
  border-left: 4px solid var(--blue-500);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--slate-700);
  font-size: 0.88rem;
  max-width: 520px;
  box-shadow: var(--shadow-sm);
}
.hero-urgency strong { color: var(--blue-700); }
.pulse-dot {
  width: 10px; height: 10px;
  background: var(--blue-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ══════════════════════════════
   ENQUIRY FORM CARD
══════════════════════════════ */
.form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px 34px;
  box-shadow: var(--shadow-form);
  border: 1.5px solid var(--blue-100);
  animation: slideUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.15s both;
  position: relative;
}
.form-card-header {
  background: var(--grad-btn);
  margin: -40px -34px 30px;
  padding: 26px 34px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  text-align: center;
}
.form-card-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.4px;
}
.form-card-header p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.88);
}
.free-badge {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.3);
}

/* Form Inputs */
.fg { margin-bottom: 14px; }
.fg label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--slate-800);
  background: var(--slate-50);
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
  -webkit-appearance: none;
  appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(20,184,166,0.14);
  background: #fff;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.v-error {
  display: none;
  color: #dc2626;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 4px;
  animation: fadeInUp 0.2s ease both;
}
.is-invalid { border-color: #f87171 !important; background: #fff5f5 !important; }
.is-valid   { border-color: #34d399 !important; background: #f0fdf4 !important; }
.hp-field   { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; }

/* Submit button */
.form-card .btn-submit {
  width: 100%;
  background: var(--grad-btn);
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(20,184,166,0.34);
  letter-spacing: 0.01em;
}
.form-card .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20,184,166,0.44);
}
.form-card .btn-submit:disabled {
  background: var(--slate-300);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.form-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--slate-600);
  margin-top: 12px;
  line-height: 1.5;
}

/* Success Box */
.success-box {
  display: none;
  background: #f0fdf4;
  border: 2px solid #34d399;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  animation: scaleIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
.success-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #10b981, #34d399);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}
.success-icon svg { width: 32px; height: 32px; stroke: #fff; stroke-width: 2.5; }
.success-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #065f46;
  margin-bottom: 10px;
}
.success-box p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.65;
}

/* ══════════════════════════════
   TRUST RIBBON
══════════════════════════════ */
.trust-ribbon {
  background: var(--grad-btn);
  padding: 18px 40px;
}
.trust-ribbon-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}
.trust-item svg {
  width: 18px; height: 18px;
  fill: rgba(255,255,255,0.85);
  flex-shrink: 0;
}

/* ══════════════════════════════
   SECTION COMMONS
══════════════════════════════ */
.section { padding: 96px 40px; }
.section-inner { max-width: 1160px; margin: 0 auto; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}
.eyebrow::after {
  content: '';
  flex: 0 0 36px; height: 2px;
  background: var(--blue-300);
  border-radius: 2px;
}

.section-h {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.78;
  max-width: 640px;
}

/* ══════════════════════════════
   WHY CHOOSE US
══════════════════════════════ */
.why-section { background: var(--blue-50); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1.5px solid var(--blue-100);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-btn);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  border-radius: 0 0 4px 4px;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  border: 1.5px solid var(--blue-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--blue-600);
  transition: background 0.25s, border-color 0.25s;
}
.why-icon svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 1.9; fill: none; }
.why-card:hover .why-icon {
  background: var(--blue-100);
  border-color: var(--blue-300);
}
.why-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ══════════════════════════════
   VACCINES
══════════════════════════════ */
.vaccines-section { background: #fff; }

.vaccines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.vax-card {
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}
.vax-card:hover {
  border-color: var(--blue-300);
  box-shadow: 0 8px 28px rgba(20,184,166,0.12);
  transform: translateY(-3px);
}
.vax-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-700);
  transition: background 0.22s;
}
.vax-card:hover .vax-icon { background: var(--blue-200); }
.vax-icon svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; fill: none; }
.vax-card h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate-900);
  margin-bottom: 6px;
  line-height: 1.3;
}
.vax-card p {
  font-size: 0.84rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.vax-note {
  margin-top: 36px;
  background: var(--blue-50);
  border: 1.5px solid var(--blue-200);
  border-left: 5px solid var(--blue-500);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  color: var(--slate-700);
  line-height: 1.6;
}
.vax-note svg {
  width: 26px; height: 26px;
  stroke: var(--blue-500);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* ══════════════════════════════
   PRICE LIST
══════════════════════════════ */
.price-section { background: var(--blue-50); }
.price-table-wrap {
  margin-top: 56px;
  background: #fff;
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.price-grid-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 720px) { .price-grid-cols { grid-template-columns: 1fr; } }
.price-col table {
  width: 100%;
  border-collapse: collapse;
}
.price-col:first-child { border-right: 1.5px solid var(--blue-100); }
@media (max-width: 720px) { .price-col:first-child { border-right: none; border-bottom: 1.5px solid var(--blue-100); } }
.price-table-wrap th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad-btn);
  padding: 12px 22px;
}
.price-table-wrap th.th-price, .price-table-wrap td.td-price { text-align: right; }
.price-table-wrap td {
  padding: 11px 22px;
  font-size: 0.88rem;
  color: var(--slate-700);
  border-top: 1px solid var(--slate-100);
}
.price-table-wrap tr:hover td { background: var(--blue-50); }
.price-table-wrap td.td-price {
  font-weight: 800;
  color: var(--blue-700);
  font-family: var(--font-display);
  white-space: nowrap;
}
.price-table-wrap td.td-course {
  color: var(--slate-500);
  font-size: 0.78rem;
}
.price-footnote {
  text-align: center;
  font-size: 0.84rem;
  color: var(--slate-600);
  margin-top: 22px;
}

/* ══════════════════════════════
   HOW IT WORKS
══════════════════════════════ */
.how-section {
  background: var(--grad-btn);
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px; right: -150px;
  pointer-events: none;
}
.how-section .eyebrow { color: var(--blue-100); }
.how-section .eyebrow::after { background: rgba(255,255,255,0.5); }
.how-section .section-h { color: #fff; }
.how-section .section-sub { color: rgba(255,255,255,0.85); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 32px;
  margin-top: 60px;
  position: relative;
}
.step-card { text-align: center; position: relative; }
.step-card::after {
  content: '→';
  position: absolute;
  right: -18px; top: 24px;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.22);
}
.step-card:last-child::after { display: none; }

.step-num {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-display);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.step-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  padding: 0 6px;
}

/* ══════════════════════════════
   LOCATIONS
══════════════════════════════ */
.locations-section { background: #fff; }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.loc-card {
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.loc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-300);
}
.loc-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(20,184,166,0.3);
}
.loc-icon svg { width: 24px; height: 24px; stroke: #fff; stroke-width: 2; fill: none; }
.loc-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.loc-card p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.loc-links { display: flex; flex-wrap: wrap; gap: 10px; }
.loc-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-700);
  text-decoration: none;
  background: #fff;
  border: 1.5px solid var(--blue-200);
  padding: 8px 14px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.loc-links a:hover { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }
.loc-links svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.5; }

/* ══════════════════════════════
   DESTINATIONS
══════════════════════════════ */
.dest-section { background: var(--blue-50); }

.dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}
.dest-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--blue-100);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-700);
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
  cursor: default;
}
.dest-tag:hover {
  border-color: var(--blue-400);
  background: var(--blue-50);
  color: var(--blue-700);
  transform: translateY(-2px);
}
.dest-tag .flag { font-size: 1.2rem; }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testi-section { background: #fff; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 26px;
  margin-top: 56px;
}
.testi-card {
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.testi-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: var(--blue-500);
  opacity: 0.12;
  position: absolute;
  top: 14px; left: 22px;
  user-select: none;
}
.stars {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-btn);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--slate-900);
}
.author-meta {
  font-size: 0.78rem;
  color: var(--slate-600);
}

/* ══════════════════════════════
   STATS STRIP
══════════════════════════════ */
.stats-strip {
  background: #fff;
  border-top: 1.5px solid var(--blue-100);
  border-bottom: 1.5px solid var(--blue-100);
  padding: 40px 40px;
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  align-items: center;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue-600);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 0.84rem;
  color: var(--slate-600);
  font-weight: 600;
}
.stat-divider {
  width: 1px; height: 60px;
  background: var(--blue-100);
}

/* ══════════════════════════════
   BOTTOM CTA
══════════════════════════════ */
.bottom-cta {
  background: var(--blue-50);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1.5px solid var(--blue-100);
}
.bottom-cta::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,0.12) 0%, transparent 70%);
  top: -250px; right: -100px;
  pointer-events: none;
}
.bottom-cta-inner {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.bottom-cta h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.bottom-cta p {
  font-size: 1.08rem;
  color: var(--slate-600);
  margin-bottom: 40px;
  line-height: 1.75;
}
.bottom-cta .btn-primary {
  font-size: 1.05rem;
  padding: 15px 48px;
}
.bottom-cta-note {
  font-size: 0.82rem;
  color: var(--slate-500);
  margin-top: 16px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--slate-900);
  color: rgba(255,255,255,0.55);
  padding: 56px 40px 40px;
  font-size: 0.86rem;
  line-height: 1.85;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img {
  height: 44px;
  margin-bottom: 14px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  display: inline-block;
}
.footer-brand p { max-width: 280px; color: rgba(255,255,255,0.5); }
.footer-col h5 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col p, .footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue-300); }
footer strong { color: rgba(255,255,255,0.88); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 7px 16px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.7);
}
.badge-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-legal { font-size: 0.74rem; color: rgba(255,255,255,0.35); max-width: 640px; }

/* ══════════════════════════════
   STICKY MOBILE BAR
══════════════════════════════ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--slate-900);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  gap: 12px;
  z-index: 500;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.m-call {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.m-book {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 4px 12px rgba(20,184,166,0.3);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  header { padding: 12px 24px; }
  .section { padding: 70px 24px; }
  .hero { padding: 72px 24px 48px; min-height: auto; }
  .step-card::after { display: none; }
  .trust-ribbon { padding: 16px 24px; }
  .stats-inner { gap: 40px; }
  .mobile-bar { display: flex; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}
@media (max-width: 768px) {
  .topbar-sep { display: none; }
  .topbar { gap: 6px 16px; }
  .header-phone { display: none; }
  .stat-divider { display: none; }
}
@media (max-width: 560px) {
  .header-actions { display: none; }
  .topbar { flex-direction: column; gap: 5px; }
  .trust-ribbon-inner { gap: 16px; }
  .hero h1 { font-size: 2.2rem; }
  .form-card { padding: 30px 20px; }
  .form-card-header { margin: -30px -20px 26px; padding: 22px 20px; }
  .row-2 { grid-template-columns: 1fr; gap: 0; }
  .bottom-cta { padding: 70px 24px; }
  .logo-wrap img { height: 42px; }
}
