/* =========================================
   Domestic / International — mockup 2026
   Navy #0B1F3A + Gold #D4AF37
========================================= */

.mk-page {
  --navy: #0b1f3a;
  --gold: #d4af37;
  --ink: #152238;
  --muted: #5f6b7c;
  --line: #e6ebf2;
  --soft: #f7f8fb;
  --font: "Poppins", "Segoe UI", sans-serif;
  --display: "Poppins", "Segoe UI", sans-serif;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

.mk-page *,
.mk-page *::before,
.mk-page *::after { box-sizing: border-box; }

.mk-wrap {
  width: min(1180px, 92%);
  margin-left: auto;
  margin-right: auto;
}

.mk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: 0.25s ease;
  white-space: nowrap;
  line-height: 1.2;
  text-align: center;
  min-height: 46px;
}

.mk-btn--gold { background: var(--gold); color: #111; border-color: var(--gold); }
.mk-btn--gold:hover { filter: brightness(1.05); color: #111; }
.mk-btn--outline-gold {
  background: transparent;
  color: #fff;
  border-color: var(--gold);
}
.mk-btn--outline-gold:hover { background: rgba(212,175,55,.14); color: #fff; }
.mk-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.mk-btn--outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.mk-btn--ghost-dark {
  background: #fff;
  color: var(--navy);
  border-color: #d7dde8;
}
.mk-btn--ghost-dark:hover { border-color: var(--navy); color: var(--navy); }
.mk-btn--wa { background: #25d366; color: #fff; border-color: #25d366; }
.mk-btn--wa:hover { color: #fff; filter: brightness(1.05); }

/* Gold line icons */
.mk-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.mk-ico i { color: var(--gold); font-size: 15px; line-height: 1; }
.mk-ico--lg {
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
}
.mk-ico--lg i { font-size: 22px; }
.mk-ico--on-navy {
  border-color: rgba(212,175,55,.55);
  background: transparent;
}
.mk-ico--on-navy i { font-size: 18px; }

/* HERO */
.mk-hero {
  position: relative;
  min-height: 80svh;
  display: flex;
  align-items: flex-end;
  padding: 110px 0 80px;
  color: #fff;
}

.mk-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.mk-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: end;
}

.mk-hero__grid--solo { grid-template-columns: 1fr; }

/* International CTA balloons */
.mk-cta--intl {
  padding: 20px 0;
  background:
    linear-gradient(120deg, rgba(8,22,45,.52), rgba(11,31,58,.34)),
    url("https://images.unsplash.com/photo-1507608616759-54f48f0af0ee?auto=format&fit=crop&w=1600&q=85") center/cover !important;
}

.mk-reviews--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.mk-hero__copy { text-align: left; max-width: 560px; }

.mk-eyebrow {
  margin: 0 0 10px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  color: var(--gold);
  line-height: 1.2;
}

.mk-hero h1 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  line-height: 1.18;
  color: #fff;
  font-weight: 700;
}

.mk-hero h1 span { color: var(--gold); }

.mk-sub {
  margin: 0 0 22px;
  max-width: 46ch;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
  font-weight: 400;
  white-space: pre-line;
}

.mk-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.mk-hero__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 420px;
  margin-left: auto;
}

.mk-hero__collage img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
  border: 2px solid rgba(255,255,255,.12);
}

.mk-hero__collage img:nth-child(2),
.mk-hero__collage img:nth-child(4) {
  transform: translateY(18px);
}

/* USP white bar */
.mk-usp {
  margin-top: -36px;
  position: relative;
  z-index: 3;
  padding-bottom: 10px;
}

.mk-page .mk-usp__row,
.mk-usp__row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  justify-content: space-between !important;
  gap: 8px !important;
  background: #fff !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 44px rgba(8,22,45,.12) !important;
  padding: 22px 16px !important;
  margin: 0 !important;
  width: 100% !important;
}

.mk-page .mk-usp__row > div,
.mk-usp__row > div {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 10px !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: auto !important;
  float: none !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #0b1f3a !important;
  line-height: 1.35 !important;
}

.mk-usp__row i { color: #d4af37 !important; font-size: 16px !important; }

/* Sections */
.mk-section { padding: 32px 0; background: #fff; }

.mk-section--soft { background: var(--soft); }

.mk-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.mk-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  color: var(--navy);
  font-weight: 700;
}

.mk-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mk-link:hover { color: #c29b2a; }

.mk-title-center {
  text-align: center;
  margin-bottom: 20px;
}

.mk-title-center h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  color: var(--navy);
  font-weight: 700;
}

.mk-title-center h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 12px auto 0;
  background: var(--gold);
  border-radius: 2px;
}

.mk-why-navy .mk-title-center h2 { color: #fff; }
.mk-why-navy .mk-title-center h2::after { background: var(--gold); }

/* Destinations 6 */
.mk-dest-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.mk-dest {
  position: relative;
  display: block;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  background: var(--navy);
  box-shadow: 0 10px 26px rgba(8,22,45,.1);
}

.mk-dest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.mk-dest:hover img { transform: scale(1.06); }

.mk-dest__copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 12px 14px;
  background: linear-gradient(180deg, transparent, rgba(8,22,45,.94));
  color: #fff;
  text-align: left;
}

