/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #1a6bff;
  --blue-dark: #0f52d9;
  --blue-soft: #e8f0ff;
  --orange: #ff6b2b;
  --orange-soft: #fff1eb;
  --text: #0f172a;
  --text-mid: #475569;
  --text-soft: #94a3b8;
  --border: #e2e8f0;
  --bg: #f7f7f7;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --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(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.11);
}

a {
  text-decoration: none !important;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ─── WRAPPER ─── */
.site-wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--text);
  padding: 9px 0;
}
.topbar-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-left span {
  font-size: 12.5px;
  color: #94a3b8;
}
.topbar-left a {
  font-size: 12.5px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.topbar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}
.topbar-right a {
  font-size: 12px;
  color: #94a3b8;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.topbar-right a:hover {
  color: #fff;
}

/* ─── HEADER / NAV ─── */
.main-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  margin-top: -100px !important;
}
.header-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon img {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
}
.logo-name {
  font-family: "Fraunces", serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.logo-name span {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.main-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition:
    background 0.15s,
    color 0.15s;
}
.main-nav a:hover {
  background: var(--bg);
  color: var(--text);
}
.main-nav a.active {
  color: var(--blue);
  background: var(--blue-soft);
}

.header-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.btn-outline {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}
.btn-primary {
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 2px 8px rgba(26, 107, 255, 0.3);
}
.btn-primary:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── HERO ─── */
.hero-section {
  background: var(--bg);
  padding: 80px 0;
  overflow: hidden;
}
.hero-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero-badge::before {
  content: "✈";
  font-size: 13px;
}
.hero-title {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--blue);
}
.hero-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--blue);
  color: #fff;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(26, 107, 255, 0.35);
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-hero-primary:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-hero-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}
.trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}
.trust-sep {
  color: var(--border);
  font-size: 18px;
  font-weight: 300;
}

