/* ============================================================
   SKYMATE TRAVEL — DESIGN SYSTEM v2
   Inspired by Untitled UI: structured, refined, SaaS-quality
   Palette: Slate-950 | Crimson-600 | Slate-50 | White
   Typography: DM Sans (display) + Plus Jakarta Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Dancing+Script:wght@700&display=swap');

:root {
  /* Brand */
  --brand:        #D93025;
  --brand-light:  #F04438;
  --brand-dark:   #B42318;
  --brand-bg:     #FEF3F2;
  --brand-border: #FECDCA;

  /* Neutrals — Slate scale */
  --slate-950:  #0C111D;
  --slate-900:  #101828;
  --slate-800:  #1D2939;
  --slate-700:  #344054;
  --slate-600:  #475467;
  --slate-500:  #667085;
  --slate-400:  #98A2B3;
  --slate-300:  #D0D5DD;
  --slate-200:  #E4E7EC;
  --slate-100:  #F2F4F7;
  --slate-50:   #F8FAFC;
  --white:      #FFFFFF;

  /* Accent — Emerald for success/nature */
  --emerald:    #079455;
  --emerald-bg: #ECFDF3;
  --amber:      #B54708;
  --amber-bg:   #FFFAEB;

  /* Layout */
  --radius-xl:  16px;
  --radius:     12px;
  --radius-sm:  8px;
  --radius-xs:  6px;
  --radius-full: 9999px;

  /* Shadows — Untitled UI style */
  --shadow-xs:  0 1px 2px rgba(16,24,40,0.05);
  --shadow-sm:  0 1px 3px rgba(16,24,40,0.10), 0 1px 2px rgba(16,24,40,0.06);
  --shadow:     0 4px 8px -2px rgba(16,24,40,0.10), 0 2px 4px -2px rgba(16,24,40,0.06);
  --shadow-md:  0 12px 24px -4px rgba(16,24,40,0.12), 0 4px 8px -2px rgba(16,24,40,0.06);
  --shadow-lg:  0 24px 48px -12px rgba(16,24,40,0.18);
  --shadow-xl:  0 32px 64px -12px rgba(16,24,40,0.20);

  /* Typography */
  --font-head: 'DM Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-script: 'Dancing Script', cursive;

  /* Nav */
  --nav-h: 68px;

  /* Transitions */
  --transition: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Legacy aliases — keeps existing HTML working */
  --navy:      var(--slate-900);
  --navy-2:    var(--slate-800);
  --navy-3:    var(--slate-700);
  --coral:     var(--brand);
  --coral-d:   var(--brand-dark);
  --teal:      var(--emerald);
  --teal-d:    #057A47;
  --gold:      #F79009;
  --off-white: var(--slate-50);
  --gray-1:    var(--slate-100);
  --gray-2:    var(--slate-200);
  --gray-3:    var(--slate-400);
  --gray-4:    var(--slate-500);
  --gray-5:    var(--slate-700);
  --text:      var(--slate-900);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--slate-100); }
::-webkit-scrollbar-thumb { background: var(--slate-300); border-radius: 99px; }

