/* ============================================================
   SHIBOM TOUR & TRAVELS — PREMIUM STYLESHEET
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --blue-dark:    #0a0e27;
  --blue-mid:     #1a237e;
  --purple:       #6a1b9a;
  --teal:         #006064;
  --sky:          #0288d1;
  --gold:         #f9a825;
  --gold-light:   #ffd54f;
  --gold-dark:    #e65100;

  --grad-primary: linear-gradient(135deg, #1a237e 0%, #6a1b9a 100%);
  --grad-sky:     linear-gradient(135deg, #006064 0%, #0288d1 100%);
  --grad-gold:    linear-gradient(135deg, #f9a825 0%, #e65100 100%);
  --grad-hero:    linear-gradient(135deg, rgba(10,14,39,.85) 0%, rgba(106,27,154,.6) 100%);

  --white:        #ffffff;
  --off-white:    #f8f9ff;
  --light-blue:   #e8eeff;
  --text-dark:    #0d0d2b;
  --text-gray:    #5a5a7a;

  --glass:        rgba(255,255,255,.12);
  --glass-border: rgba(255,255,255,.22);
  --glass-dark:   rgba(10,14,39,.75);
  --glass-shadow: 0 8px 32px rgba(26,35,126,.25);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-full: 60px;

  --shadow-sm:  0 4px 20px rgba(0,0,0,.10);
  --shadow-md:  0 10px 40px rgba(0,0,0,.15);
  --shadow-lg:  0 20px 70px rgba(0,0,0,.22);
  --shadow-gold:0 8px 35px rgba(249,168,37,.35);
  --shadow-blue:0 8px 35px rgba(26,35,126,.35);

  --t-fast:  .25s ease;
  --t-norm:  .45s ease;
  --t-slow:  .7s ease;

  --font-h: 'Playfair Display', serif;
  --font-b: 'Poppins', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-b); border: none; outline: none; }
input, textarea, select { font-family: var(--font-b); }

/* Global overflow + word-wrap safety */
*, *::before, *::after { box-sizing: border-box; }
h1, h2, h3, h4, h5, h6 { word-break: break-word; overflow-wrap: break-word; }
p, li, span { overflow-wrap: break-word; }
.container { width: 100%; }

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.section-tag {
  display: inline-block;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.section-title span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

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

.highlight {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: var(--r-full);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .5px;
  transition: all var(--t-fast);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-110%) skewX(-15deg);
  transition: transform .5s ease;
}
.btn:hover::before { transform: translateX(110%) skewX(-15deg); }

.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(26,35,126,.45);
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(249,168,37,.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-3px);
  border-color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--blue-mid);
  border: 2px solid var(--blue-mid);
}
.btn-ghost:hover {
  background: var(--grad-primary);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
}

.btn-sky {
  background: var(--grad-sky);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(2,136,209,.3);
}
.btn-sky:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(2,136,209,.45);
}

/* ── Navigation ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: all var(--t-norm);
}

.navbar.scrolled {
  background: var(--glass-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(249,168,37,.4);
  object-fit: cover;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text .brand-name {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
}

.nav-logo-text .brand-tagline {
  font-size: .68rem;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--grad-gold);
  transition: width var(--t-fast);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 60%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-book-btn {
  background: var(--grad-gold);
  color: var(--white);
  padding: 10px 26px;
  border-radius: var(--r-full);
  font-size: .88rem;
  font-weight: 600;
  transition: all var(--t-fast);
  box-shadow: var(--shadow-gold);
}
.nav-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(249,168,37,.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-fast);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(150deg, #080c22 0%, #1a0a3c 60%, #0a1628 100%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-18px) scale(.97);
  transition: opacity .4s ease, visibility .4s ease, transform .45s cubic-bezier(.16,1,.3,1);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-menu a {
  font-size: 1.45rem;
  font-family: var(--font-h);
  color: rgba(255,255,255,.88);
  padding: 13px 48px;
  border-radius: var(--r-md);
  transition: all var(--t-fast);
  width: min(82%, 340px);
  text-align: center;
  border: 1px solid transparent;
  letter-spacing: .3px;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  background: rgba(255,255,255,.07);
  border-color: rgba(249,168,37,.35);
  color: var(--gold-light);
}

/* Decorative glow in mobile menu */
.mobile-menu::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249,168,37,.08) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Hero Section ────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;       /* modern: excludes browser chrome */
  min-height: 580px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.08);
  animation: none;
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s ease-in-out forwards;
}

@keyframes kenBurns {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-text { max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeInDown .8s ease .2s both;
}

.hero-badge i { color: var(--gold); }

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 6vw, 4.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
  animation: fadeInUp .8s ease .4s both;
}

.hero-title .gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.82);
  max-width: 540px;
  margin-bottom: 38px;
  animation: fadeInUp .8s ease .6s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp .8s ease .8s both;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll span { font-size: 1.4rem; color: var(--gold); }