.hero-img-wrap {
  position: relative;
}
.hero-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: var(--shadow-lg);
}
.hero-float-card {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}
.hfc-icon {
  width: 42px;
  height: 42px;
  background: var(--orange-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.hfc-label {
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hfc-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-top: 1px;
}

.hero-float-card2 {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--blue);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 8px 28px rgba(26, 107, 255, 0.4);
  color: #fff;
  min-width: 160px;
  text-align: center;
}
.hfc2-num {
  font-family: "Fraunces", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
.hfc2-label {
  font-size: 11.5px;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 3px;
}

/* ─── SECTION COMMON ─── */
.section {
  padding: 80px 0;
}
.section-bg {
  background: var(--bg);
}
.section-header {
  margin-bottom: 48px;
}
.section-header.center {
  text-align: center;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-title em {
  font-style: italic;
  color: var(--blue);
}
.section-sub {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 480px;
}
.section-header.center .section-sub {
  margin: 0 auto;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
}
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 9px 20px;
  border: 1.5px solid var(--blue);
  border-radius: 50px;
  transition:
    background 0.2s,
    color 0.2s;
}
.view-all-link:hover {
  background: var(--blue);
  color: #fff;
}

/* ─── PACKAGE CARDS ─── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pkg-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.pkg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.pkg-card:hover .pkg-img-wrap img {
  transform: scale(1.06);
}

.pkg-type {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}
.pkg-price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}

.pkg-body {
  padding: 18px 20px 20px;
}
.pkg-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.pkg-location svg {
  width: 13px;
  height: 13px;
  stroke: var(--text-soft);
  fill: none;
  flex-shrink: 0;
}
.pkg-name {
  font-family: "Fraunces", serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 10px;
}
.pkg-features {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pkg-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.pkg-price-label {
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 500;
}
.pkg-price-val {
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.btn-details {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-details:hover {
  background: var(--blue);
  color: #fff;
}
.btn-details svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  transition: transform 0.2s;
}
.btn-details:hover svg {
  transform: translateX(3px);
}

.pkg-view-more {
  text-align: center;
  margin-top: 40px;
}
.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 36px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.btn-view-more:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

/* ─── WHY US ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
}
.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── DESTINATIONS ─── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.dest-card:hover img {
  transform: scale(1.08);
}
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.75) 0%,
    rgba(15, 23, 42, 0.1) 55%,
    transparent 100%
  );
}
.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 20px 18px;
}
.dest-country {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.dest-city {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.dest-tag {
  display: inline-block;
  margin-top: 8px;
  background: rgba(26, 107, 255, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ─── STATS ─── */
.stats-section {
  background: var(--blue);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.stat-item {
  background: var(--blue);
  padding: 40px 24px;
  text-align: center;
}
.stat-num {
  font-family: "Fraunces", serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── FOOTER ─── */
.main-footer {
  background: var(--text);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 270px;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13.5px;
  color: #64748b;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item span {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
}
.footer-contact-item a {
  color: #64748b;
  text-decoration: none;
}
.footer-contact-item a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: #475569;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.footer-socials a:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(26, 107, 255, 0.1);
}

/* ─── MOBILE NAV ─── */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 24px 16px;
}
.mobile-menu a {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.mobile-menu a:hover {
  background: var(--bg);
  color: var(--text);
}
.mobile-menu .mobile-cta {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.mobile-menu .mobile-cta a {
  flex: 1;
  text-align: center;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-card {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-img-wrap {
    display: none;
  }
  .hero-section {
    padding: 48px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-nav,
  .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu.open {
    display: flex;
  }
}
@media (max-width: 640px) {
  .main-nav,
  .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu.open {
    display: flex;
  }
  .pkg-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .dest-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .topbar-right {
    display: none;
  }
  .hero-float-card,
  .hero-float-card2 {
    display: none;
  }
}
@media (max-width: 380px) {
  .dest-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── TESTIMONIALS ─── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.testi-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testi-stars span {
  color: #f59e0b;
  font-size: 15px;
}
.testi-quote-icon {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 48px;
  color: var(--blue-soft);
  font-family: Georgia, serif;
  line-height: 1;
  user-select: none;
}
.testi-text {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--blue-soft);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  overflow: hidden;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.testi-trip {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 2px;
}
.testi-package-tag {
  display: inline-block;
  margin-top: 6px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 50px;
}

/* ─── INSTAGRAM ─── */
.insta-section {
  background: var(--bg);
}
.insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 14px;
}
.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.insta-handle:hover {
  border-color: #e1306c;
  color: #e1306c;
  background: #fff0f5;
}
.insta-handle svg {
  width: 18px;
  height: 18px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.insta-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.insta-item:hover img {
  transform: scale(1.1);
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(225, 48, 108, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.insta-item:hover .insta-overlay {
  opacity: 1;
}
.insta-overlay svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
}
.insta-follow-strip {
  text-align: center;
  margin-top: 28px;
}
.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.15s;
  box-shadow: 0 4px 14px rgba(221, 42, 123, 0.35);
}
.btn-insta:hover {
  opacity: 0.9;
  color: #fff;
  transform: translateY(-2px);
}
.btn-insta svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 10px;
  object-fit: contain;
}
.lb-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}
.lb-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}
.lb-prev {
  left: 20px;
}
.lb-next {
  right: 20px;
}

/* ─── CONTACT FORM ─── */
.contact-section {
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info-title {
  font-family: "Fraunces", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-info-title em {
  font-style: italic;
  color: var(--blue);
}
.contact-info-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cd-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-soft);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
}
.cd-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 3px;
}
.cd-value {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}
.cd-value a {
  color: var(--text);
  text-decoration: none;
}
.cd-value a:hover {
  color: var(--blue);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 107, 255, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.btn-submit {
  width: 100%;
  padding: 13px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 4px 14px rgba(26, 107, 255, 0.3);
}
.btn-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
  color: #16a34a;
  font-weight: 600;
  font-size: 15px;
}

/* ─── CTA BAND ─── */
.cta-section {
  background: var(--blue);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cta-title {
  font-family: "Fraunces", serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-title em {
  font-style: italic;
  opacity: 0.85;
}
.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #fff;
  color: var(--blue);
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.15s,
    box-shadow 0.2s;
}
.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.2);
  color: var(--blue);
}
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-cta-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ─── NEW SECTION RESPONSIVE ─── */
@media (max-width: 1100px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insta-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .insta-grid .insta-item:nth-child(n + 5) {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.tall {
    grid-row: span 1;
  }
  .gallery-item.wide {
    grid-column: span 1;
  }
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .insta-grid .insta-item:nth-child(n + 4) {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* top image carousel  */
/* ══════════════════════
       SLIDER
    ══════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  /* min-height: 560px; */
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.slide.active {
  opacity: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 7s ease;
}
.slide.active .slide-bg {
  transform: scale(1);
}

/* subtle bottom gradient so thumbs sit cleanly */
.slide-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.18) 0%,
    transparent 35%,
    transparent 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

/* ══════════════════════
       PROGRESS BAR
    ══════════════════════ */
.slide-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--blue);
  z-index: 30;
  transition: none;
}
.slide-progress.run {
  width: 100%;
  transition: width 5500ms linear;
}

/* ══════════════════════
       THUMBNAIL STRIP
    ══════════════════════ */
.thumb-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 0 40px 30px;
}
.thumb-strip-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.strip-controls {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
  padding-right: 6px;
}
.strip-counter {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.strip-counter strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.strip-arrows {
  display: flex;
  gap: 8px;
}
.arr-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.arr-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.arr-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.thumb-list {
  display: flex;
  gap: 10px;
  flex: 1;
  overflow: hidden;
}

.thumb {
  position: relative;
  flex: 1;
  height: 105px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    border-color 0.35s,
    flex 0.45s ease,
    transform 0.35s ease;
  flex-shrink: 0;
}
.thumb.active {
  border-color: var(--blue);
  flex: 1.9;
  transform: translateY(-8px);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.thumb:hover img {
  transform: scale(1.08);
}
.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 55%);
}
.thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 10px;
  z-index: 1;
}
.thumb-city {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.thumb-ctry {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1px;
}

.thumb-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 2px rgba(26, 107, 255, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.thumb.active .thumb-dot {
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bnav {
    padding: 16px 24px;
  }
  .thumb-strip {
    padding: 0 24px 22px;
  }
}
@media (max-width: 768px) {
  .bnav-links,
  .bnav-cta {
    display: none;
  }
  .bnav-ham {
    display: flex;
  }
  .thumb {
    height: 78px;
    border-radius: 9px;
  }
  .thumb.active {
    transform: translateY(-5px);
  }
  .thumb-ctry {
    display: none;
  }
  .strip-controls {
    display: none;
  }
  .thumb-strip {
    padding: 0 16px 18px;
  }
  .thumb-list {
    gap: 7px;
  }
}
@media (max-width: 480px) {
  .thumb {
    height: 64px;
    border-radius: 8px;
  }
  .thumb-city {
    font-size: 10.5px;
  }
  .thumb-list {
    gap: 5px;
  }
}