/* ============================================================
   NAVIGATION — Clean white bar, Untitled UI style
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-200);
  display: flex; align-items: center;
  padding: 0 32px;
  gap: 0;
  box-shadow: var(--shadow-xs);
}

.nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0;
  margin-right: 40px;
}
.nav-logo-mark { display: none; }
.nav-logo-text {
  font-family: var(--font-script);
  font-weight: 700; font-size: 30px;
  color: var(--brand); letter-spacing: 0;
  line-height: 1;
}
.nav-logo-text span { color: var(--brand); }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  color: var(--slate-600);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--slate-900); background: var(--slate-100); }
.nav-links a.active { color: var(--brand); background: var(--brand-bg); font-weight: 600; }

.nav-actions {
  display: flex; align-items: center; gap: 8px;
  margin-left: auto;
}
.nav-actions .btn-ghost {
  padding: 8px 16px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  color: var(--slate-700); font-size: 14px; font-weight: 600;
  background: var(--white);
  transition: var(--transition);
}
.nav-actions .btn-ghost:hover { border-color: var(--slate-400); background: var(--slate-50); color: var(--slate-900); }
.nav-actions .btn-coral {
  padding: 8px 18px;
  background: var(--brand);
  border-radius: var(--radius-sm);
  color: #fff; font-size: 14px; font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.nav-actions .btn-coral:hover { background: var(--brand-light); box-shadow: var(--shadow-sm); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.hamburger span {
  width: 22px; height: 1.5px;
  background: var(--slate-700); border-radius: 2px;
  transition: var(--transition);
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 16px;
  flex-direction: column; gap: 4px;
  overflow-y: auto;
  border-top: 1px solid var(--slate-200);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--slate-700);
  font-size: 15px; font-weight: 500;
}
.mobile-nav a:hover { background: var(--slate-100); color: var(--slate-900); }

/* ============================================================
   BUTTONS — Untitled UI style
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600; font-size: 14px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
  border: 1px solid transparent;
  line-height: 1.5;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-primary:hover { background: var(--brand-light); border-color: var(--brand-light); box-shadow: var(--shadow-sm); }

.btn-secondary {
  background: var(--slate-900);
  color: #fff;
  border-color: var(--slate-900);
}
.btn-secondary:hover { background: var(--slate-800); }

.btn-outline {
  background: var(--white);
  border: 1px solid var(--slate-300);
  color: var(--slate-700);
  box-shadow: var(--shadow-xs);
}
.btn-outline:hover { background: var(--slate-50); border-color: var(--slate-400); color: var(--slate-900); }

.btn-white {
  background: var(--white);
  color: var(--slate-900);
  border-color: var(--white);
}
.btn-white:hover { background: var(--slate-50); }

.btn-navy {
  background: var(--slate-900);
  color: #fff;
  border-color: var(--slate-900);
}
.btn-navy:hover { background: var(--slate-800); }

.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 12px 22px; font-size: 15px; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container    { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 960px;  margin: 0 auto; padding: 0 24px; }

.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 112px 0; }

/* Section label — pill badge above headings */
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-full);
  color: var(--brand);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.6px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700; line-height: 1.2;
  color: var(--slate-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-title span { color: var(--brand); }

.section-sub {
  font-size: 16px; color: var(--slate-500);
  max-width: 560px; line-height: 1.7;
  font-weight: 400;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }  .gap-12 { gap: 12px; } .gap-16 { gap: 16px; }
.gap-24 { gap: 24px; } .gap-32 { gap: 32px; }
.mt-8  { margin-top: 8px; }  .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }  .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ============================================================
   CARDS — Untitled UI style: tight radius, clean border
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--slate-300); }

.card-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
}

.card-body { padding: 16px 20px 20px; }

/* Badges */
.card-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
}
.badge-coral { background: var(--brand-bg); color: var(--brand); border-color: var(--brand-border); }
.badge-teal  { background: var(--emerald-bg); color: var(--emerald); border-color: #ABEFC6; }
.badge-navy  { background: var(--slate-100); color: var(--slate-700); border-color: var(--slate-200); }
.badge-gold  { background: var(--amber-bg); color: var(--amber); border-color: #FEDF89; }

.card-title {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700;
  color: var(--slate-900);
  margin: 10px 0 6px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.card-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--slate-500);
  margin-bottom: 10px; flex-wrap: wrap;
}
.card-meta span { display: flex; align-items: center; gap: 4px; }

.card-price {
  display: flex; align-items: baseline; gap: 5px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--slate-100);
}
.card-price .from   { font-size: 12px; color: var(--slate-500); }
.card-price .amount { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--brand); letter-spacing: -0.02em; }
.card-price .was    { font-size: 13px; color: var(--slate-400); text-decoration: line-through; }
.card-price .unit   { font-size: 12px; color: var(--slate-500); }

