/* =====================================================
   SRK Holidays & Travels — main.css
   Design system: tokens, base, reusable components
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Source+Sans+3:ital,wght@0,400;0,600;1,400&display=swap');

/* =====================================================
   DESIGN TOKENS
   ===================================================== */
:root {
  /* Brand */
  --clr-primary:        #F97316;
  --clr-primary-dark:   #EA580C;
  --clr-primary-light:  #FFF7ED;
  --clr-primary-glow:   rgba(249,115,22,0.30);

  /* Teal (header mobile, footer accent) */
  --clr-teal:           #042f2e;
  --clr-teal-mid:       #064e3b;
  --clr-teal-glass:     rgba(4,47,46,0.96);

  /* Neutrals */
  --clr-dark:           #1a1f2e;
  --clr-body:           #374151;
  --clr-muted:          #6B7280;
  --clr-border:         rgba(0,0,0,0.08);
  --clr-border-light:   rgba(255,255,255,0.12);
  --clr-bg:             #F9FAFB;
  --clr-bg-warm:        #FFFAF6;
  --clr-white:          #ffffff;

  /* Typography */
  --font-main: 'Outfit', 'Source Sans 3', system-ui, sans-serif;

  /* Spacing (8px base) */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 2.5rem;
  --sp-6: 3rem;
  --sp-8: 4rem;
  --sp-12: 6rem;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 100px;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 28px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --shadow-orange: 0 6px 24px rgba(249,115,22,0.35);

  /* Transitions */
  --t-fast: 180ms ease-out;
  --t-mid:  320ms ease-out;
  --t-slow: 520ms cubic-bezier(0.22,1,0.36,1);
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--clr-body);
  background: var(--clr-bg-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video {
  display: block;
  max-width: 100%;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-main); cursor: pointer; border: none; background: none; }

/* =====================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s ease-out, transform 0.65s ease-out; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px);  transition: opacity 0.65s ease-out, transform 0.65s ease-out; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* =====================================================
   LAYOUT UTILITIES
   ===================================================== */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

.section-py { padding-block: var(--sp-12); }
.section-py-sm { padding-block: var(--sp-8); }

/* =====================================================
   SECTION LABELS & HEADINGS
   ===================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: var(--clr-primary-light);
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-2);
}

.section-heading {
  font-size: clamp(1.65rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--clr-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: 52ch;
  line-height: 1.7;
  margin-top: 0.6rem;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-main);
  font-size: 0.93rem;
  font-weight: 600;
  min-height: 48px;
  padding: 0.7rem 1.5rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none;
}

.btn-primary {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
}
.btn-primary:hover {
  background: var(--clr-primary-dark);
  border-color: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.65);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--clr-dark);
  border-color: var(--clr-border);
}
.btn-outline-dark:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  font-size: 0.88rem;
}
.btn-wa:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 0.82rem;
  min-height: 40px;
  padding: 0.5rem 1.1rem;
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
  background: var(--clr-teal);
  padding-block: var(--sp-4);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  border-right: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}
.trust-item:last-child { border-right: none; }

.trust-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.trust-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
}

.trust-label {
  font-size: 0.8rem;
  opacity: 0.82;
  line-height: 1.35;
  margin-top: 0.15rem;
}

/* =====================================================
   PACKAGE CARDS (in main.css, full defs in package.css)
   ===================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

/* =====================================================
   CATEGORY CARDS
   ===================================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.cat-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: transform var(--t-mid);
  text-decoration: none;
  display: block;
}
.cat-card:hover { transform: translateY(-8px); }

.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease-out;
}
.cat-card:hover .cat-card-bg { transform: scale(1.07); }

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.15) 55%, transparent 100%);
}

.cat-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-3) var(--sp-3) var(--sp-4);
  color: #fff;
}

.cat-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--clr-primary);
  color: #fff;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-pill);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.cat-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.3rem;
}

.cat-card-sub {
  font-size: 0.83rem;
  opacity: 0.82;
  margin-bottom: var(--sp-2);
}

.cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-primary);
  transition: gap var(--t-fast);
}
.cat-card:hover .cat-card-link { gap: 0.6rem; }

/* =====================================================
   WHO WE ARE SECTION
   ===================================================== */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.masonry-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.masonry-tall { grid-row: span 2; }