.hero-dots {
  position: absolute;
  bottom: 38px;
  right: clamp(16px, 4vw, 48px);
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all var(--t-fast);
  border: none;
}
.hero-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* Stats Bar */
.hero-stats {
  background: linear-gradient(to bottom, #080c22 0%, #110a2e 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

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

.stat-item {
  padding: 22px 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.stat-info .num {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-info .label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-top: 3px;
}

/* ── About Section ───────────────────────────────────────────── */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-images {
  position: relative;
  padding-bottom: 34px;   /* room for secondary image overhang */
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-secondary {
  position: absolute;
  width: clamp(150px, 25%, 220px);
  height: clamp(190px, 30%, 270px);
  object-fit: cover;
  border-radius: var(--r-md);
  bottom: -30px;
  right: max(-10px, -2vw);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
  max-width: calc(100% - 20px);
}

.about-badge {
  position: absolute;
  top: 30px;
  left: -10px;
  background: var(--grad-gold);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 3;
}
.about-badge .num { font-size: 2rem; font-weight: 700; font-family: var(--font-h); line-height: 1; }
.about-badge .txt { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.about-content { padding-right: 20px; }

.about-content .section-title { text-align: left; margin-bottom: 20px; }

.about-content p {
  color: var(--text-gray);
  margin-bottom: 18px;
  font-size: .98rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-dark);
  font-weight: 500;
}
.about-feat i { color: var(--gold); font-size: 1rem; }

/* ── Upcoming Trips ──────────────────────────────────────────── */
.trips-section { background: var(--off-white); }

.trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.trip-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-norm);
  position: relative;
  border: 1px solid rgba(26,35,126,.08);
}

.trip-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.trip-card-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.trip-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.trip-card:hover .trip-card-img img { transform: scale(1.08); }

.trip-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--grad-gold);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: .78rem;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

.trip-date-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--glass-dark);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: .78rem;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 6px;
}
.trip-date-badge i { color: var(--gold); }

.trip-card-body { padding: 26px; }

.trip-card-title {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.trip-destinations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.dest-tag {
  background: var(--light-blue);
  color: var(--blue-mid);
  padding: 5px 13px;
  border-radius: var(--r-full);
  font-size: .78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.dest-tag i { font-size: .72rem; color: var(--purple); }

.trip-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.06);
}

.trip-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: var(--text-gray);
  font-weight: 500;
}
.trip-duration i { color: var(--teal); }

.trip-card-footer {
  padding: 0 26px 26px;
}

.trip-book-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 13px;
  border-radius: var(--r-md);
  background: var(--grad-primary);
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  transition: all var(--t-fast);
  box-shadow: var(--shadow-blue);
}
.trip-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26,35,126,.4);
}

/* ── Why Choose Us ───────────────────────────────────────────── */
.why-section { background: var(--blue-dark); position: relative; overflow: hidden; }

.why-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(106,27,154,.3) 0%, transparent 70%);
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2,136,209,.2) 0%, transparent 70%);
  pointer-events: none;
}

.why-section .section-title { color: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--t-norm);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  background: var(--grad-gold);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--t-fast);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.15);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-gold);
  transition: transform var(--t-fast);
}
.feature-card:hover .feature-icon { transform: scale(1.12) rotate(-5deg); }

.feature-title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-section { background: var(--off-white); }

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,35,126,.08);
  position: relative;
  transition: all var(--t-norm);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  font-size: 3rem;
  color: var(--light-blue);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-stars {
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.author-avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}

.author-name { font-weight: 600; font-size: .95rem; color: var(--text-dark); }
.author-location { font-size: .8rem; color: var(--text-gray); }

.testi-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.testi-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--blue-mid);
  background: none;
  color: var(--blue-mid);
  font-size: 1rem;
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-btn:hover {
  background: var(--grad-primary);
  color: var(--white);
  border-color: transparent;
}

.testi-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testi-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(26,35,126,.25);
  cursor: pointer;
  transition: all var(--t-fast);
}
.testi-dot.active {
  background: var(--blue-mid);
  width: 24px;
  border-radius: 5px;
}

/* ── Gallery Preview ────────────────────────────────────────── */
.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
  margin-top: 50px;
}

/* Ensure gallery items always have visible height even when rows go auto */
.gallery-item { min-height: 160px; }

.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  opacity: 0;
  transition: opacity var(--t-norm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
  transform: scale(.5);
  transition: transform var(--t-norm);
}

.gallery-item:hover img { transform: scale(1.12); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

.gallery-cta {
  text-align: center;
  margin-top: 44px;
}

/* ── FAQ Section ────────────────────────────────────────────── */
.faq-section { background: var(--off-white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 60px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid rgba(26,35,126,.1);
  overflow: hidden;
  transition: all var(--t-fast);
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 600;
  font-size: .97rem;
  color: var(--text-dark);
  gap: 16px;
}

.faq-question i {
  color: var(--blue-mid);
  transition: transform var(--t-fast);
  flex-shrink: 0;
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-norm), padding var(--t-fast);
  font-size: .92rem;
  color: var(--text-gray);
  line-height: 1.75;
}

.faq-answer-inner {
  padding: 0 26px 22px;
}

.faq-item.open .faq-answer { max-height: 200px; }

/* ── Contact Section ────────────────────────────────────────── */
.contact-section { background: var(--blue-dark); position: relative; overflow: hidden; }

.contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2,136,209,.15) 0%, transparent 70%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info .section-title { color: var(--white); text-align: left; }

.contact-info p {
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
  font-size: .97rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--t-fast);
}
.contact-card:hover { background: rgba(255,255,255,.15); }