/* No-image placeholder */
.card-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--slate-800) 0%, var(--slate-700) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.card-img-placeholder span {
  color: #fff; font-family: var(--font-head);
  font-size: 17px; font-weight: 700;
  text-align: center; line-height: 1.35;
  opacity: 0.85;
}

/* Tour card */
.tour-card { position: relative; }
.tour-card-img-wrap { position: relative; overflow: hidden; }
.tour-card-img-wrap img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.tour-card:hover .tour-card-img-wrap img { transform: scale(1.04); }
.tour-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,17,29,0.65) 0%, transparent 55%);
  opacity: 0; transition: var(--transition);
}
.tour-card:hover .tour-card-overlay { opacity: 1; }
.tour-card-quick {
  position: absolute; bottom: 14px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
  opacity: 0; transition: var(--transition);
}
.tour-card:hover .tour-card-quick { opacity: 1; }

.wishlist-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-400); font-size: 15px;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.wishlist-btn:hover, .wishlist-btn.active { color: var(--brand); }

.tour-badges {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  display: flex; flex-direction: column; gap: 5px;
}

/* ============================================================
   FORMS — Untitled UI style
   ============================================================ */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 14px; font-weight: 500; color: var(--slate-700);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  font-size: 14px; color: var(--slate-900);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  box-shadow: var(--shadow-xs);
  line-height: 1.5;
}
.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(217,48,37,0.10), var(--shadow-xs);
}
.form-control::placeholder { color: var(--slate-400); }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2398A2B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-200);
  overflow: hidden;
}
.search-tabs {
  display: flex;
  border-bottom: 1px solid var(--slate-200);
  padding: 0 4px;
}
.search-tab {
  padding: 14px 18px;
  font-size: 14px; font-weight: 500;
  color: var(--slate-500);
  border-bottom: 2px solid transparent;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
  margin-bottom: -1px;
}
.search-tab:hover { color: var(--slate-800); }
.search-tab.active { color: var(--brand); border-bottom-color: var(--brand); font-weight: 600; }

.search-body { padding: 16px 20px 20px; }
.search-fields {
  display: grid; gap: 0;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.search-field {
  padding: 12px 14px;
  border-right: 1px solid var(--slate-200);
  cursor: pointer; transition: var(--transition);
}
.search-field:last-of-type { border-right: none; }
.search-field:hover { background: var(--slate-50); }
.search-field label {
  display: block;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--slate-700); margin-bottom: 3px;
}
.search-field input, .search-field select {
  border: none; outline: none; width: 100%;
  font-size: 14px; font-weight: 500; color: var(--slate-900);
  background: transparent; padding: 0;
}
.search-field input::placeholder { color: var(--slate-400); font-weight: 400; }

/* ============================================================
   HERO — image-based, refined overlay
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg          { position: absolute; inset: 0; z-index: 0; }
.hero-bg canvas   { position: absolute; inset: 0; }
.hero-bg-img      { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay     {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(12,17,29,0.88) 0%,
    rgba(12,17,29,0.60) 50%,
    rgba(12,17,29,0.30) 100%
  );
}
.hero-content     { position: relative; z-index: 2; padding: 64px 0 80px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.90);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700; line-height: 1.1;
  color: #fff; margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero-title span { color: var(--brand-light); }
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.75);
  max-width: 520px; line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--slate-900);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-item    { padding: 6px; }
.stat-number  {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 700;
  color: var(--white); line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.stat-label   { font-size: 13px; color: rgba(255,255,255,0.50); font-weight: 400; }

/* ============================================================
   TRUST / ICON STRIPS
   ============================================================ */
.trust-strip {
  background: var(--slate-50);
  padding: 28px 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--slate-600);
}
.trust-icon {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  box-shadow: var(--shadow-xs);
}

/* ============================================================
   DESTINATION CARDS
   ============================================================ */