.masonry-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
}
.masonry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}
.masonry-img:hover img { transform: scale(1.05); }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: var(--sp-3);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-dark);
  background: #fff;
  border: 1px solid var(--clr-border);
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-xs);
}

.badge-icon { font-size: 1rem; }

/* =====================================================
   WHY CHOOSE SECTION
   ===================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}

.why-card {
  padding: var(--sp-4);
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--clr-primary-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--sp-2);
}

.why-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 0.4rem;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.65;
}

/* =====================================================
   REVIEWS
   ===================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}

.review-card {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-stars { color: #FBBF24; font-size: 0.9rem; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.review-text { font-size: 0.9rem; line-height: 1.68; color: var(--clr-body); margin-bottom: var(--sp-2); }
.reviewer-name { font-weight: 700; font-size: 0.88rem; color: var(--clr-dark); }
.reviewer-detail { font-size: 0.78rem; color: var(--clr-muted); margin-top: 0.15rem; }

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-wrap { max-width: 780px; margin-inline: auto; }

.faq-item { border-bottom: 1px solid var(--clr-border); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) 0;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--clr-dark);
  user-select: none;
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform var(--t-fast), background var(--t-fast);
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--clr-primary);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), padding 0.3s ease;
  font-size: 0.93rem;
  color: var(--clr-muted);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: var(--sp-3); }

/* =====================================================
   Vehicle Rental SECTION
   ===================================================== */
.car-rental {
  background: linear-gradient(135deg, var(--clr-teal) 0%, #0f4c3a 60%, #1a5c48 100%);
  color: #fff;
}

.car-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.car-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.car-feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  opacity: 0.9;
}
.car-feat::before { content: '✓'; color: var(--clr-primary); font-weight: 700; flex-shrink: 0; }

.car-image-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}

.car-image-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: #0d0f14;
  color: rgba(255,255,255,0.7);
}

.footer-main {
  padding-block: var(--sp-12) var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: var(--sp-8);
}

.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--sp-2);
}
.footer-brand-name span { color: var(--clr-primary); }

.footer-tagline {
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: var(--sp-3);
  max-width: 34ch;
}

.footer-nap { font-size: 0.85rem; line-height: 1.9; }
.footer-nap a { transition: color var(--t-fast); }
.footer-nap a:hover { color: var(--clr-primary); }

.footer-col-head {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--sp-2);
}

.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { font-size: 0.87rem; transition: color var(--t-fast); }
.footer-links a:hover { color: var(--clr-primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: var(--sp-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  font-size: 0.8rem;
}

/* =====================================================
   WHATSAPP FLOAT
   ===================================================== */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 300;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.50);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  cursor: pointer;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.58);
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* =====================================================
   HERO SCROLL INDICATOR
   ===================================================== */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-dot {
  width: 3px;
  height: 6px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%  { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(8px); opacity: 0; }
  100%{ transform: translateY(0); opacity: 1; }
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* =====================================================
   PACKAGE PAGE — GALLERY
   ===================================================== */
.pkg-main {
  background: #f5f5f0;
}

.pkg-gallery-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
}

.pkg-gallery {
  border-radius: 16px;
  overflow: hidden;
  background: #e8e8e0;
}

.gallery-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar { display: none; }

.gallery-img {
  flex: 0 0 100%;
  scroll-snap-align: start;
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
}

.gallery-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s;
}