.contact-card-icon {
  width: 46px;
  height: 46px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-card h4 {
  color: var(--gold-light);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.contact-card p {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  margin: 0;
  line-height: 1.6;
}

.contact-card a {
  color: rgba(255,255,255,.8);
  transition: color var(--t-fast);
}
.contact-card a:hover { color: var(--gold-light); }

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.social-link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: all var(--t-fast);
  text-decoration: none;
}
.social-link:hover {
  background: var(--grad-primary);
  border-color: transparent;
  transform: translateY(-3px);
}

.social-link.facebook:hover { background: #1877f2; border-color: transparent; }

/* Map / Branch Card */
.branch-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: 32px;
}

.branch-card h3 {
  font-family: var(--font-h);
  color: var(--gold-light);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.reg-number {
  display: inline-block;
  background: rgba(249,168,37,.15);
  border: 1px solid rgba(249,168,37,.3);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: #06081a;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand .brand-logo img {
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.footer-brand .brand-logo .name {
  font-family: var(--font-h);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
}

.footer-brand .brand-logo .tagline {
  font-size: .68rem;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.f-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  transition: all var(--t-fast);
}
.f-social:hover {
  background: var(--grad-gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-h);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
}

.footer-links li { margin-bottom: 11px; }
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a i { color: var(--gold); font-size: .75rem; }
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  line-height: 1.6;
}
.footer-contact li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.5); transition: color var(--t-fast); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,.35);
  font-size: .83rem;
}
.footer-bottom span { color: var(--gold); }

/* ── Page Banner ────────────────────────────────────────────── */
.page-banner {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,39,.85) 0%, rgba(106,27,154,.65) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.page-banner h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
}
.breadcrumb a { color: var(--gold-light); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: .7rem; }

/* ── About Page ─────────────────────────────────────────────── */
.mission-section { background: var(--off-white); }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.mission-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,35,126,.08);
  transition: all var(--t-norm);
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.mission-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
}

.mission-icon.blue { background: var(--grad-primary); }
.mission-icon.gold { background: var(--grad-gold); }
.mission-icon.sky  { background: var(--grad-sky); }

.mission-card h3 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.mission-card p { color: var(--text-gray); font-size: .92rem; line-height: 1.75; }

.team-section { background: var(--white); }

.founder-card {
  max-width: 700px;
  margin: 60px auto 0;
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,35,126,.1);
}

.founder-img {
  width: 200px;
  height: 200px;
  border-radius: var(--r-lg);
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.founder-img-placeholder {
  width: 200px;
  height: 200px;
  border-radius: var(--r-lg);
  background: var(--grad-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-gold);
  color: var(--white);
}

.founder-img-placeholder i { font-size: 3rem; opacity: .7; }
.founder-img-placeholder span { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; opacity: .7; }

.founder-title {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.founder-name {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.founder-bio { color: var(--text-gray); font-size: .92rem; line-height: 1.75; }

.trust-section { background: var(--off-white); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.trust-item {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,35,126,.08);
  transition: all var(--t-norm);
}

.trust-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.trust-num {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.trust-label { color: var(--text-gray); font-size: .9rem; font-weight: 500; }

/* ══ Featured Tour Section (Homepage) ═══════════════════════ */
.featured-tour-section {
  background: linear-gradient(135deg, #080c22 0%, #1a0a3c 50%, #0a1628 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.featured-tour-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,168,37,.14) 0%, transparent 65%);
  pointer-events: none;
}

.featured-tour-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,180,200,.08) 0%, transparent 65%);
  pointer-events: none;
}

.featured-tour-card {
  display: grid;
  grid-template-columns: 55% 45%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(249,168,37,.1);
  margin-top: 44px;
  transition: transform var(--t-norm), box-shadow var(--t-norm);
}

.featured-tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 0 1px rgba(249,168,37,.3);
}

.feat-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.feat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.featured-tour-card:hover .feat-img-wrap img { transform: scale(1.07); }

.feat-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, rgba(8,12,34,.85) 100%),
              linear-gradient(to top, rgba(8,12,34,.5) 0%, transparent 40%);
  pointer-events: none;
}

.feat-tag {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--grad-gold);
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 1.5px;
  padding: 9px 22px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  box-shadow: 0 4px 22px rgba(249,168,37,.5);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
}

.feat-price-badge {
  position: absolute;
  bottom: 76px; left: 24px;
  background: rgba(8,12,34,.9);
  border: 2px solid var(--gold);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--r-md);
  z-index: 2;
  backdrop-filter: blur(10px);
  line-height: 1.2;
}

.feat-price-num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.feat-price-label {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .8px;
}

.feat-date-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 600;
  z-index: 2;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 7px;
}

.feat-body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.feat-body h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.feat-body > p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.feat-duration-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,168,37,.12);
  border: 1px solid rgba(249,168,37,.3);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: .83rem;
  font-weight: 600;
  margin-bottom: 22px;
  width: fit-content;
}

.feat-icons-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
}

.feat-icon-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 10px 13px;
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  font-weight: 500;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.feat-icon-item:hover {
  background: rgba(249,168,37,.1);
  border-color: rgba(249,168,37,.3);
}

.feat-icon-item i {
  color: var(--gold-light);
  font-size: .95rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.feat-dest-title {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 10px;
}

.feat-dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}

.feat-dest-tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.75);
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: .76rem;
  font-weight: 500;
}

.feat-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ══ Packages Page – Featured Full-Width Card ════════════════ */
.pkg-card.pkg-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 480px;
  border: 2px solid rgba(249,168,37,.25);
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 0 0 1px rgba(249,168,37,.08);
  position: relative;
}

.pkg-card.pkg-featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(249,168,37,.12), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.pkg-card.pkg-featured:hover {
  border-color: rgba(249,168,37,.5);
  box-shadow: 0 30px 80px rgba(0,0,0,.18), 0 0 40px rgba(249,168,37,.12);
}

.pkg-card.pkg-featured .pkg-img {
  height: 100%;
  min-height: 480px;
  border-radius: 0;
}

.pkg-featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--grad-gold);
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .8px;
  padding: 9px 20px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(249,168,37,.55);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pkg-price-badge {
  position: absolute;
  bottom: 74px; left: 20px;
  background: rgba(10,14,39,.88);
  border: 2px solid var(--gold);
  color: var(--white);
  padding: 11px 18px;
  border-radius: var(--r-md);
  z-index: 3;
  backdrop-filter: blur(8px);
  line-height: 1.2;
}

