/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --teal:       #278486;
  --teal-dark:  #1f6e70;
  --teal-deep:  #1b4648;
  --pink:       #f4959d;
  --pink-dark:  #e87880;
  --dark:       #1a2332;
  --lteal:      #e8f4f4;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--dark); background: #fff; }
button { font-family: 'DM Sans', sans-serif; }
input, textarea, select { font-family: 'DM Sans', sans-serif; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ── APP SHELL ──────────────────────────────────────────────── */
.app  { min-height: 100vh; display: flex; flex-direction: column; }
.main { flex: 1; }

/* ── LAYOUT HELPERS ─────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; }
.section    { padding: 72px 32px; position: relative; overflow: hidden; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; box-shadow: 0 1px 0 #e5e7eb; transition: box-shadow 0.2s;
}
.navbar--scrolled { box-shadow: 0 2px 18px rgba(0,0,0,0.1); }
.navbar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; height: 68px; padding: 0 32px; gap: 8px;
}
.nav-links { flex: 1; display: flex; justify-content: center; }
.nav-link {
  background: none; border: none; cursor: pointer;
  font-size: 13.5px; font-weight: 500; padding: 8px 11px;
  color: #374151; border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s; white-space: nowrap;
}
.nav-link:hover  { color: var(--teal); }
.nav-link--active { color: var(--teal); border-bottom-color: var(--teal); }
.nav-cta {
  background: var(--teal); color: #fff; border: none; border-radius: 7px;
  padding: 10px 18px; font-size: 13px; font-weight: 600; cursor: pointer;
  flex-shrink: 0; display: flex; align-items: center; gap: 7px; transition: background 0.15s;
}
.nav-cta:hover    { background: var(--teal-dark); }
.nav-cta--active  { background: var(--teal-dark); }

/* ── LOGO ───────────────────────────────────────────────────── */
.logo { display: flex; align-items: center; user-select: none; }
.logo--clickable { cursor: pointer; }

/* ── PAGE HEADER ────────────────────────────────────────────── */
.page-header {
  min-height: 220px;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  display: flex; align-items: center; padding: 0 32px;
  position: relative; overflow: hidden;
}
.page-header__deco-1 {
  position: absolute; right: -60px; top: -60px;
  width: 340px; height: 340px; border-radius: 50%; background: rgba(255,255,255,0.05);
}
.page-header__deco-2 {
  position: absolute; right: 120px; bottom: -80px;
  width: 200px; height: 200px; border-radius: 50%; background: rgba(244,149,157,0.1);
}
.page-header__inner { max-width: 1280px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.page-header__paperplane {
  position: absolute; right: 80px; bottom: -30px;
  width: 220px; height: 220px; z-index: 0; opacity: 0.85;
}
@media (max-width: 768px) {
  .page-header__paperplane { right: 8px; bottom: 0; width: 100px; height: 100px; opacity: 0.5; }
}
.page-header__breadcrumb { color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 10px; }
.page-header__title {
  color: #fff; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 54px; line-height: 1; letter-spacing: -1px;
}

/* ── SHARED TEXT ────────────────────────────────────────────── */
.sec-label {
  color: var(--teal); font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px;
}
.sec-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 40px; line-height: 1.05; color: var(--dark); letter-spacing: -0.5px;
}
.sec-title--center { text-align: center; }
.divider-lottie { display: flex; margin-top: 8px; line-height: 0; justify-content: flex-start; }
.divider-lottie--center { justify-content: center; }
.divider-lottie lottie-player { width: 160px !important; height: 24px !important; display: block; flex-shrink: 0; }
.sub { color: #6b7280; font-size: 14.5px; line-height: 1.75; margin-top: 14px; }
.sub--center { text-align: center; }
.section-header         { margin-bottom: 48px; }
.section-header--center { text-align: center; margin-bottom: 48px; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-teal {
  background: var(--teal); color: #fff; border: 2px solid var(--teal);
  border-radius: 7px; padding: 11px 24px; font-size: 14px; font-weight: 600;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all 0.18s;
}
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn-teal--outline { background: transparent; color: var(--teal); }
.btn-teal--outline:hover { background: var(--teal); color: #fff; }

.btn-pink {
  background: var(--pink); color: #fff; border: none; border-radius: 7px;
  padding: 11px 24px; font-size: 14px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; transition: background 0.18s;
}
.btn-pink:hover { background: var(--pink-dark); }

/* ── ICON CARD ──────────────────────────────────────────────── */
.icon-card {
  border: 1px solid #e5e7eb; border-radius: 10px;
  padding: 24px 20px; text-align: center; background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.icon-card:hover { box-shadow: 0 6px 28px rgba(39,132,134,0.13); transform: translateY(-2px); }
.icon-card__icon {
  width: 52px; height: 52px; background: var(--lteal); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 24px; color: var(--teal);
}
.icon-card__title { font-weight: 700; font-size: 14.5px; color: var(--dark); margin-bottom: 8px; }
.icon-card__sub   { color: #6b7280; font-size: 13px; line-height: 1.65; }

/* ── CHECK ROW ──────────────────────────────────────────────── */
.check-row   { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 11px; }
.check-row svg { flex-shrink: 0; margin-top: 2px; }
.check-row p { color: #374151; font-size: 14px; line-height: 1.6; }

/* ── DARK CTA BANNER ────────────────────────────────────────── */
.dark-cta {
  background: var(--dark); border-radius: 14px; padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.dark-cta__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 32px; color: #fff; margin-bottom: 6px;
}
.dark-cta__sub { color: rgba(255,255,255,0.6); font-size: 14px; }
.dark-cta__btn {
  color: #fff; border: none; border-radius: 8px; padding: 14px 28px;
  font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: opacity 0.15s;
}
.dark-cta__btn:hover { opacity: 0.88; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; min-height: 520px; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(10,40,45,0.88) 0%, rgba(10,40,45,0.72) 40%,
    rgba(10,40,45,0.25) 70%, rgba(0,0,0,0) 100%);
}
.hero__content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 80px 32px; }
.hero__inner   { max-width: 560px; }
.hero__eyebrow { color: var(--pink); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.hero__title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 62px; line-height: 1; color: #fff; letter-spacing: -1.5px;
  margin-bottom: 20px; text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero__desc { color: rgba(255,255,255,0.82); font-size: 15.5px; line-height: 1.8; margin-bottom: 36px; max-width: 460px; }
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__btn {
  color: #fff; border: none; border-radius: 7px; padding: 13px 22px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; transition: opacity 0.15s;
}
.hero__btn:hover     { opacity: 0.88; }
.hero__btn--visa     { background: var(--teal); }
.hero__btn--tour     { background: #1a8a1a; }
.hero__btn--invest   { background: var(--pink); }

/* ── GRIDS ──────────────────────────────────────────────────── */
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }

/* ── TOUR CARDS (home) ──────────────────────────────────────── */
.tour-card {
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 14px; padding: 32px; align-items: start;
}
.tour-card--inbound  { display: grid; grid-template-columns: 1fr auto; gap: 24px; }
.tour-card--outbound { display: grid; grid-template-columns: auto 1fr; gap: 24px; }
.tour-card__title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 22px; color: var(--dark); margin-bottom: 10px; }
.tour-card__desc  { color: #6b7280; font-size: 13.5px; line-height: 1.7; margin-bottom: 20px; }
.tour-card__img   { width: 180px; height: 220px; border-radius: 12px; overflow: hidden; flex-shrink: 0; }
.tour-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.tour-card__cta  { margin-top: 24px; }
.tour-card__cta--out { margin-top: 20px; }
.dot-item        { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.dot-item__dot   { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }
.dot-item__label { color: #374151; font-size: 14px; }

/* ── INVEST MINI CARDS (home) ───────────────────────────────── */
.invest-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.invest-mini-card {
  background: #fff; border: 1px solid #d4eeee; border-radius: 12px;
  padding: 24px 20px; text-align: center; box-shadow: 0 2px 12px rgba(39,132,134,0.07);
}
.invest-mini-card__icon {
  width: 52px; height: 52px; background: var(--lteal); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
  font-size: 22px; color: var(--teal);
}
.invest-mini-card__title { font-weight: 700; font-size: 14px; color: var(--dark); margin-bottom: 7px; }
.invest-mini-card__sub   { color: #6b7280; font-size: 13px; line-height: 1.6; }

/* ── WHY CHOOSE US (home) ───────────────────────────────────── */
.why-card { text-align: center; padding: 28px 16px; border: 1px solid #e5e7eb; border-radius: 12px; background: #fff; }
.why-card__icon { width: 56px; height: 56px; background: var(--lteal); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; color: var(--teal); }
.why-card__title { font-weight: 600; font-size: 13.5px; color: var(--dark); line-height: 1.45; }

/* ── CTA BAND (home bottom) ─────────────────────────────────── */
/* ── ACHIEVEMENTS ────────────────────────────────────────────── */
.achievements-section { background: #fff; }
/* ── PARTNERS & CERTIFICATIONS ──────────────────────────────── */
.partners-section { background: #f8fafc; overflow: hidden; }
.partners-ticker-rows { display: flex; flex-direction: column; gap: 16px; padding-bottom: 8px; }
.partners-ticker-wrap {
  overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.partners-ticker {
  display: flex; width: max-content;
  animation: ticker-ltr 32s linear infinite;
}
.partners-ticker--rtl { animation: ticker-rtl 32s linear infinite; }
.partners-ticker:hover,
.partners-ticker--rtl:hover { animation-play-state: paused; }
@keyframes ticker-ltr {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes ticker-rtl {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.ticker-card {
  background: #fff; border: 1px solid #e8edf2; border-radius: 12px;
  padding: 20px 28px; display: flex; align-items: center; justify-content: center;
  min-width: 180px; margin: 0 10px; flex-shrink: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ticker-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-3px); }
.partner-logo { max-height: 64px; max-width: 150px; width: auto; object-fit: contain; filter: grayscale(30%); transition: filter 0.2s; }
.ticker-card:hover .partner-logo { filter: grayscale(0%); }
/* legacy grid (kept for achievements section reuse) */
.partners-grid {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 24px; margin-top: 12px;
}
.partner-card {
  background: #fff; border: 1px solid #e8edf2; border-radius: 12px;
  padding: 24px 32px; display: flex; align-items: center; justify-content: center;
  min-width: 180px; flex: 1 1 180px; max-width: 240px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.partner-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-3px); }


@media (max-width: 1024px) {
}

.cta-band { padding: 52px 32px; background: var(--dark); }
.cta-band__inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band__title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 38px; color: #fff; margin-bottom: 8px; letter-spacing: -0.5px; }
.cta-band__sub   { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; }
.cta-band__btns  { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band__btn {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 8px;
  padding: 12px 22px; font-size: 13.5px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.15s, background 0.15s;
}
.cta-band__btn:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ── VISA FEATURE STRIP ─────────────────────────────────────── */
.feature-strip {
  background: var(--lteal); border-radius: 14px; padding: 28px 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 56px;
}
.feature-strip__item  { display: flex; align-items: center; gap: 12px; }
.feature-strip__icon  { font-size: 22px; color: var(--teal); }
.feature-strip__label { font-weight: 600; font-size: 14px; color: var(--dark); }

/* ── INBOUND TOUR CARDS (tours page) ────────────────────────── */
.inbound-cards {
  display: flex; flex-direction: row; gap: 14px; margin-bottom: 40px;
}
.inbound-card {
  flex: 1; aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden;
  cursor: pointer; transition: transform 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.inbound-card:hover { transform: scale(1.04); }
.inbound-card__body {
  width: 100%; height: 100%; display: flex; align-items: flex-end; padding: 14px;
  background-image: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0) 55%), var(--bg);
  background-size: cover;
  background-position: center;
}
.inbound-card__label { color: #fff; font-weight: 700; font-size: 13px; line-height: 1.35; }
.inbound-card__sub   { color: rgba(255,255,255,0.75); font-size: 11px; margin-top: 3px; }

/* ── DESTINATION CARDS (tours page) ─────────────────────────── */
.dest-card {
  height: 130px; border-radius: 12px; display: flex;
  align-items: flex-end; padding: 14px; cursor: pointer; transition: transform 0.2s;
  background-image: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0) 55%), var(--bg);
  background-size: cover;
  background-position: center;
}
.dest-card:hover    { transform: scale(1.05); }
.dest-card__label   { color: #fff; font-weight: 700; font-size: 15px; }

/* ── WHY INVEST PANEL (invest page) ─────────────────────────── */
.invest-why-panel {
  background: var(--lteal); border-radius: 14px; padding: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; margin-bottom: 48px;
}
.invest-why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 32px; color: var(--dark); margin-bottom: 16px;
}
.invest-why-panel .check-row p { color: #374151 !important; }
.invest-stats {
  border-radius: 14px; padding: 40px; color: #fff; text-align: center;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
}
.invest-stats__num   { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 44px; color: var(--pink); line-height: 1; }
.invest-stats__label { font-size: 13px; opacity: 0.75; margin-top: 4px; }

/* ── ABOUT STORY ────────────────────────────────────────────── */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 64px; }
.about-body-text  { color: #6b7280; font-size: 14px; line-height: 1.8; margin-top: 16px; margin-bottom: 28px; }
.mission-box { border-radius: 16px; padding: 36px; color: #fff; background: linear-gradient(135deg, var(--teal), var(--teal-deep)); }
.mission-item { display: flex; gap: 16px; margin-bottom: 28px; }
.mission-item:last-child { margin-bottom: 0; }
.mission-item__icon {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; color: #fff;
}
.mission-item__title { font-weight: 700; font-size: 15px; margin-bottom: 5px; }
.mission-item__sub   { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.65; }

/* ── STAT CARDS (about page) ────────────────────────────────── */
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 56px; }
.stat-card  { text-align: center; background: #f8fafc; border-radius: 14px; padding: 36px 24px; border: 1px solid #e5e7eb; }
.stat-card__num   { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 52px; color: var(--teal); line-height: 1; }
.stat-card__label { color: #6b7280; font-size: 14px; margin-top: 8px; }

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-grid       { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }
.contact-info-row   { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-icon  { width: 48px; height: 48px; border-radius: 12px; background: var(--lteal); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; color: var(--teal); }
.contact-info-label { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.contact-info-val   { color: #6b7280; font-size: 13.5px; line-height: 1.75; white-space: pre-line; }
.map-embed { border-radius: 12px; overflow: hidden; margin-top: 20px; }
.contact-form-box { background: #f8fafc; border-radius: 16px; padding: 36px; border: 1px solid #e5e7eb; }
.contact-form-box h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 28px; margin-bottom: 24px; color: var(--dark); }
.form-row-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-input  { border: 1px solid #d1d5db; border-radius: 8px; padding: 12px 14px; font-size: 14px; outline: none; background: #fff; width: 100%; transition: border-color 0.15s; }
.form-input:focus { border-color: var(--teal); }
.form-textarea { border: 1px solid #d1d5db; border-radius: 8px; padding: 12px 14px; font-size: 14px; outline: none; width: 100%; resize: vertical; background: #fff; margin-bottom: 18px; display: block; transition: border-color 0.15s; }
.form-textarea:focus { border-color: var(--teal); }
.form-submit { background: var(--teal); color: #fff; border: none; border-radius: 8px; padding: 13px; font-size: 14px; font-weight: 600; cursor: pointer; width: 100%; transition: background 0.15s; }
.form-submit:hover { background: var(--teal-dark); }
.form-submitting            { text-align: center; padding: 40px 0; }
.form-submitting__label     { color: #6b7280; font-size: 14px; margin-top: 8px; }
.form-success        { text-align: center; padding: 40px 0; }
.form-success__icon  { font-size: 48px; margin-bottom: 16px; color: var(--teal); }
.form-success__title { font-weight: 700; font-size: 18px; color: var(--teal); }
.form-success__sub   { color: #6b7280; margin-top: 8px; }

/* ── CONSULTATION PAGE ──────────────────────────────────────── */
.consult-grid    { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.consult-form-box { background: #f8fafc; border-radius: 16px; padding: 40px; border: 1px solid #e5e7eb; }
.consult-form    { display: grid; gap: 14px; }
.consult-field   { border: 1px solid #d1d5db; border-radius: 8px; padding: 13px 16px; font-size: 14px; outline: none; background: #fff; color: #374151; width: 100%; transition: border-color 0.15s; }
.consult-field:focus { border-color: var(--teal); }
.consult-submit  { background: var(--pink); color: #fff; border: none; border-radius: 8px; padding: 14px; font-size: 14px; font-weight: 700; cursor: pointer; width: 100%; transition: background 0.15s; }
.consult-submit:hover { background: var(--pink-dark); }
.consult-success        { text-align: center; padding: 40px 0; }
.consult-success__icon  { font-size: 56px; margin-bottom: 20px; color: var(--teal); }
.consult-success__title { font-weight: 700; font-size: 22px; color: var(--teal); font-family: 'Barlow Condensed', sans-serif; }
.consult-success__sub   { color: #6b7280; margin-top: 10px; line-height: 1.7; }
.consult-next h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 32px; color: var(--dark); margin-bottom: 28px; }
.step-item  { display: flex; gap: 18px; margin-bottom: 32px; }
.step-num   { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-deep)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 15px; flex-shrink: 0; font-family: 'Barlow Condensed', sans-serif; }
.step-title { font-weight: 700; font-size: 16px; margin-bottom: 5px; }
.step-desc  { color: #6b7280; font-size: 14px; line-height: 1.7; }
.call-box   { background: var(--lteal); border-radius: 12px; padding: 28px; border: 1px solid rgba(39,132,134,0.25); margin-top: 8px; }
.call-box__title { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.call-box__sub   { color: #6b7280; font-size: 14px; line-height: 1.7; }
.call-box__num   { color: var(--teal); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--dark); color: #fff; }
.footer-grid {
  max-width: 1280px; margin: 0 auto; padding: 56px 32px 0;
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap: 2.5rem;
}
.footer-brand-desc { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.85; margin-top: 14px; max-width: 250px; }
.footer-socials    { display: flex; gap: 9px; margin-top: 18px; }
.footer-social-icon {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  cursor: pointer; color: rgba(255,255,255,0.65); transition: background 0.15s;
}
.footer-social-icon:hover { background: rgba(255,255,255,0.2); }
.footer-heading { font-weight: 700; font-size: 13.5px; margin-bottom: 18px; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-link { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 13px; cursor: pointer; display: block; line-height: 1; transition: color 0.15s; }
.footer-link:hover { color: var(--pink); }
.footer-contact-row  { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-icon { margin-top: 2px; color: rgba(255,255,255,0.45); flex-shrink: 0; }
.footer-contact-text { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.7; white-space: pre-line; }
.newsletter-desc       { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.75; margin-bottom: 16px; }
.newsletter-subscribed { color: var(--pink); font-size: 13px; font-weight: 600; }
.newsletter-form       { display: flex; }
.newsletter-input {
  flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-right: none; border-radius: 7px 0 0 7px;
  padding: 10px 12px; font-size: 13px; color: #fff; outline: none;
}
.newsletter-btn { background: var(--pink); color: #fff; border: none; border-radius: 0 7px 7px 0; padding: 10px 14px; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background 0.15s; }
.newsletter-btn:hover { background: var(--pink-dark); }
.footer-bottom { max-width: 1280px; margin: 44px auto 0; padding: 20px 32px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; }
.footer-copy       { color: rgba(255,255,255,0.3); font-size: 12px; }
.footer-legal      { display: flex; gap: 20px; }
.footer-legal-link { color: rgba(255,255,255,0.3); font-size: 12px; cursor: pointer; }

/* ── LAYOUT CLASSES (used for responsive overrides) ─────────── */
.home-tours-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.invest-home-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: center; }
.grid-why         { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.grid-5-cards     { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; margin-bottom: 56px; }

/* ── HAMBURGER / MOBILE MENU ─────────────────────────────────── */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--dark); padding: 4px; align-items: center; justify-content: center;
  transition: color 0.15s; margin-left: auto;
}
.hamburger:hover { color: var(--teal); }
.mobile-menu {
  display: flex; flex-direction: column;
  background: #fff; border-top: 1px solid #e8f0f0;
  padding: 8px 20px 20px;
}
.mobile-nav-link {
  background: none; border: none; border-bottom: 1px solid #f0f4f4;
  cursor: pointer; font-size: 15px; font-weight: 500; font-family: 'DM Sans', sans-serif;
  padding: 13px 0; color: #374151; text-align: left; transition: color 0.15s;
}
.mobile-nav-link:hover  { color: var(--teal); }
.mobile-nav-link--active { color: var(--teal); font-weight: 600; }
.mobile-cta-btn {
  background: var(--teal); color: #fff; border: none; border-radius: 7px;
  padding: 13px; font-size: 14px; font-weight: 600; cursor: pointer;
  margin-top: 14px; transition: background 0.15s; font-family: 'DM Sans', sans-serif;
}
.mobile-cta-btn:hover { background: var(--teal-dark); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .grid-5-cards { grid-template-columns: repeat(3,1fr); }
  .grid-why     { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  /* Navbar */
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }
  .navbar-inner { padding: 0 20px; }

  /* Layout */
  .section { padding: 48px 20px; }

  /* Hero */
  .hero__content { padding: 56px 20px 64px; }
  .hero__title   { font-size: 38px; letter-spacing: -1px; }
  .hero__desc    { font-size: 14px; max-width: 100%; }
  .hero__btns    { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero__btn     { width: 100%; justify-content: center; }

  /* Page header */
  .page-header        { padding: 0 20px; min-height: 160px; }
  .page-header__title { font-size: 36px; }

  /* Section titles */
  .sec-title { font-size: 28px; }

  /* Grid overrides */
  .grid-5          { grid-template-columns: 1fr 1fr; gap: 12px; }
  .grid-5-cards    { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
  .grid-6          { grid-template-columns: 1fr 1fr; gap: 10px; }
  .grid-why        { grid-template-columns: 1fr 1fr; gap: 12px; }
  .home-tours-grid { grid-template-columns: 1fr; gap: 20px; }
  .invest-home-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Tour cards — image as background on mobile */
  .tour-card--inbound  { grid-template-columns: 1fr; }
  .tour-card--outbound { grid-template-columns: 1fr; }
  .tour-card__img      { display: none; }
  .tour-card {
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    border: none;
    position: relative;
    overflow: hidden;
    padding: 0;
  }
  .tour-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,20,35,0.45) 0%, rgba(10,20,35,0.82) 100%);
    border-radius: 14px;
    pointer-events: none;
  }
  .tour-card > div:not(.tour-card__img) {
    position: relative;
    z-index: 1;
    padding: 28px 24px;
  }
  .tour-card__title { color: #fff; }
  .tour-card__desc  { color: rgba(255,255,255,0.78); }
  .tour-card .check-row p { color: rgba(255,255,255,0.85); }
  .dot-item__label  { color: rgba(255,255,255,0.85); }
  .dot-item__dot    { background: rgba(255,255,255,0.6); }

  /* Investment mini grid */
  .invest-mini-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Inbound cards */
  .inbound-cards    { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
  .inbound-card     { flex: none; }

  /* Destination cards */
  .dest-card { height: 100px; }

  /* Dark CTA */
  .dark-cta      { flex-direction: column; text-align: center; padding: 32px 20px; gap: 16px; }
  .dark-cta__btn { width: 100%; padding: 14px; }

  /* CTA band */
  .cta-band        { padding: 40px 20px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-band__btns  { flex-direction: column; width: 100%; }
  .cta-band__btn   { width: 100%; justify-content: center; }

  /* Feature strip */
  .feature-strip { grid-template-columns: 1fr 1fr; padding: 20px 24px; gap: 16px; margin-bottom: 32px; }

  /* Investment why panel */
  .invest-why-panel { grid-template-columns: 1fr; gap: 2rem; padding: 28px 24px; }

  /* About page */
  .about-story-grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 40px; }
  .stat-cards       { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }

  /* Contact / Consult */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .consult-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 40px 20px 0; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 10px; text-align: center; }
  .footer-legal  { justify-content: center; }
}


@media (max-width: 480px) {
  .hero__title      { font-size: 30px; }
  .sec-title        { font-size: 24px; }
  .grid-5           { grid-template-columns: 1fr; }
  .grid-5-cards     { grid-template-columns: 1fr; }
  .inbound-card     { flex: none; }
  .invest-mini-grid { grid-template-columns: 1fr; }
  .feature-strip    { grid-template-columns: 1fr; padding: 20px; }
  .footer-grid      { grid-template-columns: 1fr; }
  .stat-cards       { grid-template-columns: 1fr 1fr; }
  .dark-cta__title  { font-size: 22px; }
  .cta-band__title  { font-size: 26px; }
  .page-header__title { font-size: 28px; }
}