.gallery-dots span.active { background: #F97316; }

@media (max-width: 767px) {
  .gallery-img { height: 280px; }
  .pkg-gallery-wrap { padding: 1rem 1rem 0; }
}

/* =====================================================
   PACKAGE PAGE — INFO BANNER
   ===================================================== */
.info-banner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.info-banner-inner {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  color: #fff;
  margin-top: 1.5rem;
  box-shadow: 0 8px 32px rgba(249,115,22,0.25);
}

.info-banner-left { flex: 1; }

.info-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.info-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(255,255,255,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

.info-badge svg { width: 12px; height: 12px; }

.info-banner-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.info-price-box { text-align: right; }

.info-price-label { font-size: 0.7rem; opacity: 0.85; display: block; }

.info-price {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.info-price-sub { font-size: 0.7rem; opacity: 0.85; }

.info-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  background: #fff;
  color: #EA580C;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

@media (max-width: 767px) {
  .info-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  .info-badges { justify-content: center; }
  .info-banner-right { flex-direction: column; }
  .info-price-box { text-align: center; }
  .info-title { font-size: 1rem; }
}

/* =====================================================
   PACKAGE PAGE — LAYOUT (CONTENT + SIDEBAR)
   ===================================================== */
.pkg-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

.pkg-content { min-width: 0; }

@media (max-width: 1023px) {
  .pkg-layout { grid-template-columns: 1fr; }
}

/* =====================================================
   PACKAGE PAGE — SEO INTRO
   ===================================================== */
.pkg-intro { margin-bottom: 1rem; }

.pkg-intro .eyebrow {
  margin-bottom: 1rem;
}

.pkg-intro p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 1rem;
}

.intro-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

.intro-check {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1f2e;
}

@media (max-width: 639px) {
  .intro-checks { grid-template-columns: 1fr; }
}

/* =====================================================
   PACKAGE PAGE — HIGHLIGHTS
   ===================================================== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.hl-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.hl-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.hl-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 0.35rem;
}

.hl-card p {
  font-size: 0.85rem;
  color: #6B7280;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .highlights-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   PACKAGE PAGE — ITINERARY ACCORDION
   ===================================================== */
.iti-accordion {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.iti-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.iti-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }

.iti-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  text-align: left;
  color: #1a1f2e;
  transition: background 0.2s;
}

.iti-q:hover { background: #fafaf5; }

.iti-day {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.78rem;
  color: #F97316;
  background: #FFF7ED;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}

.iti-title {
  flex: 1;
  font-weight: 600;
  font-size: 0.9rem;
}

.iti-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF7ED;
  color: #F97316;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.iti-item.open .iti-toggle {
  transform: rotate(45deg);
  background: #F97316;
  color: #fff;
}

.iti-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1);
}

.iti-item.open .iti-a { max-height: 600px; }

.iti-a ul {
  padding: 0 1.25rem 1rem 2rem;
  list-style: none;
}

.iti-a li {
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.8;
  position: relative;
  padding-left: 1rem;
}

.iti-a li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F97316;
}

.iti-a li strong {
  font-weight: 600;
  color: #1a1f2e;
}

/* =====================================================
   PACKAGE PAGE — INCLUSIONS / EXCLUSIONS
   ===================================================== */
.inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.inc-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 1.5rem;
}

.inc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.inc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #16A34A;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.inc-icon-x { background: #FEE2E2; color: #DC2626; }

.inc-card ul { list-style: none; }

.inc-card li {
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.7;
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
}

.inc-include li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16A34A;
  font-weight: 700;
}

.inc-exclude li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #DC2626;
  font-weight: 700;
}

@media (max-width: 639px) {
  .inc-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   PACKAGE PAGE — STAY TABLE
   ===================================================== */
.stay-table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
}

.stay-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}

.stay-table th {
  background: #1a1f2e;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1rem;
  text-align: left;
}