.dest-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  border: 1px solid var(--slate-200);
}
.dest-card img { width: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-card:hover img { transform: scale(1.04); }
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,17,29,0.75) 0%, transparent 55%);
}
.dest-card-info   { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 20px; }
.dest-card-title  { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 3px; letter-spacing: -0.01em; }
.dest-card-count  { font-size: 13px; color: rgba(255,255,255,0.70); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; margin-bottom: 12px; }
.testimonial-text {
  font-size: 14px; color: var(--slate-600);
  line-height: 1.75; margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author  { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 14px; color: #fff;
  flex-shrink: 0;
}
.author-name   { font-weight: 600; font-size: 13px; color: var(--slate-900); }
.author-detail { font-size: 12px; color: var(--slate-500); }

/* ============================================================
   PAGE HERO (inner pages) — Untitled UI page-header style
   ============================================================ */
/* ── Page hero: used by tours, about, contact, checkout etc. ── */
.page-hero {
  background: var(--slate-900);
  padding: calc(var(--nav-h) + 40px) 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700; color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.78); max-width: 540px; font-weight: 400; line-height: 1.65; }

/* Breadcrumb overrides for dark bg */
.page-hero .breadcrumb       { color: rgba(255,255,255,0.68); }
.page-hero .breadcrumb a     { color: rgba(255,255,255,0.86); }
.page-hero .breadcrumb a:hover { color: var(--brand-light); }
.page-hero .breadcrumb span  { color: rgba(255,255,255,0.58); }
.page-hero .hero-actions .btn-primary { background: var(--brand); border-color: var(--brand); }
.page-hero .hero-actions .btn-outline { background: transparent; border-color: rgba(255,255,255,0.35); color: #fff; }
.page-hero .hero-actions .btn-outline:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.60); }

/* Breadcrumb — default (light contexts) */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--slate-500);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--slate-600); font-weight: 500; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { color: var(--slate-400); font-size: 11px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* ============================================================
   FILTER SIDEBAR
   ============================================================ */
.filter-panel {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  height: fit-content;
  position: sticky; top: calc(var(--nav-h) + 16px);
}
.filter-title {
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700;
  color: var(--slate-900); margin-bottom: 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.filter-clear { font-size: 13px; color: var(--brand); font-weight: 500; cursor: pointer; }
.filter-clear:hover { text-decoration: underline; }

.filter-section       { margin-bottom: 20px; }
.filter-section-title {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--slate-500); margin-bottom: 10px;
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-chip {
  padding: 5px 12px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-full);
  font-size: 13px; font-weight: 500;
  color: var(--slate-600); cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.filter-chip:hover  { border-color: var(--brand); color: var(--brand); background: var(--brand-bg); }
.filter-chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }

.filter-checkbox {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 0; cursor: pointer;
  font-size: 14px; color: var(--slate-600);
}
.filter-checkbox input { width: 16px; height: 16px; accent-color: var(--brand); cursor: pointer; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(12,17,29,0.65);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%; max-width: 800px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-200);
  animation: modalIn 0.22s cubic-bezier(.4,0,.2,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.97) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close { position: sticky; top: 0; z-index: 10; display: flex; justify-content: flex-end; padding: 14px 18px 0; }
.modal-close-btn {
  width: 32px; height: 32px;
  background: var(--slate-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--slate-500);
  transition: var(--transition);
}
.modal-close-btn:hover { background: var(--slate-200); color: var(--slate-900); }

/* ============================================================
   FOOTER — Dark, clean
   ============================================================ */
.footer {
  background: var(--slate-900);
  padding: 56px 0 0;
  color: rgba(255,255,255,0.72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand      { }
.footer-logo       { display: flex; align-items: center; margin-bottom: 14px; }
.footer-logo-mark  { display: none; }
.footer-logo-text  {
  font-family: var(--font-script);
  font-weight: 700; font-size: 28px; color: #fff;
  line-height: 1;
}
.footer-logo-text span { color: #fff; }
.footer-tagline    { font-size: 14px; line-height: 1.65; margin-bottom: 18px; max-width: 260px; color: rgba(255,255,255,0.70); }
.footer-contact p  { font-size: 14px; margin-bottom: 5px; }
.footer-contact a  { color: rgba(255,255,255,0.78); transition: var(--transition); }
.footer-contact a:hover { color: #fff; }
.footer-contact strong { color: rgba(255,255,255,0.90); }

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 600; font-size: 13px;
  color: rgba(255,255,255,0.90);
  text-transform: uppercase; letter-spacing: 0.6px;
  margin-bottom: 14px;
}
.footer-col ul li           { margin-bottom: 8px; }
.footer-col ul li a         { font-size: 14px; color: rgba(255,255,255,0.72); transition: var(--transition); }
.footer-col ul li a:hover   { color: rgba(255,255,255,0.90); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  font-size: 13px; color: rgba(255,255,255,0.62);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a         { color: rgba(255,255,255,0.62); margin-left: 16px; transition: var(--transition); }
.footer-bottom a:hover   { color: rgba(255,255,255,0.80); }

.social-links  { display: flex; gap: 8px; margin-top: 16px; }
.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,0.84);
  transition: var(--transition);
}
.social-link:hover { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.20); }

/* ============================================================
   ALERT / TOAST
   ============================================================ */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--slate-900);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 10px;
  animation: toastIn 0.25s ease;
  max-width: 340px;
}
.toast.success { border-left: 3px solid var(--emerald); }
.toast.error   { border-left: 3px solid var(--brand); }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 48px;
}
.page-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  color: var(--slate-600);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  border: 1px solid var(--slate-200);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}
.page-btn:hover { border-color: var(--slate-300); color: var(--slate-900); background: var(--slate-50); }
.page-btn.active { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }

