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

:root {
  --navy:      #003580;
  --navy-dark: #00224f;
  --navy-lt:   #0071c2;
  --blue-pale: #ebf3ff;
  --gold:      #f5a623;
  --white:     #ffffff;
  --gray:      #f4f6f9;
  --text:      #1a1a2e;
  --muted:     #6b7280;
  --border:    #dde4ee;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1160px;
  --radius: 10px;
  --shadow: 0 2px 16px rgba(0,53,128,0.10);
  --shadow-hover: 0 8px 32px rgba(0,53,128,0.18);
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav__logo strong { font-weight: 800; color: #febb02; }
.logo__icon { font-size: 20px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav__links a:hover { color: #fff; }

.nav__cta {
  background: #fff;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s !important;
}

.nav__cta:hover {
  background: #febb02 !important;
  color: var(--navy-dark) !important;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}

.btn--white {
  background: #fff;
  color: var(--navy);
  border: 2px solid #fff;
}
.btn--white:hover { background: #febb02; border-color: #febb02; }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.btn--white-navy {
  background: #fff;
  color: var(--navy);
  border: 2px solid #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 6px;
  transition: all 0.2s;
}
.btn--white-navy:hover { background: #febb02; border-color: #febb02; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image: url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
  padding-top: 64px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,34,79,0.35) 0%,
    rgba(0,34,79,0.55) 50%,
    rgba(0,34,79,0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 40px 60px;
}

.hero__content h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
}

.hero__content p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Hero stats bar ─── */
.hero__stats {
  position: relative;
  z-index: 1;
  background: var(--navy);
}

.hero__stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

.hstat {
  padding: 22px 40px 22px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hstat__num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hstat__lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.hstat__div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  margin-right: 40px;
  flex-shrink: 0;
}

/* ─── Sections ─── */
.section { padding: 80px 40px; }
.section--gray { background: var(--gray); }

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-lt);
  margin-bottom: 8px;
}

.section__hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 40px;
}

.section__hd--center {
  justify-content: center;
  text-align: center;
}

.section__hd h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.15;
}

.section__sub {
  max-width: 360px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  flex-shrink: 0;
  padding-bottom: 6px;
}

/* ─── Destinations ─── */
.dest__hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
  height: 360px;
}

.dest__big,
.dest__medium,
.dest__card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.dest__big { height: 100%; }

.dest__stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.dest__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  height: 200px;
}

.dest__card { height: 100%; }

/* Photo overlay & caption */
.dest__big::after,
.dest__medium::after,
.dest__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,22,60,0.75) 0%, transparent 55%);
  transition: background 0.3s;
}

.dest__big:hover::after,
.dest__medium:hover::after,
.dest__card:hover::after {
  background: linear-gradient(to top, rgba(0,22,60,0.85) 0%, rgba(0,22,60,0.1) 55%);
}

.dest__caption {
  position: absolute;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  color: #fff;
}

.dest__caption h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.dest__caption span {
  font-size: 12px;
  opacity: 0.8;
}

.dest__medium .dest__caption h3 { font-size: 16px; }

/* ─── Steps ─── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.step:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.step__icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step p { color: var(--muted); font-size: 14px; line-height: 1.65; }

.step__arrow {
  font-size: 20px;
  color: var(--border);
  padding-top: 44px;
  flex-shrink: 0;
}

/* ─── Services ─── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.service:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--navy-lt);
}

.service__icon { font-size: 28px; margin-bottom: 14px; }

.service h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ─── Banner ─── */
.banner {
  background: var(--navy);
  padding: 60px 40px;
}

.banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.banner__text h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.banner__text p { color: rgba(255,255,255,0.7); font-size: 15px; }

/* ─── Perks ─── */
.perks__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.perk {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
}

.perk:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.perk__icon { font-size: 28px; margin-bottom: 14px; }

.perk h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.perk p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── Contact ─── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__left h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 10px 0 14px;
}

.contact__left > p {
  color: var(--muted);
  margin-bottom: 32px;
}

.contact__details { display: flex; flex-direction: column; }

.contact__row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact__row:first-child { border-top: 1px solid var(--border); }

.contact__icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

.contact__row div { display: flex; flex-direction: column; gap: 2px; }

.contact__row strong {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact__row span,
.contact__row a { font-size: 14px; color: var(--text); }

.contact__row a:hover { color: var(--navy-lt); }

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow);
}

/* ─── Footer ─── */
.footer {
  background: var(--navy-dark);
  padding: 60px 40px 0;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo { color: #fff !important; }
.footer__logo .logo__icon { font-size: 18px; }
.footer__logo strong { color: #febb02; }

.footer__brand p {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 240px;
}

.footer__col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.footer__col a,
.footer__col span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer__col a:hover { color: rgba(255,255,255,0.85); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 0;
}

.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services__grid,
  .perks__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 24px; }
  .nav { padding: 0 24px; }
  .hero__content { padding: 0 24px 40px; }
  .hero__stats-inner { padding: 0 24px; flex-wrap: wrap; }
  .hstat { flex: 0 0 50%; padding: 16px 0; }
  .hstat__div { display: none; }
  .dest__hero-grid { grid-template-columns: 1fr; height: auto; }
  .dest__big { height: 240px; }
  .dest__stack { grid-template-rows: 160px 160px; }
  .dest__grid { grid-template-columns: repeat(2, 1fr); height: auto; }
  .dest__card { height: 160px; }
  .steps { flex-direction: column; }
  .step__arrow { transform: rotate(90deg); align-self: center; padding: 0; }
  .services__grid,
  .perks__grid { grid-template-columns: 1fr; }
  .banner__inner { flex-direction: column; align-items: flex-start; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { height: 280px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