.stay-table td {
  font-size: 0.85rem;
  color: #374151;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.stay-table tr:last-child td { border-bottom: none; }

.stay-table tr:nth-child(even) td { background: #f9fafb; }

/* =====================================================
   PACKAGE PAGE — SIDEBAR
   ===================================================== */
.pkg-sidebar { position: sticky; top: 5rem; }

.sidebar-sticky {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.side-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 1.25rem;
}

.side-price { text-align: center; }

.side-price-top {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.side-price-label {
  font-size: 0.72rem;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.side-price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #F97316;
  display: block;
  line-height: 1.1;
}

.side-price-sub {
  font-size: 0.75rem;
  color: #6B7280;
}

.side-price-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.side-price-details span {
  font-size: 0.8rem;
  color: #16A34A;
  font-weight: 500;
}

/* Side form */
.side-form h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 0.75rem;
}

.side-form-group { margin-bottom: 0.6rem; }

.side-form-group input,
.side-form-group textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  font-size: 0.85rem;
  font-family: inherit;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  color: #1a1f2e;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.side-form-group input:focus,
.side-form-group textarea:focus {
  border-color: #F97316;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

.side-form-group textarea { resize: vertical; }

.side-submit {
  width: 100%;
  padding: 0.65rem;
  background: #F97316;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.side-submit:hover {
  background: #EA580C;
  transform: translateY(-1px);
}

.side-toast {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.side-toast.hidden { display: none; }
.side-toast.success { color: #16A34A; }
.side-toast.error { color: #DC2626; }

/* Side WhatsApp */
.side-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.side-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  color: #fff;
}

.side-wa svg { width: 20px; height: 20px; }

@media (max-width: 1023px) {
  .pkg-sidebar { position: static; }
}

/* =====================================================
   PACKAGE PAGE — EXPLORE MORE
   ===================================================== */
.pkg-explore {
  background: #f5f5f0;
}

.explore-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.explore-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.explore-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.explore-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.explore-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.explore-card:hover .explore-img img { transform: scale(1.06); }

.explore-body { padding: 1rem 1.25rem 1.25rem; }

.explore-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F97316;
  background: #FFF7ED;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.4rem;
}

.explore-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 0.3rem;
}

.explore-body p {
  font-size: 0.82rem;
  color: #6B7280;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.explore-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: #F97316;
}

@media (max-width: 767px) {
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .explore-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   PACKAGE PAGE — SEO INFO SECTION
   ===================================================== */
.pkg-seo {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.seo-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.seo-inner h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: #1a1f2e;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.seo-inner p {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  max-width: 780px;
}

.seo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.seo-badges span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a1f2e;
  background: #f5f5f0;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.06);
}

/* =====================================================
   ANIMATE-COL (footer columns)
   ===================================================== */
.animate-col {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-col.delay-1 { transition-delay: 0.1s; }
.animate-col.delay-2 { transition-delay: 0.2s; }
.animate-col.delay-3 { transition-delay: 0.3s; }
.animate-col.delay-4 { transition-delay: 0.4s; }
.animate-col.delay-5 { transition-delay: 0.5s; }
.animate-col.visible { opacity: 1; transform: translateY(0); }

.site-header { position: sticky !important; top: 0; z-index: 500; background: #fff; }
.site-header.scrolled .header-topbar { max-height: 0 !important; padding: 0 !important; opacity: 0 !important; }

/* =====================================================
   PAGE HERO (for sub-pages)
    ===================================================== */
.page-hero {
  position: relative;
  height: 60dvh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
  padding-top: 4rem;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.page-hero-content h1 span {
  color: #fb923c;
}

.page-hero-content p {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .page-hero {
    height: 50dvh;
    min-height: 320px;
  }
  .page-hero-content {
    padding-top: 5rem;
  }
  .page-hero-content h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
}

/* =====================================================
   INLINE STYLES MOVED FROM INDEX.HTML
   ===================================================== */

/* Homepage map background pattern */
.map-bg {
  background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
}

/* Image collage borders */
.collage-image {
  border: 4px solid white;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .badge-overlap {
    position: static !important;
    transform: rotate(0deg) !important;
    margin: 0 auto 20px auto !important;
    display: table !important;
  }
}

/* =====================================================
   UPCOMING TRIPS CAROUSEL (homepage)
   ===================================================== */
.upcoming-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 2rem 0.5rem 2.5rem;
}

.upcoming-carousel::-webkit-scrollbar {
  display: none;
}

.upcoming-carousel-card {
  flex: 0 0 calc(25% - 1.125rem);
  min-width: 240px;
  scroll-snap-align: start;
}

.upcoming-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  border: none;
}

.upcoming-arrow:hover {
  background: #ed5442;
  transform: translateY(-50%) scale(1.1);
}

.upcoming-arrow:hover svg {
  color: white;
}

.upcoming-arrow.prev {
  left: -26px;
}

.upcoming-arrow.next {
  right: -26px;
}

.tour-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

@media (max-width: 1024px) {
  .upcoming-carousel-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 200px;
  }

  .upcoming-arrow.prev {
    left: -16px;
  }

  .upcoming-arrow.next {
    right: -16px;
  }

  .upcoming-arrow {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 768px) {
  .upcoming-carousel-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: 170px;
  }

  .upcoming-arrow.prev {
    left: -10px;
  }

  .upcoming-arrow.next {
    right: -10px;
  }

  .upcoming-arrow {
    width: 38px;
    height: 38px;
  }
}

/* =====================================================
   REELS CAROUSEL (homepage video reels)
   ===================================================== */
.reels-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reels-carousel::-webkit-scrollbar {
  display: none;
}

.reels-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.reels-arrow:hover {
  background: #ed5442;
  color: white;
}

/* =====================================================
   UTILITY
   ===================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