.mk-dest__copy h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}

.mk-dest__copy span {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

.mk-dest__go {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-style: normal;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

/* Holiday types 8 */
.mk-types {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px;
}

.mk-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 128px;
  padding: 18px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  text-align: center;
  transition: .25s ease;
}

.mk-type:hover {
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 10px 24px rgba(8,22,45,.08);
  transform: translateY(-2px);
}

.mk-type h3 {
  margin: 0;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

/* Packages 4 */
.mk-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mk-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(8,22,45,.06);
  display: flex;
  flex-direction: column;
}

.mk-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 200px;
  overflow: hidden;
  background: #eef2f7;
}
.mk-card__media a {
  display: block;
  position: absolute;
  inset: 0;
}
.mk-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  display: block;
}

/* Badge removed — keep class hidden if old HTML cached */
.mk-badge { display: none !important; }

.mk-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.mk-card__top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
}

.mk-card__body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 16px;
  color: var(--navy);
  line-height: 1.3;
}

.mk-dur {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  background: var(--soft);
  padding: 3px 8px;
  border-radius: 999px;
}

.mk-places {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.mk-incs {
  display: flex;
  gap: 12px;
  color: #9aa3b2;
  font-size: 14px;
  padding: 4px 0;
}

.mk-card__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.mk-price small,
.mk-price em {
  font-size: 12px;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

.mk-price strong {
  font-size: 17px;
  color: var(--navy);
  margin: 0 4px;
}

.mk-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mk-card__actions .mk-btn { padding: 9px 8px; font-size: 12px; }

.mk-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

/* Why navy */
.mk-why-navy {
  padding: 28px 0;
  background: var(--navy);
  color: #fff;
}

.mk-why-navy__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  text-align: center;
}

.mk-why-navy__row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255,255,255,.95);
}

.mk-why-navy .mk-ico--on-navy {
  width: 40px;
  height: 40px;
}
.mk-why-navy .mk-ico--on-navy i { font-size: 15px; }

.mk-title-center { margin-bottom: 14px; }
.mk-title-center h2 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
.mk-title-center h2::after { margin-top: 8px; width: 42px; }

/* Gallery */
.mk-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.mk-gallery__item { margin: 0; }
.mk-gallery img {
  width: 100%;
  height: 156px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  transition: transform .4s ease;
}
.mk-gallery__item:hover img { transform: scale(1.03); }

/* Reviews 5 */
.mk-reviews {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.mk-review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 8px 22px rgba(8,22,45,.05);
  display: flex;
  flex-direction: column;
}

.mk-stars {
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 13px;
}

.mk-review > p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  font-style: italic;
  color: var(--ink);
  flex: 1;
}

.mk-review__user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mk-review__user img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212,175,55,.35);
}

.mk-review__user strong { display: block; font-size: 12px; color: var(--navy); }
.mk-review__user span { font-size: 11px; color: var(--muted); }

/* CTA — compact + clearer photo */
.mk-cta {
  padding: 20px 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8,22,45,.55), rgba(11,31,58,.38)),
    url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1600&q=85") center/cover;
}

.mk-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.mk-cta h2 {
  margin: 0 0 4px;
  font-family: var(--font);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #fff;
}

.mk-cta p { margin: 0; color: rgba(255,255,255,.92); font-size: 13px; }

.mk-cta .mk-btn {
  padding: 9px 14px;
  font-size: 13px;
  min-height: 40px;
}

/* Responsive */
@media (max-width: 1100px) {
  .mk-hero__grid { grid-template-columns: 1fr; }
  .mk-hero__collage { display: none; }
  .mk-dest-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mk-types { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .mk-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mk-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mk-reviews,
  .mk-reviews--4 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .mk-usp__row,
  .mk-why-navy__row { grid-template-columns: repeat(3, 1fr); }
  .mk-page .mk-usp__row,
  .mk-usp__row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    flex-wrap: unset !important;
    gap: 14px 10px !important;
  }
  .mk-usp__row > div { flex: unset !important; }
}

@media (max-width: 640px) {
  .mk-section { padding: 22px 0 !important; }
  .mk-head { margin-bottom: 12px !important; }
  .mk-title-center { margin-bottom: 14px !important; }
  .mk-dest-row,
  .mk-types,
  .mk-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .mk-grid,
  .mk-reviews { grid-template-columns: 1fr; gap: 12px; }
  .mk-usp__row,
  .mk-why-navy__row { grid-template-columns: repeat(2, 1fr); }
  .mk-page .mk-usp__row,
  .mk-usp__row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 10px !important;
    padding: 14px 12px !important;
  }
  .mk-usp { margin-top: -20px; padding-bottom: 0; }
  .mk-cta { padding: 28px 0 !important; }
  .mk-cta__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .mk-hero { min-height: 58svh; padding: 96px 0 48px; }
  .mk-dest { height: 200px; }
}