.pprice-num {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.pprice-label {
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .8px;
}

.pkg-card.pkg-featured .pkg-body {
  padding: 40px 44px;
  position: relative;
  z-index: 1;
}

.pkg-card.pkg-featured .pkg-body .pkg-title {
  font-size: 1.6rem;
}

.pkg-includes-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pkg-includes-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .84rem;
  color: var(--text-gray);
  padding: 8px 12px;
  background: rgba(26,35,126,.04);
  border-radius: var(--r-sm);
  border: 1px solid rgba(26,35,126,.07);
}

.pkg-includes-list li i { color: #27ae60; font-size: .9rem; flex-shrink: 0; }

.pkg-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: .83rem;
  color: var(--text-gray);
}

.pkg-contact-row i { color: var(--gold); }

@media (max-width: 900px) {
  .featured-tour-card  { grid-template-columns: 1fr; }
  .feat-img-wrap       { min-height: 320px; }
  .feat-img-wrap::after { background: linear-gradient(to top, rgba(8,12,34,.9) 0%, transparent 55%); }
  .feat-body           { padding: 32px 28px; }
  .pkg-card.pkg-featured { grid-template-columns: 1fr; }
  .pkg-card.pkg-featured .pkg-img { min-height: 320px; }
  .pkg-card.pkg-featured .pkg-body { padding: 32px 28px; }
}

@media (max-width: 600px) {
  .feat-body           { padding: 26px 20px; }
  .feat-body h3        { font-size: 1.4rem; }
  .feat-icons-row      { grid-template-columns: 1fr 1fr; }
  .pkg-includes-list   { grid-template-columns: 1fr; }
  .pkg-card.pkg-featured .pkg-body { padding: 24px 18px; }
}

/* ── Packages Page ──────────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: 36px;
  margin-top: 60px;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,35,126,.08);
  transition: all var(--t-norm);
}

.pkg-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pkg-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.pkg-card:hover .pkg-img img { transform: scale(1.08); }

.pkg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,39,.9) 0%, transparent 50%);
}

.pkg-img-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--grad-gold);
  color: var(--white);
  padding: 7px 18px;
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.pkg-dates {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pkg-date-tag {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 7px 16px;
  border-radius: var(--r-full);
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pkg-date-tag i { color: var(--gold); }

.pkg-body { padding: 30px; }

.pkg-title {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.pkg-subtitle { color: var(--text-gray); font-size: .88rem; margin-bottom: 22px; }

.pkg-itinerary h4 {
  font-size: .83rem;
  font-weight: 600;
  color: var(--blue-mid);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.pkg-stops {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.pkg-stop {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--light-blue);
  color: var(--blue-mid);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 500;
}
.pkg-stop i { font-size: .7rem; color: var(--purple); }

.pkg-highlights {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}

.pkg-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-gray);
}
.pkg-highlight i { color: var(--teal); flex-shrink: 0; }

.pkg-footer {
  padding: 0 30px 30px;
  display: flex;
  gap: 12px;
}

.pkg-enquire-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--r-md);
  background: var(--grad-primary);
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  transition: all var(--t-fast);
  box-shadow: var(--shadow-blue);
}
.pkg-enquire-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26,35,126,.4);
}

.pkg-wa-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all var(--t-fast);
  flex-shrink: 0;
}
.pkg-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,.4);
}

/* ── Gallery Page ───────────────────────────────────────────── */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 50px 0 40px;
}

.filter-btn {
  padding: 10px 26px;
  border-radius: var(--r-full);
  border: 2px solid rgba(26,35,126,.2);
  background: none;
  color: var(--text-gray);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t-fast);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--grad-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}

.masonry-gallery {
  columns: 4;
  column-gap: 14px;
  margin-top: 10px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .7s ease;
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  opacity: 0;
  transition: opacity var(--t-norm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
}

.masonry-overlay i { font-size: 1.8rem; }
.masonry-overlay span { font-size: .85rem; font-weight: 500; }

.masonry-item:hover img { transform: scale(1.08); }
.masonry-item:hover .masonry-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--t-fast);
}
.lightbox-close:hover { color: var(--gold); }

/* ── Booking Page ───────────────────────────────────────────── */
.booking-section { background: var(--off-white); }

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.booking-form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 46px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,35,126,.08);
}

.booking-form-card h2 {
  font-family: var(--font-h);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.booking-form-card p {
  color: var(--text-gray);
  font-size: .9rem;
  margin-bottom: 34px;
}

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

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group label span { color: var(--gold-dark); }

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(26,35,126,.15);
  border-radius: var(--r-sm);
  font-size: .93rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: all var(--t-fast);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26,35,126,.08);
}

.form-control::placeholder { color: rgba(90,90,122,.5); }

textarea.form-control { resize: vertical; min-height: 120px; }

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--grad-primary);
  color: var(--white);
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--t-fast);
  box-shadow: var(--shadow-blue);
}
.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(26,35,126,.4);
}

.booking-info { display: flex; flex-direction: column; gap: 20px; }

.booking-info-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,35,126,.08);
}

.booking-info-card h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-info-card h3 i { color: var(--gold); }

.booking-info-card p { color: var(--text-gray); font-size: .9rem; margin-bottom: 12px; }