/* ============================================================
   STEP INDICATOR (checkout) — Untitled UI progress style
   ============================================================ */
.steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 36px;
}
.step-item   { display: flex; align-items: center; gap: 0; }
.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--slate-100);
  border: 1.5px solid var(--slate-200);
  color: var(--slate-400);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  transition: var(--transition);
  position: relative; z-index: 1;
}
.step-item.active .step-circle { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: 0 0 0 4px var(--brand-bg); }
.step-item.done .step-circle   { background: var(--emerald); border-color: var(--emerald); color: #fff; }
.step-label {
  font-size: 12px; font-weight: 500;
  color: var(--slate-400);
  margin-top: 5px; text-align: center;
  white-space: nowrap;
}
.step-item.active .step-label,
.step-item.done .step-label  { color: var(--slate-700); font-weight: 600; }
.step-inner { display: flex; flex-direction: column; align-items: center; }
.step-line {
  width: 80px; height: 1.5px;
  background: var(--slate-200);
  margin: 0 -1px;
  transition: var(--transition);
}
.step-line.done { background: var(--emerald); }

/* ============================================================
   NOTICE / BADGE STRIP
   ============================================================ */
.notice-bar {
  background: var(--brand);
  padding: 9px 0;
  text-align: center;
  font-size: 13px; font-weight: 500; color: #fff;
}
.notice-bar a { color: #fff; text-decoration: underline; }

/* ============================================================
   PACKAGES — pkg-card
   ============================================================ */
.pkg-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--slate-200); box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition); }
.pkg-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pkg-card.featured { border-color: var(--brand-border); box-shadow: 0 0 0 1px var(--brand-border), var(--shadow-md); }
.pkg-img-wrap { position: relative; overflow: hidden; }
.pkg-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; transition: transform 0.5s ease; }
.pkg-card:hover .pkg-img { transform: scale(1.03); }
.pkg-label {
  position: absolute; top: 10px; left: 10px;
  padding: 3px 10px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 600;
  box-shadow: var(--shadow-xs);
}
.pkg-body { padding: 18px 20px 20px; }
.pkg-name { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--slate-900); margin-bottom: 6px; line-height: 1.3; letter-spacing: -0.01em; }
.pkg-price { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--brand); letter-spacing: -0.02em; }
.pkg-was   { font-size: 13px; color: var(--slate-400); text-decoration: line-through; margin-left: 6px; }
.pkg-includes { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }
.pkg-include  { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--slate-600); font-weight: 500; }