.whatsapp-direct-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: #25d366;
  color: var(--white);
  border-radius: var(--r-md);
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--t-fast);
  box-shadow: 0 6px 25px rgba(37,211,102,.3);
}
.whatsapp-direct-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,.45);
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-gray);
  font-size: .88rem;
  margin-bottom: 10px;
}
.info-list li i { color: var(--teal); flex-shrink: 0; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes shimmer {
  0%   { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,168,37,.4); }
  50%       { box-shadow: 0 0 0 15px rgba(249,168,37,0); }
}

/* ── Touch Device Rules ──────────────────────────────────────── */
/* On touch devices hovering is imprecise — show captions/overlays persistently */
@media (hover: none) and (pointer: coarse) {
  /* Destination strip captions always visible */
  .dest-strip-caption { transform: translateY(0); }
  .dest-strip-item::after { border-color: transparent; }

  /* Gallery overlays always on */
  .gallery-item .gallery-overlay { opacity: 1; }
  .masonry-item .masonry-overlay { opacity: 1; }
  .masonry-item .masonry-overlay .mo-icons { transform: translateY(0); opacity: 1; }

  /* Trip card overlay always slightly on */
  .trip-card-img::after { opacity: .5; }

  /* Package card shine — disable (not triggerable on touch) */
  .pkg-img::after { display: none; }

  /* Disable translateY hover lifts to prevent jank on scroll */
  .trip-card:hover,
  .feature-card:hover,
  .pkg-card:hover,
  .testimonial-card:hover,
  .dest-strip-item:hover { transform: none; }

  /* Scale zoom still works on tap */
  .trip-card:active  { transform: translateY(-4px); }
  .pkg-card:active   { transform: translateY(-5px); }
}

/* ── Prevent horizontal overflow globally ────────────────────── */
html, body { overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; }

/* AOS overrides */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ── Scroll to Top ──────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: all var(--t-fast);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover { transform: translateY(-4px) scale(1.08); }

/* ── WhatsApp Float ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 92px;
  right: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 25px rgba(37,211,102,.45);
  z-index: 999;
  transition: all var(--t-fast);
  animation: pulse 2.5s infinite;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 35px rgba(37,211,102,.55);
}

/* ── Destinations Strip ─────────────────────────────────────── */
.dest-strip { background: var(--blue-dark); padding: 70px 0; position: relative; overflow: hidden; }

.dest-strip::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(106,27,154,.25) 0%, transparent 70%);
  pointer-events: none;
}

.dest-strip-head { text-align: center; margin-bottom: 44px; }

.dest-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.dest-strip-item {
  position: relative;
  height: 220px;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  will-change: transform;
}

.dest-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s cubic-bezier(.25,.46,.45,.94), filter .4s ease;
  will-change: transform;
}

.dest-strip-item:hover img {
  transform: scale(1.13);
  filter: brightness(1.08);
}

.dest-strip-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(10,14,39,.9) 0%, transparent 100%);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .5px;
  transform: translateY(100%);
  transition: transform var(--t-norm);
}

.dest-strip-caption i {
  color: var(--gold);
  margin-right: 5px;
  font-size: .75rem;
}

.dest-strip-item:hover .dest-strip-caption { transform: translateY(0); }

.dest-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  transition: border-color var(--t-fast);
}
.dest-strip-item:hover::after { border-color: rgba(249,168,37,.5); }

/* ── Enhanced Image Hover Effects ───────────────────────────── */
.pkg-img img {
  transition: transform .8s cubic-bezier(.25,.46,.45,.94), filter .4s ease;
  will-change: transform;
}
.pkg-card:hover .pkg-img img {
  transform: scale(1.1);
  filter: brightness(1.07);
}

.trip-card-img img {
  transition: transform .75s cubic-bezier(.25,.46,.45,.94), filter .4s ease;
  will-change: transform;
}
.trip-card:hover .trip-card-img img {
  transform: scale(1.1);
  filter: brightness(1.06);
}

.about-img-main {
  transition: transform .7s ease, box-shadow .4s ease;
  will-change: transform;
}
.about-images:hover .about-img-main {
  transform: scale(1.02);
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
}

.about-img-secondary {
  transition: transform .6s ease, box-shadow .4s ease;
}
.about-images:hover .about-img-secondary {
  transform: scale(1.04) translate(-4px, -4px);
  box-shadow: 0 16px 50px rgba(0,0,0,.25);
}

.masonry-item img {
  transition: transform .75s cubic-bezier(.25,.46,.45,.94), filter .4s ease;
  will-change: transform;
}
.masonry-item:hover img {
  transform: scale(1.12);
  filter: brightness(1.06);
}

.gallery-item img {
  transition: transform .75s cubic-bezier(.25,.46,.45,.94), filter .4s ease;
  will-change: transform;
}
.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

/* ── Page Banner Entrance Zoom ───────────────────────────────── */
.page-banner-bg {
  animation: bannerEntrance 10s ease-out forwards;
}

@keyframes bannerEntrance {
  from { transform: scale(1.12); }
  to   { transform: scale(1.0); }
}

/* ── Trip Card Overlay Fade ──────────────────────────────────── */
.trip-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,39,.6) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--t-norm);
  pointer-events: none;
}
.trip-card:hover .trip-card-img::after { opacity: 1; }

/* ── Package Card Shine Effect ───────────────────────────────── */
.pkg-img::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,.12) 50%,
    transparent 70%
  );
  transform: skewX(-15deg);
  opacity: 0;
  transition: left .6s ease, opacity .3s;
  pointer-events: none;
  z-index: 2;
}
.pkg-card:hover .pkg-img::after {
  left: 130%;
  opacity: 1;
}

@media (max-width: 900px) {
  .dest-strip-grid { grid-template-columns: repeat(3, 1fr); }
  .dest-strip-item { height: 180px; }
}

@media (max-width: 600px) {
  .dest-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-strip-item { height: 150px; }
}

/* ══════════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE SYSTEM  v2
   Breakpoints: 1200 · 1100 · 992 · 900 · 768 · 600 · 480 · 380
   ══════════════════════════════════════════════════════════════ */

/* ── 1200px ────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .container { max-width: 100%; padding: 0 28px; }
  .featured-tour-card { grid-template-columns: 52% 48%; }
  .feat-body { padding: 36px 32px; }
  .about-grid { gap: 50px; }
}

/* ── 1100px ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .features-grid   { grid-template-columns: repeat(3, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 36px; }
  .masonry-gallery { columns: 3; }
  .trips-grid      { gap: 22px; }
  .packages-grid   { gap: 24px; }
  .section-title   { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
  /* Gallery – switch to 3 col earlier */
  .gallery-grid    { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .gallery-item    { height: 220px; }
  .gallery-item:nth-child(1) { grid-column: span 2; height: 220px; }
}

/* ── 992px ─────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .hero { min-height: 520px; }

  .section-pad    { padding: 84px 0; }
  .section-pad-sm { padding: 60px 0; }

  .about-grid     { gap: 36px; }
  .about-img-main { height: 420px; }
  .about-badge    { left: 0; }

  .trip-card-img  { height: 210px; }
  .pkg-img        { height: 250px; }

  .stats-inner    { grid-template-columns: repeat(4, 1fr); }

  .feat-img-wrap  { min-height: 440px; }
  .feat-body      { padding: 32px 28px; }
  .feat-body h3   { font-size: 1.55rem; }

  .contact-grid   { gap: 36px; }
  .booking-grid   { gap: 36px; }
}

/* ── 900px: Tablets Portrait / Large Phones ───────────────── */
@media (max-width: 900px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar .container { padding: 0 20px; }

  /* Hero */
  .hero { min-height: 480px; }
  .hero-subtitle { font-size: .95rem; }
  .hero-badge { font-size: .76rem; padding: 7px 18px; }

  /* Page Banners */
  .page-banner { height: 44vh; min-height: 270px; }
  .page-banner-content { padding-top: 68px; }
  .page-banner h1 { font-size: clamp(1.5rem, 5vw, 2.4rem); }

  /* About */
  .about-grid   { grid-template-columns: 1fr; gap: 28px; }
  .about-images { order: -1; }
  .about-img-main { height: 360px; }
  .about-img-secondary {
    width: 165px; height: 205px;
    right: 8px; bottom: -18px;
  }
  .about-badge { left: 8px; padding: 13px 16px; }
  .about-badge .num { font-size: 1.6rem; }
  .about-content { padding-right: 0; }
  .about-features { grid-template-columns: 1fr 1fr; }

  /* Trips */
  .trips-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trip-card-img { height: 200px; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { padding: 18px 20px; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }

  /* Mission / Trust / Founder */
  .mission-grid  { grid-template-columns: 1fr 1fr; }
  .trust-grid    { grid-template-columns: 1fr 1fr; }
  .founder-card  { grid-template-columns: 1fr; text-align: center; }
  .founder-img-placeholder { margin: 0 auto; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Booking */
  .booking-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Gallery – explicit heights prevent collapsed images with auto rows */
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; gap: 10px; }
  .gallery-item  { height: 185px; }
  .gallery-item:nth-child(1) { grid-column: span 2; height: 240px; }
  .masonry-gallery { columns: 2; }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr; }
  .pkg-img { height: 260px; }
  .pkg-card.pkg-featured { grid-template-columns: 1fr; }
  .pkg-card.pkg-featured .pkg-img { min-height: 300px; height: 300px; }
  .pkg-card.pkg-featured .pkg-body { padding: 32px 28px; }
  .pkg-includes-list { grid-template-columns: 1fr 1fr; }

  /* Featured tour (homepage) */
  .featured-tour-card { grid-template-columns: 1fr; }
  .feat-img-wrap { min-height: 340px; }
  .feat-img-wrap::after {
    background: linear-gradient(to top, rgba(8,12,34,.92) 0%, transparent 60%);
  }
  .feat-body { padding: 32px 28px; }
  .feat-price-badge { bottom: 60px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Dest strip */
  .dest-strip-grid { grid-template-columns: repeat(3, 1fr); }
  .dest-strip-item { height: 180px; }
}

/* ── 768px: iPad Portrait ─────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 18px; }

  .section-pad    { padding: 72px 0; }
  .section-pad-sm { padding: 52px 0; }
  .section-title  { font-size: clamp(1.55rem, 5.5vw, 2.2rem); }
  .section-subtitle { font-size: .9rem; }

  /* Hero */
  .hero { min-height: 480px; }
  .hero-title { font-size: clamp(1.75rem, 7vw, 2.8rem); }
  .hero-subtitle { font-size: .9rem; max-width: 90%; }
  .hero-content .container { padding-bottom: 60px; }
  .hero-scroll { bottom: 24px; }

  /* Page banner */
  .page-banner { height: 40vh; min-height: 260px; }
  .page-banner h1 { font-size: clamp(1.4rem, 5.5vw, 2.2rem); margin-bottom: 10px; }
  .breadcrumb { font-size: .8rem; }

  /* About */
  .about-img-main   { height: 310px; }
  .about-img-secondary { width: 142px; height: 176px; right: 4px; bottom: -14px; }
  .about-images     { padding-bottom: 28px; }
  .about-features   { grid-template-columns: 1fr; gap: 10px; }

  /* Trips */
  .trips-grid { grid-template-columns: 1fr; gap: 18px; }
  .trip-card-img { height: 220px; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .feature-card { padding: 28px 20px; }
  .feature-icon { width: 60px; height: 60px; font-size: 1.3rem; }
  .feature-title { font-size: 1rem; }
  .feature-desc { font-size: .85rem; }

  /* Testimonials */
  .testimonial-card { padding: 26px 22px; }
  .testimonial-text { font-size: .88rem; }

  /* Gallery */
  .gallery-grid  { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item  { height: 180px; }
  .gallery-item:nth-child(1) { grid-column: span 2; height: 220px; }
  .masonry-gallery { columns: 2; }
  .gallery-filter { gap: 8px; flex-wrap: wrap; }
  .filter-btn { padding: 9px 18px; font-size: .82rem; }

  /* Packages */
  .pkg-body { padding: 24px 22px; }
  .pkg-title { font-size: 1.25rem; }
  .pkg-includes-list { grid-template-columns: 1fr; }

  /* Featured tour */
  .feat-body h3 { font-size: 1.4rem; }
  .feat-icons-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .feat-price-num { font-size: 1.65rem; }

  /* Stats */
  .stat-num { font-size: 2.2rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand p { font-size: .85rem; }

  /* Dest strip */
  .dest-strip { padding: 56px 0; }
  .dest-strip-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .dest-strip-item { height: 160px; }

  /* FAQ */
  .faq-question { font-size: .93rem; }
  .faq-item.open .faq-answer { max-height: 320px; }

  /* Booking */
  .booking-form-card { padding: 32px 24px; }
  .booking-form-card h2 { font-size: 1.45rem; }
}

/* ── 600px: Large Phones ───────────────────────────────────── */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section-pad    { padding: 60px 0; }
  .section-pad-sm { padding: 44px 0; }
  .section-title  { font-size: clamp(1.4rem, 6.5vw, 1.9rem); }

  /* Navbar */
  .nav-logo img { width: 40px; height: 40px; }
  .nav-logo-text .brand-name { font-size: 1rem; }
  .nav-logo-text .brand-tagline { display: none; }

  /* Hero */
  .hero { min-height: 420px; }
  .hero-title { font-size: clamp(1.6rem, 8vw, 2.4rem); line-height: 1.25; }
  .hero-subtitle { font-size: .85rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero-badge { font-size: .72rem; padding: 6px 14px; margin-bottom: 18px; }

  /* Page banner */
  .page-banner { height: 38vh; min-height: 230px; }
  .page-banner-content { padding-top: 65px; }
  .page-banner h1 { font-size: clamp(1.25rem, 6vw, 1.85rem); }

  /* About */
  .about-images        { margin-bottom: 10px; padding-bottom: 0; }
  .about-img-main      { height: 250px; }
  .about-img-secondary { display: none; }         /* hidden — no overhang */
  .about-badge         { top: 14px; left: 8px; padding: 11px 13px; }
  .about-badge .num    { font-size: 1.35rem; }
  .about-content p     { font-size: .9rem; }
  .about-features      { grid-template-columns: 1fr; gap: 8px; }
  .about-feat          { font-size: .85rem; }

  /* Trips */
  .trips-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .trip-card-img { height: 210px; }
  .trip-card-body { padding: 20px; }
  .trip-card-title { font-size: 1.15rem; }
  .dest-tag { font-size: .74rem; padding: 4px 10px; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .feature-card { padding: 24px 16px; }
  .feature-icon { width: 52px; height: 52px; font-size: 1.1rem; margin-bottom: 14px; }
  .feature-title { font-size: .92rem; }
  .feature-desc { font-size: .8rem; }

  /* Testimonials */
  .testimonials-wrapper { margin-top: 40px; }
  .testimonial-card { padding: 22px 18px; }
  .testimonial-text { font-size: .85rem; line-height: 1.7; }
  .testi-prev, .testi-next { width: 38px; height: 38px; font-size: .8rem; }

  /* Stats */
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item { padding: 16px 18px; }
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: .78rem; }

  /* Gallery */
  .gallery-grid  { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 8px; }
  .gallery-item  { height: 160px; }
  .gallery-item:nth-child(1) { grid-column: span 2; height: 200px; }
  .masonry-gallery { columns: 2; gap: 8px; }
  .masonry-item { margin-bottom: 8px; }
  .gallery-filter { flex-wrap: wrap; gap: 7px; }
  .filter-btn { padding: 8px 14px; font-size: .78rem; }

  /* FAQ */
  .faq-item { margin-bottom: 10px; }
  .faq-question { padding: 16px 18px; font-size: .88rem; }
  .faq-answer { padding: 0 18px; }
  .faq-item.open .faq-answer { max-height: 400px; padding: 14px 18px; }

  /* Contact */
  .contact-card { padding: 28px 22px; }
  .contact-detail { font-size: .87rem; }

  /* Booking */
  .booking-form-card { padding: 24px 18px; }
  .booking-form-card h2 { font-size: 1.3rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 16px; }
  .form-control { padding: 12px 14px; font-size: .88rem; }
  .form-submit-btn { padding: 14px; font-size: .92rem; }
  .booking-info-card { padding: 22px 18px; }

  /* Packages */
  .packages-grid { gap: 18px; margin-top: 40px; }
  .pkg-img { height: 230px; }
  .pkg-body { padding: 22px 18px; }
  .pkg-title { font-size: 1.15rem; }
  .pkg-subtitle { font-size: .85rem; }
  .pkg-stops { gap: 6px; }
  .pkg-stop { font-size: .76rem; padding: 5px 10px; }
  .pkg-includes-list { grid-template-columns: 1fr; }
  .pkg-includes-list li { font-size: .82rem; }
  .pkg-card.pkg-featured .pkg-img { min-height: 260px; height: 260px; }
  .pkg-card.pkg-featured .pkg-body { padding: 24px 18px; }
  .pkg-card.pkg-featured .pkg-body .pkg-title { font-size: 1.25rem; }
  .pprice-num { font-size: 1.4rem; }

  /* Featured tour homepage */
  .featured-tour-section { padding: 60px 0; }
  .feat-img-wrap { min-height: 280px; }
  .feat-body { padding: 26px 20px; }
  .feat-body h3 { font-size: 1.28rem; }
  .feat-body > p { font-size: .85rem; }
  .feat-icons-row { gap: 7px; }
  .feat-icon-item { font-size: .77rem; padding: 9px 10px; }
  .feat-icon-item i { font-size: .85rem; }
  .feat-price-num { font-size: 1.55rem; }
  .feat-dest-tag { font-size: .73rem; padding: 4px 10px; }
  .feat-cta { gap: 10px; }
  .feat-cta .btn { width: 100%; justify-content: center; }

  /* Mission / Trust */
  .mission-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .mission-card { padding: 24px 20px; }
  .trust-card { padding: 22px 16px; }

  /* Founder */
  .founder-card { padding: 28px 22px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-heading { font-size: 1rem; margin-bottom: 16px; }
  .footer-links li { margin-bottom: 8px; font-size: .87rem; }
  .footer-brand p { font-size: .85rem; }
  .footer-social { flex-wrap: wrap; gap: 8px; }
  .footer-bottom { font-size: .78rem; flex-direction: column; gap: 8px; text-align: center; }

  /* Dest strip */
  .dest-strip { padding: 50px 0; }
  .dest-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .dest-strip-item { height: 148px; }
  .dest-strip-head { margin-bottom: 30px; }

  /* Scroll-top & WA float */
  .scroll-top { bottom: 20px; right: 16px; width: 44px; height: 44px; font-size: 1rem; }
  .wa-float   { bottom: 78px; right: 14px; width: 48px; height: 48px; font-size: 1.35rem; }
}

/* ── 480px: Small Phones ───────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section-pad    { padding: 50px 0; }
  .section-title  { font-size: clamp(1.3rem, 7vw, 1.75rem); }

  /* Navbar */
  .nav-logo img { width: 36px; height: 36px; }
  .nav-logo-text .brand-name { font-size: .92rem; }
  .hamburger span { width: 22px; }

  /* Hero */
  .hero { min-height: 380px; }
  .hero-title { font-size: clamp(1.45rem, 9vw, 2.1rem); }
  .hero-content .container { padding-top: 0; }
  .hero-buttons .btn { max-width: 100%; }

  /* Page banner */
  .page-banner { height: 34vh; min-height: 210px; }
  .page-banner h1 { font-size: clamp(1.15rem, 7vw, 1.6rem); }
  .page-banner-content { padding-top: 60px; }

  /* About */
  .about-img-main { height: 230px; }

  /* Trips */
  .trip-card-img { height: 195px; }
  .trip-card-title { font-size: 1.05rem; }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .feature-card { padding: 20px 12px; }
  .feature-icon { width: 46px; height: 46px; font-size: 1rem; }
  .feature-title { font-size: .85rem; }
  .feature-desc { font-size: .76rem; }

  /* Gallery – single column, explicit heights */
  .gallery-grid  { grid-template-columns: 1fr; gap: 8px; }
  .gallery-item  { height: 200px; }
  .gallery-item:nth-child(1) { grid-column: span 1; height: 200px; }
  .masonry-gallery { columns: 2; }

  /* Stats */
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item { padding: 14px 14px; }
  .stat-icon { width: 38px; height: 38px; font-size: .95rem; }
  .stat-num { font-size: 1.8rem; }

  /* Packages */
  .pkg-img { height: 210px; }
  .pkg-card.pkg-featured .pkg-img { min-height: 240px; height: 240px; }

  /* Featured tour */
  .feat-img-wrap { min-height: 250px; }
  .feat-body { padding: 22px 16px; }
  .feat-body h3 { font-size: 1.15rem; }
  .feat-icons-row { grid-template-columns: 1fr 1fr; gap: 6px; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-card { padding: 18px 12px; }

  /* Footer */
  .brand-logo img { width: 40px; height: 40px; }
  .brand-logo .name { font-size: 1rem; }

  /* Mobile menu links */
  .mobile-menu a { font-size: 1.25rem; padding: 11px 32px; width: 90%; }

  /* Dest strip */
  .dest-strip-item { height: 130px; }
  .dest-strip-grid { gap: 7px; }
}

/* ── 380px: Very Small Phones ─────────────────────────────── */
@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .section-title { font-size: 1.25rem; }

  .hero { min-height: 340px; }
  .hero-title { font-size: 1.4rem; }
  .hero-subtitle { font-size: .82rem; }

  .page-banner h1 { font-size: 1.1rem; }
  .page-banner { min-height: 190px; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 20px 18px; }

  .trips-grid { gap: 14px; }
  .trip-card-img { height: 180px; }

  .footer-grid { gap: 24px; }

  .dest-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .dest-strip-item { height: 118px; }

  .mobile-menu a { font-size: 1.1rem; padding: 10px 24px; }

  .stat-num { font-size: 1.6rem; }
  .about-img-main { height: 200px; }
  .pkg-img { height: 190px; }
  .feat-img-wrap { min-height: 220px; }
  .masonry-gallery { columns: 1; }
}