/* ============================================================
   FEATURE CARDS (icon + title + text)
   ============================================================ */
.feature-card {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-sm); border-color: var(--slate-300); }
.feature-icon  { font-size: 28px; margin-bottom: 14px; }
.feature-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; letter-spacing: -0.01em; }
.feature-card p  { font-size: 14px; color: var(--slate-500); line-height: 1.65; }

/* ============================================================
   PARTNERS / LOGO STRIP
   ============================================================ */
.partners-logos { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.partner-pill   {
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-full);
  font-size: 13px; font-weight: 500; color: var(--slate-600);
  box-shadow: var(--shadow-xs);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-actions { display: none; }
  .hamburger  { display: flex; margin-left: auto; }
  .nav        { padding: 0 16px; }
  .notice-bar { display: none; }
  .container  { padding: 0 16px; }
  .container-sm { padding: 0 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section    { padding: 56px 0; }
  .section-sm { padding: 32px 0; }
  .section-lg { padding: 72px 0; }
  .hero-title { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .trust-items { gap: 16px; }
  .trust-item  { font-size: 13px; }
  .search-fields { grid-template-columns: 1fr; }
  .search-field  { border-right: none; border-bottom: 1px solid var(--slate-200); }
  .search-field:last-of-type { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .step-line { width: 32px; }
  .step-label { font-size: 11px; }
  /* Search tabs: allow horizontal scroll on small screens */
  .search-tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  /* Breadcrumb: prevent overflow */
  .breadcrumb { flex-wrap: wrap; }
  /* Notice bar: smaller text on mobile */
  .notice-bar { font-size: 12px; padding: 8px 12px; }
  /* Pagination: reduce gap */
  .pagination { gap: 4px; }
  .page-btn { width: 34px; height: 34px; font-size: 13px; }
  /* Toast: full width on mobile */
  .toast { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  /* Filter panel: not sticky on mobile */
  .filter-panel { position: static; }
}

@media (max-width: 480px) {
  .hero { min-height: 95vh; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 22px; }
  /* Steps: compress on very small screens */
  .step-line { width: 20px; }
  .step-circle { width: 30px; height: 30px; font-size: 12px; }
  /* Section title: prevent orphan words */
  .section-title { word-break: break-word; }
  /* Search card body: tighter padding */
  .search-body { padding: 12px 14px 16px; }
  /* Card body: tighter on small phones */
  .card-body { padding: 14px 16px 18px; }
}

/* ============================================================
   PACKAGE CARD — View Package / Enquire buttons
   ============================================================ */
.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-200);
}
.btn-view-package {
  flex: 1;
  text-align: center;
  min-width: 120px;
  font-size: 13px;
  padding: 8px 14px;
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-sm);
  color: var(--slate-700);
  background: var(--white);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-view-package:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-bg);
}
.btn-enquire-package {
  flex: 1;
  text-align: center;
  min-width: 100px;
  font-size: 13px;
  padding: 8px 14px;
  white-space: nowrap;
}
/* pkg-img-wrap cursor when wired as a link */
.pkg-img-wrap[role="link"] { cursor: pointer; }

/* Fix low-contrast paragraph text in package cards */
.pkg-body p { color: var(--slate-600); }
.pkg-compare-label { color: var(--slate-500); font-size: 13px; }

/* Page hero subtitle contrast */
.page-hero-sub { color: rgba(255,255,255,0.82); }
.breadcrumb-item { color: rgba(255,255,255,0.75); }

/* Footer bottom improved contrast */
.footer-bottom { color: rgba(255,255,255,0.68); }
.footer-bottom a { color: rgba(255,255,255,0.68); }
.footer-bottom a:hover { color: #fff; }
