/* ========================================
   DIVI TOUR & TRAVELS — MAIN STYLESHEET
   Color Theme: Deep Blue #1a3a6e + Gold #c9a227 + Saffron #e07b28
======================================== */

:root {
  --blue-deep: #1a3a6e;
  --blue-mid: #234896;
  --blue-light: #3a6ab8;
  --gold: #c9a227;
  --gold-light: #e8c55a;
  --saffron: #e07b28;
  --saffron-light: #f5a55a;
  --cream: #fdf6ec;
  --white: #ffffff;
  --dark: #111827;
  --gray-dark: #374151;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow: 0 4px 20px rgba(26,58,110,0.12);
  --shadow-lg: 0 12px 40px rgba(26,58,110,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font-display: 'Cinzel', serif;
  --font-body: 'Libre Baskerville', serif;
  --font-sans: 'Nunito Sans', sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* CONTAINER */
.container { max-width: 1220px; margin: 0 auto; padding: 0 20px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px; font-family: var(--font-sans);
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  transition: all var(--transition); border: 2px solid transparent; text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--blue-deep); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,162,39,0.4); }
.btn-secondary { background: transparent; color: var(--blue-deep); border-color: var(--blue-deep); }
.btn-secondary:hover { background: var(--blue-deep); color: white; }
.btn-outline-light { background: transparent; color: white; border-color: rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: white; color: var(--blue-deep); }
.btn-light { background: white; color: var(--blue-deep); border-color: white; }
.btn-light:hover { background: var(--cream); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* TOPBAR */
.topbar {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 0.82rem;
  font-family: var(--font-sans);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-brand { font-weight: 600; color: var(--gold-light); letter-spacing: 0.03em; }
.topbar-contacts { display: flex; gap: 20px; }
.topbar-contacts a { color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 6px; transition: color var(--transition); }
.topbar-contacts a:hover { color: var(--gold-light); }
.icon { font-size: 0.9rem; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: white;
  box-shadow: 0 2px 20px rgba(26,58,110,0.12);
  transition: background var(--transition);
}
.header-inner {
  display: flex; align-items: center; gap: 24px;
  padding-top: 12px; padding-bottom: 12px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { font-size: 2rem; line-height: 1; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--blue-deep); letter-spacing: 0.05em; }
.logo-sub { font-family: var(--font-display); font-size: 0.8rem; color: var(--gold); letter-spacing: 0.08em; }

.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  padding: 10px 14px; font-weight: 600; font-size: 0.88rem;
  color: var(--gray-dark); border-radius: 6px; display: block;
  transition: all var(--transition); letter-spacing: 0.02em;
  font-family: var(--font-sans);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: var(--blue-deep); background: var(--cream); }

/* DROPDOWN */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border-radius: 10px; min-width: 210px;
  box-shadow: 0 8px 32px rgba(26,58,110,0.18);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--transition); z-index: 100;
  border: 1px solid var(--border); overflow: hidden;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 10px 18px; font-size: 0.87rem;
  font-weight: 600; color: var(--gray-dark);
  transition: all var(--transition); border-left: 3px solid transparent;
}
.dropdown li a:hover { background: var(--cream); color: var(--blue-deep); border-left-color: var(--gold); }

.header-cta { margin-left: 12px; padding: 10px 22px; font-size: 0.88rem; }

/* NAV TOGGLE (mobile) */
.nav-toggle {
  display: none; background: none; border: none;
  font-size: 1.6rem; cursor: pointer; color: var(--blue-deep);
  margin-left: auto;
}

/* ===================== HERO CAROUSEL ===================== */
.hero-carousel {
  position: relative; overflow: hidden;
  height: calc(100vh - 110px); min-height: 500px; max-height: 780px;
}
.carousel-track { width: 100%; height: 100%; position: relative; }
.carousel-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0; transition: opacity 0.8s ease; display: flex; align-items: center;
}
.carousel-slide.active { opacity: 1; z-index: 1; }

/* NO FULL OVERLAY — just bottom gradient for text readability */
.carousel-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,25,60,0.72) 0%, rgba(10,25,60,0.35) 55%, transparent 100%);
  pointer-events: none;
}
.slide-content {
  position: relative; z-index: 2;
  max-width: 620px; padding: 0 60px;
  animation: slideIn 0.9s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
.slide-tag {
  display: inline-block; background: var(--gold);
  color: var(--blue-deep); font-weight: 700;
  padding: 5px 16px; border-radius: 20px;
  font-size: 0.8rem; letter-spacing: 0.06em; margin-bottom: 16px;
  text-transform: uppercase;
}
.slide-content h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900; color: white; line-height: 1.15; margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.slide-content h1 em { color: var(--gold-light); font-style: italic; }
.slide-content p {
  color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 28px;
  max-width: 480px;
}
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,0.4); color: white;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.6rem;
  cursor: pointer; transition: all var(--transition); display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: var(--gold); color: var(--blue-deep); border-color: var(--gold); }
.carousel-btn.prev { left: 24px; }
.carousel-btn.next { right: 24px; }

.carousel-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 10;
  display: flex; gap: 10px;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: all var(--transition);
}
.dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* ===================== BOOKING BAR ===================== */
.booking-bar {
  background: var(--blue-deep); padding: 32px 0;
}
.booking-bar-title {
  color: var(--gold-light); font-family: var(--font-display);
  font-size: 1.1rem; margin-bottom: 18px; letter-spacing: 0.04em;
}
.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px; align-items: end;
}
.booking-form input, .booking-form select {
  padding: 12px 16px; border-radius: 8px; border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1); color: white; font-size: 0.9rem;
  font-family: var(--font-sans); transition: all var(--transition); width: 100%;
}
.booking-form input::placeholder { color: rgba(255,255,255,0.5); }
.booking-form input:focus, .booking-form select:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,0.15);
}
.booking-form select { color: rgba(255,255,255,0.7); }
.booking-form select option { background: var(--blue-deep); color: white; }
.booking-form .btn { width: 100%; justify-content: center; }

/* ===================== SECTIONS ===================== */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block; font-weight: 700; color: var(--saffron);
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 8px; font-family: var(--font-sans);
}
.section-tag::before, .section-tag::after { content: '— '; color: var(--gold); }
.section-title {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--blue-deep); margin-bottom: 14px; line-height: 1.25;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-desc { color: var(--gray); font-size: 1rem; max-width: 520px; margin: 0 auto; }
.center-btn { text-align: center; margin-top: 40px; }

/* ===================== SERVICES ===================== */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
}
.service-card {
  background: white; border-radius: var(--radius); padding: 36px 28px;
  text-align: center; border: 2px solid var(--border);
  transition: all var(--transition); display: block; color: inherit;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card.featured { border-color: var(--gold); background: linear-gradient(135deg, #fff9ec 0%, white 100%); }
.service-icon { font-size: 2.8rem; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-display); font-size: 1rem; color: var(--blue-deep);
  margin-bottom: 10px; font-weight: 700;
}
.service-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.service-link { color: var(--saffron); font-weight: 700; font-size: 0.85rem; }

/* ===================== DESTINATIONS ===================== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; display: block; }
.dest-card.large { grid-column: 1 / 2; grid-row: 1 / 3; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-card:hover img { transform: scale(1.07); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,60,0.85) 0%, rgba(10,25,60,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; color: white;
}
.dest-overlay h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.dest-overlay p { font-size: 0.8rem; color: rgba(255,255,255,0.8); margin-bottom: 10px; }
.dest-cta {
  display: inline-block; color: var(--gold-light); font-weight: 700; font-size: 0.85rem;
  transform: translateX(0); transition: transform var(--transition);
}
.dest-card:hover .dest-cta { transform: translateX(6px); }

/* ===================== FLEET ===================== */
.fleet-section { background: white; }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.fleet-card {
  border-radius: var(--radius); overflow: hidden; border: 2px solid var(--border);
  transition: all var(--transition); background: white; box-shadow: var(--shadow-sm);
}
.fleet-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.fleet-card img { width: 100%; height: 160px; object-fit: cover; }
.fleet-info { padding: 14px 16px; }
.fleet-info h4 { font-family: var(--font-display); font-size: 0.92rem; color: var(--blue-deep); margin-bottom: 4px; }
.fleet-info span { font-size: 0.8rem; color: var(--gray); font-family: var(--font-sans); }

/* ===================== OTHER STATIONS ===================== */
.stations-section { background: var(--blue-deep); }
.stations-section .section-tag { color: var(--gold-light); }
.stations-section .section-title { color: white; }
.stations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.station-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
}
.station-card img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.4s ease; }
.station-card:hover img { transform: scale(1.06); }
.station-card h4 {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,25,60,0.9), transparent);
  color: white; padding: 20px 14px 10px; font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600;
}

/* ===================== WHY CHOOSE US ===================== */
.why-section { background: var(--cream); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-image { position: relative; }
.why-image img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; }
.why-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--blue-deep);
  border-radius: var(--radius); padding: 18px 22px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.badge-num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 900; line-height: 1; }
.badge-text { font-weight: 700; font-size: 0.8rem; line-height: 1.3; }
.why-content .section-tag { display: inline-block; }
.why-content h2 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--blue-deep); margin: 12px 0 18px; line-height: 1.25;
}
.why-content h2 em { color: var(--gold); font-style: italic; }
.why-content > p { color: var(--gray); margin-bottom: 24px; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.why-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.9rem; color: var(--gray-dark); }
.check {
  width: 22px; height: 22px; background: var(--gold); color: var(--blue-deep);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900; flex-shrink: 0;
}

/* ===================== STATS ===================== */
.stats-section {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  padding: 52px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-display); font-size: 2.8rem;
  font-weight: 900; color: var(--gold-light); line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 600; margin-top: 8px; display: block; }

/* ===================== PACKAGES ===================== */
.packages-section { background: var(--cream); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.package-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--transition); border: 2px solid var(--border);
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.pkg-img { position: relative; height: 220px; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.package-card:hover .pkg-img img { transform: scale(1.06); }
.pkg-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--saffron); color: white;
  padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700;
}
.pkg-body { padding: 24px; }
.pkg-type { font-size: 0.75rem; font-weight: 700; color: var(--saffron); text-transform: uppercase; letter-spacing: 0.08em; }
.pkg-body h3 { font-family: var(--font-display); color: var(--blue-deep); font-size: 1.1rem; margin: 8px 0 12px; }
.pkg-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.pkg-meta span { font-size: 0.8rem; color: var(--gray); font-weight: 600; }
.pkg-body p { font-size: 0.88rem; color: var(--gray); margin-bottom: 18px; line-height: 1.6; }
.pkg-footer { display: flex; justify-content: space-between; align-items: center; }
.pkg-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--blue-deep); }
.pkg-price small { font-size: 0.7rem; color: var(--gray); font-family: var(--font-sans); }

/* ===================== GALLERY PREVIEW ===================== */
.gallery-preview { background: white; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; display: block; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.view-more {
  background: var(--blue-deep); display: flex; align-items: center; justify-content: center;
}
.view-more-inner { text-align: center; color: white; }
.view-more-inner .plus { display: block; font-size: 3rem; color: var(--gold); font-weight: 300; }
.view-more-inner span { font-weight: 700; font-size: 0.9rem; }
.gallery-item.view-more:hover { opacity: 0.85; }

/* ===================== CONTACT STRIP ===================== */
.contact-strip {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  padding: 52px 0;
}
.strip-content { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.strip-content h3 { font-family: var(--font-display); font-size: 1.5rem; color: white; margin-bottom: 6px; }
.strip-content p { color: rgba(255,255,255,0.85); }
.strip-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-name { color: white; }
.footer-logo .logo-sub { color: var(--gold); }
.footer-col > p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.1); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; transition: all var(--transition);
  text-transform: uppercase;
}
.footer-social a:hover { background: var(--gold); color: var(--blue-deep); }
.footer-col h4 {
  font-family: var(--font-display); color: var(--gold-light);
  font-size: 1rem; margin-bottom: 20px; letter-spacing: 0.05em;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.87rem; align-items: flex-start; }
.fi-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-map { margin-top: 16px; border-radius: 10px; overflow: hidden; }
.footer-map iframe { width: 100%; height: 150px; border: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.4); }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: #25d366; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }

/* ===================== PAGE HERO (Inner pages) ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  padding: 80px 0 60px; text-align: center; color: white; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '🕉';
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  font-size: 12rem; opacity: 0.05; line-height: 1;
}
.page-hero-tag { color: var(--gold-light); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 12px; }
.page-hero h1 em { color: var(--gold-light); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 20px; }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.6); flex-wrap: wrap; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===================== ABOUT PAGE ===================== */
.about-intro { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; object-fit: cover; }
.about-text .section-tag { display: inline-block; }
.about-text h2 { font-family: var(--font-display); font-size: 2rem; color: var(--blue-deep); margin: 10px 0 18px; }
.about-text h2 em { color: var(--gold); font-style: italic; }
.about-text p { color: var(--gray); margin-bottom: 16px; font-size: 0.95rem; }
.about-values { background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.value-card { background: white; border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); border: 2px solid var(--border); }
.value-icon { font-size: 2.5rem; margin-bottom: 14px; }
.value-card h3 { font-family: var(--font-display); color: var(--blue-deep); font-size: 1rem; margin-bottom: 10px; }
.value-card p { color: var(--gray); font-size: 0.87rem; }

/* ===================== SERVICES PAGE ===================== */
.service-detail { padding: 80px 0; }
.service-detail:nth-child(even) { background: var(--cream); }
.service-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-detail:nth-child(even) .service-detail-inner { direction: rtl; }
.service-detail:nth-child(even) .service-detail-inner > * { direction: ltr; }
.service-detail-img { border-radius: var(--radius-lg); overflow: hidden; height: 360px; }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-text h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--blue-deep); margin-bottom: 16px; }
.service-detail-text p { color: var(--gray); margin-bottom: 16px; }
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
.service-feature { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--gray-dark); font-weight: 600; }

/* ===================== DESTINATIONS ===================== */
.destinations-all { background: white; }
.dest-all-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.dest-full-card {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  border: 2px solid var(--border); transition: all var(--transition); display: block; color: inherit;
}
.dest-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.dest-full-card-img { height: 220px; overflow: hidden; }
.dest-full-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-full-card:hover .dest-full-card-img img { transform: scale(1.07); }
.dest-full-card-body { padding: 20px; background: white; }
.dest-full-card-body h3 { font-family: var(--font-display); color: var(--blue-deep); font-size: 1.1rem; margin-bottom: 8px; }
.dest-full-card-body p { color: var(--gray); font-size: 0.87rem; margin-bottom: 14px; }
.dest-highlights { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.hl-tag { background: var(--cream); border: 1px solid var(--border); border-radius: 20px; padding: 4px 10px; font-size: 0.75rem; color: var(--blue-deep); font-weight: 600; }

/* ===================== TOUR TYPES ===================== */
.tour-type-block { padding: 100px 0; }
.tour-type-block:nth-child(even) { background: var(--cream); }
.tour-type-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.tour-type-block:nth-child(even) .tour-type-inner { direction: rtl; }
.tour-type-block:nth-child(even) .tour-type-inner > * { direction: ltr; }
.tour-type-img { border-radius: var(--radius-lg); overflow: hidden; height: 420px; }
.tour-type-img img { width: 100%; height: 100%; object-fit: cover; }
.tour-type-text .type-icon { font-size: 3rem; margin-bottom: 12px; }
.tour-type-text h2 { font-family: var(--font-display); font-size: 2rem; color: var(--blue-deep); margin-bottom: 14px; }
.tour-type-text h2 em { color: var(--gold); font-style: italic; }
.tour-type-text p { color: var(--gray); margin-bottom: 20px; }
.tour-type-features { margin-bottom: 24px; display: grid; gap: 10px; }
.tour-type-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--gray-dark); }
.tour-type-features li .check { flex-shrink: 0; margin-top: 2px; }

/* ===================== PACKAGES PAGE ===================== */
.packages-all { background: var(--cream); }
.packages-all-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; }

/* ===================== GALLERY PAGE ===================== */
.gallery-full { background: white; }
.gallery-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gal-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gal-item:hover img { transform: scale(1.06); }

/* ===================== VIDEO GALLERY ===================== */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.video-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: white; }
.video-thumb {
  position: relative; height: 200px; overflow: hidden;
  background: var(--blue-deep); display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.play-btn {
  position: absolute; width: 60px; height: 60px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--blue-deep); z-index: 2; transition: all var(--transition);
  border: 3px solid white;
}
.video-thumb:hover .play-btn { transform: scale(1.1); }
.video-info { padding: 16px; }
.video-info h4 { font-family: var(--font-display); color: var(--blue-deep); font-size: 0.95rem; margin-bottom: 6px; }
.video-info p { color: var(--gray); font-size: 0.82rem; }

/* ===================== BLOGS PAGE ===================== */
.blogs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 2px solid var(--border); transition: all var(--transition); display: block; color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.blog-img { height: 220px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 22px; }
.blog-cat { font-size: 0.72rem; font-weight: 700; color: var(--saffron); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.blog-body h3 { font-family: var(--font-display); color: var(--blue-deep); font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-body p { color: var(--gray); font-size: 0.87rem; margin-bottom: 14px; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--gray); }
.read-more { color: var(--saffron); font-weight: 700; }

/* ===================== CONTACT PAGE ===================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; padding: 80px 0; }
.contact-info { }
.contact-info h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--blue-deep); margin-bottom: 16px; }
.contact-info h2 em { color: var(--gold); font-style: italic; }
.contact-info > p { color: var(--gray); margin-bottom: 32px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; padding: 20px; background: var(--cream); border-radius: var(--radius); border: 2px solid var(--border); }
.contact-card-icon { font-size: 1.8rem; flex-shrink: 0; }
.contact-card-body h4 { font-family: var(--font-display); color: var(--blue-deep); font-size: 0.95rem; margin-bottom: 4px; }
.contact-card-body p, .contact-card-body a { color: var(--gray); font-size: 0.9rem; }
.contact-card-body a:hover { color: var(--saffron); }
.contact-form-wrap { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); border: 2px solid var(--border); }
.contact-form-wrap h3 { font-family: var(--font-display); color: var(--blue-deep); font-size: 1.4rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 0.87rem; color: var(--gray-dark); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border);
  border-radius: 8px; font-family: var(--font-sans); font-size: 0.92rem;
  color: var(--dark); transition: border-color var(--transition); background: white;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--blue-mid);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn { width: 100%; padding: 14px; }

/* PACKAGE DETAIL */
.pkg-detail { background: var(--cream); padding: 64px 0; }
.pkg-detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.pkg-detail-main { background: white; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.pkg-detail-main h2 { font-family: var(--font-display); color: var(--blue-deep); font-size: 1.6rem; margin-bottom: 16px; }
.pkg-main-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.pkg-main-img img { width: 100%; max-height: 360px; object-fit: cover; }
.itinerary-day { border-left: 3px solid var(--gold); padding: 16px 20px; margin-bottom: 16px; background: var(--cream); border-radius: 0 var(--radius) var(--radius) 0; }
.itinerary-day h4 { color: var(--blue-deep); font-family: var(--font-display); font-size: 1rem; margin-bottom: 6px; }
.itinerary-day p { color: var(--gray); font-size: 0.88rem; }
.pkg-sidebar { }
.pkg-price-card { background: var(--blue-deep); border-radius: var(--radius-lg); padding: 28px; color: white; position: sticky; top: 100px; }
.pkg-price-card h3 { font-family: var(--font-display); color: var(--gold-light); font-size: 1.1rem; margin-bottom: 16px; }
.price-display { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--gold-light); margin-bottom: 4px; }
.price-note { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.pkg-includes { margin: 20px 0; }
.pkg-includes li { display: flex; gap: 8px; align-items: center; font-size: 0.87rem; margin-bottom: 10px; color: rgba(255,255,255,0.8); }
.book-now-btn { width: 100%; padding: 14px; justify-content: center; }

/* DESTINATION DETAIL */
.dest-detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; padding: 64px 0; }
.dest-detail-main { background: white; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.dest-main-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.dest-main-img img { width: 100%; max-height: 400px; object-fit: cover; }
.dest-spots-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-top: 24px; }
.spot-card { border-radius: var(--radius); overflow: hidden; border: 2px solid var(--border); }
.spot-card img { width: 100%; height: 130px; object-fit: cover; }
.spot-card-name { padding: 10px 12px; font-family: var(--font-display); font-size: 0.85rem; color: var(--blue-deep); font-weight: 600; }
.dest-sidebar { }
.dest-info-card { background: var(--cream); border-radius: var(--radius-lg); padding: 24px; border: 2px solid var(--border); margin-bottom: 20px; }
.dest-info-card h4 { font-family: var(--font-display); color: var(--blue-deep); font-size: 1rem; margin-bottom: 14px; }
.dest-info-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.87rem; }
.dest-info-item:last-child { border-bottom: none; }
.dest-info-item span:first-child { color: var(--gray); font-weight: 600; }
.dest-info-item span:last-child { color: var(--blue-deep); font-weight: 700; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card.large { grid-column: 1 / 2; grid-row: 1 / 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner, .about-grid, .service-detail-inner, .tour-type-inner,
  .pkg-detail-layout, .dest-detail-layout, .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .why-badge { right: 10px; }
  .tour-type-block:nth-child(even) .tour-type-inner { direction: ltr; }
  .service-detail:nth-child(even) .service-detail-inner { direction: ltr; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-toggle { display: block; }
  /* main-nav mobile: handled by drawer JS — no styles needed here */
  .main-nav > ul { flex-direction: column; gap: 2px; }
  .main-nav > ul > li > a { padding: 12px 16px; border-radius: 8px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--cream); border-radius: 8px; margin: 4px 0 8px 16px; }
  .header-cta { display: none; }
  .site-header { position: sticky; top: 0; }
  .header-inner { position: relative; }
  .hero-carousel { height: 85vh; }
  .slide-content { padding: 0 24px; }
  .slide-content h1 { font-size: 1.8rem; }
  .booking-form { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card.large { grid-row: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-num { font-size: 2.2rem; }
  .packages-grid, .packages-all-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-full-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .strip-content { flex-direction: column; text-align: center; }
  .why-list { grid-template-columns: 1fr; }
  .dest-spots-grid { grid-template-columns: 1fr 1fr; }
  .pkg-detail-layout { grid-template-columns: 1fr; }
  .dest-detail-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-full-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .stations-grid { grid-template-columns: 1fr 1fr; }
  .carousel-btn { width: 40px; height: 40px; font-size: 1.2rem; }
}

/* ========================================
   UPDATES v2 — Logo, Fleet, Gallery Popup, Blog Detail
======================================== */

/* LOGO IMAGE */
.logo-img { height: 64px; width: auto; object-fit: contain; display: block; }
@media (max-width: 768px) { .logo-img { height: 50px; } }

/* ===================== IMAGE LIGHTBOX POPUP ===================== */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; display: flex; align-items: center; gap: 16px; }
.lightbox-img-wrap { position: relative; }
.lightbox-img-wrap img {
  max-width: 85vw; max-height: 85vh; object-fit: contain;
  border-radius: 8px; display: block;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}
.lightbox-close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.3);
  color: white; width: 46px; height: 46px; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease; z-index: 10000;
}
.lightbox-close:hover { background: var(--gold); color: var(--blue-deep); border-color: var(--gold); }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.3);
  color: white; width: 52px; height: 52px; border-radius: 50%;
  font-size: 1.6rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease; z-index: 10000;
}
.lightbox-nav:hover { background: var(--gold); color: var(--blue-deep); border-color: var(--gold); }
.lightbox-nav.lb-prev { left: 16px; }
.lightbox-nav.lb-next { right: 16px; }
.lightbox-caption {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.7); color: white; padding: 8px 22px;
  border-radius: 20px; font-size: 0.9rem; font-family: var(--font-sans); font-weight: 600;
  white-space: nowrap;
}
.lightbox-counter {
  position: fixed; top: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 0.85rem; font-family: var(--font-sans);
}
/* Make gallery items cursor pointer */
.gal-item, .gallery-item:not(.view-more) { cursor: zoom-in; }

/* ===================== VIDEO POPUP ===================== */
.video-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.93);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.video-overlay.active { opacity: 1; visibility: visible; }
.video-popup-inner {
  position: relative; width: 90vw; max-width: 900px;
}
.video-popup-inner iframe {
  width: 100%; aspect-ratio: 16/9; border-radius: 10px; border: none;
  display: block;
}
.video-popup-close {
  position: absolute; top: -50px; right: 0;
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.3);
  color: white; width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.video-popup-close:hover { background: var(--gold); color: var(--blue-deep); }

/* ===================== FLEET v2 ===================== */
.fleet-section { background: var(--cream); }
.fleet-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fleet-card-v2 {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  border: 2px solid var(--border); transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.fleet-card-v2:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.fleet-card-v2-img { height: 200px; overflow: hidden; position: relative; }
.fleet-card-v2-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.fleet-card-v2:hover .fleet-card-v2-img img { transform: scale(1.06); }
.fleet-card-v2-body { padding: 0; }
.fleet-card-v2-name {
  background: var(--blue-deep); color: white; padding: 12px 18px;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.03em;
}
.fleet-card-v2-features { padding: 14px 18px 18px; }
.fleet-feature-row {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 0; border-bottom: 1px solid var(--border);
  font-size: 0.85rem; color: var(--gray-dark); font-weight: 600;
}
.fleet-feature-row:last-child { border-bottom: none; }
.fleet-feature-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; width: 20px; text-align: center; }
.fleet-card-v2-footer { padding: 0 18px 16px; }
.fleet-book-btn { width: 100%; justify-content: center; padding: 10px 0; font-size: 0.88rem; }

@media (max-width: 1024px) { .fleet-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .fleet-grid-v2 { grid-template-columns: 1fr; } }

/* ===================== DESTINATIONS — LARGER GRID ===================== */
.dest-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 320px 320px;
  gap: 20px;
}
.dest-card-v2 {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  display: block; cursor: pointer;
}
.dest-card-v2.span2 { grid-column: 1 / 3; }
.dest-card-v2 img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.dest-card-v2:hover img { transform: scale(1.06); }
.dest-card-v2-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,60,0.88) 0%, rgba(10,25,60,0.25) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; transition: all 0.3s ease;
}
.dest-card-v2:hover .dest-card-v2-overlay { background: linear-gradient(to top, rgba(10,25,60,0.92) 0%, rgba(10,25,60,0.4) 60%, transparent 100%); }
.dest-card-v2-overlay h3 { font-family: var(--font-display); font-size: 1.6rem; color: white; margin-bottom: 6px; font-weight: 700; }
.dest-card-v2-overlay p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 14px; }
.dest-card-v2-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--blue-deep);
  padding: 9px 20px; border-radius: 8px; font-weight: 700; font-size: 0.85rem;
  transform: translateY(8px); opacity: 0; transition: all 0.3s ease;
}
.dest-card-v2:hover .dest-card-v2-btn { transform: translateY(0); opacity: 1; }

@media (max-width: 768px) {
  .dest-grid-v2 { grid-template-columns: 1fr; grid-template-rows: auto; }
  .dest-card-v2.span2 { grid-column: 1; }
  .dest-card-v2 { height: 260px; }
  .dest-card-v2-btn { opacity: 1; transform: translateY(0); }
}

/* ===================== BLOG DETAIL PAGE ===================== */
.blog-detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; padding: 64px 0; align-items: start; }
.blog-detail-main { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.blog-hero-img { width: 100%; height: 420px; object-fit: cover; display: block; }
.blog-detail-body { padding: 36px; }
.blog-detail-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.blog-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.83rem; color: var(--gray); font-weight: 600; }
.blog-detail-title { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--blue-deep); margin-bottom: 20px; line-height: 1.3; }
.blog-detail-content p { color: var(--gray-dark); line-height: 1.85; margin-bottom: 18px; font-size: 0.97rem; }
.blog-detail-content h2 { font-family: var(--font-display); color: var(--blue-deep); font-size: 1.3rem; margin: 28px 0 12px; }
.blog-detail-content h3 { font-family: var(--font-display); color: var(--blue-mid); font-size: 1.1rem; margin: 22px 0 10px; }
.blog-detail-content ul { padding-left: 20px; margin-bottom: 18px; }
.blog-detail-content ul li { color: var(--gray-dark); margin-bottom: 8px; font-size: 0.95rem; line-height: 1.6; }
.blog-quote {
  border-left: 4px solid var(--gold); background: var(--cream);
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0; font-style: italic; color: var(--blue-deep);
  font-family: var(--font-body); font-size: 1.05rem;
}
.blog-tags-section { margin-top: 32px; padding-top: 24px; border-top: 2px solid var(--border); }
.blog-tags-section h4 { font-family: var(--font-display); color: var(--blue-deep); font-size: 0.9rem; margin-bottom: 12px; }
.blog-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-tag {
  background: var(--cream); border: 1px solid var(--border); border-radius: 20px;
  padding: 5px 14px; font-size: 0.8rem; color: var(--blue-deep); font-weight: 600;
  transition: all 0.2s ease; cursor: pointer;
}
.blog-tag:hover { background: var(--gold); color: var(--blue-deep); border-color: var(--gold); }
.blog-share { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.blog-share span { font-weight: 700; font-size: 0.9rem; color: var(--gray-dark); }
.share-btn { padding: 8px 16px; border-radius: 8px; font-size: 0.82rem; font-weight: 700; border: none; cursor: pointer; transition: all 0.2s ease; }
.share-fb { background: #1877f2; color: white; }
.share-wa { background: #25d366; color: white; }
.share-tw { background: #1da1f2; color: white; }
/* Blog sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.sidebar-widget { background: white; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); border: 2px solid var(--border); }
.sidebar-widget h4 { font-family: var(--font-display); color: var(--blue-deep); font-size: 1rem; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.category-list li { margin-bottom: 10px; }
.category-list li a { display: flex; justify-content: space-between; align-items: center; color: var(--gray-dark); font-size: 0.87rem; font-weight: 600; padding: 6px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.category-list li a:hover { color: var(--saffron); }
.cat-count { background: var(--cream); border: 1px solid var(--border); border-radius: 12px; padding: 2px 8px; font-size: 0.75rem; }
.recent-post { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.recent-post img { width: 64px; height: 54px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.recent-post-text h5 { font-family: var(--font-display); font-size: 0.82rem; color: var(--blue-deep); line-height: 1.3; margin-bottom: 4px; }
.recent-post-text span { font-size: 0.75rem; color: var(--gray); }
.sidebar-tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.sidebar-cta { background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); color: white; text-align: center; }
.sidebar-cta h4 { color: var(--gold-light); border-bottom-color: var(--gold); }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 0.87rem; margin-bottom: 16px; }
@media (max-width: 1024px) { .blog-detail-layout { grid-template-columns: 1fr; } .blog-sidebar { position: static; } }

/* ========================================
   V3 UPDATES
======================================== */

/* ─── DESKTOP NAV (replaces .main-nav > ul) ─── */
.desktop-nav {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto; list-style: none;
}
.desktop-nav > li { position: relative; }
.desktop-nav > li > a {
  padding: 10px 13px; font-weight: 600; font-size: 0.85rem;
  color: var(--gray-dark); border-radius: 6px; display: block;
  transition: all var(--transition); font-family: var(--font-sans);
}
.desktop-nav > li > a:hover { color: var(--blue-deep); background: var(--cream); }
.desktop-nav .dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border-radius: 10px; min-width: 210px;
  box-shadow: 0 8px 32px rgba(26,58,110,0.18);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--transition); z-index: 100;
  border: 1px solid var(--border); overflow: hidden; list-style: none;
}
.desktop-nav .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.desktop-nav .dropdown li a {
  display: block; padding: 10px 18px; font-size: 0.87rem;
  font-weight: 600; color: var(--gray-dark);
  transition: all var(--transition); border-left: 3px solid transparent;
}
.desktop-nav .dropdown li a:hover { background: var(--cream); color: var(--blue-deep); border-left-color: var(--gold); }

/* ─── MOBILE DRAWER NAV ─── */
/* .main-nav wraps the mobile drawer — must NOT be display:none or fixed children break */
.main-nav {
  display: block;
  position: static;
  width: 0; height: 0;
  overflow: visible;
  margin: 0; padding: 0;
}

/* Hamburger button */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; margin-left: auto; z-index: 2000;
}
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 26px; }
.hamburger span {
  display: block; height: 2.5px; background: var(--blue-deep);
  border-radius: 2px; transition: all 0.35s ease; transform-origin: center;
}
.nav-toggle.open .hamburger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .hamburger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Overlay */
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 99998; opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.nav-overlay.active { opacity: 1 !important; visibility: visible !important; }

/* Drawer */
.nav-drawer {
  position: fixed; top: 0; left: -320px; width: 300px; height: 100dvh;
  background: white; z-index: 99999; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: left 0.32s ease;
  box-shadow: 4px 0 32px rgba(0,0,0,0.25);
  display: flex; flex-direction: column;
  will-change: left;
}
.nav-drawer.open { left: 0 !important; }

.nav-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: var(--blue-deep); flex-shrink: 0;
}
.nav-close {
  background: rgba(255,255,255,0.15); border: none; color: white;
  width: 34px; height: 34px; border-radius: 50%; font-size: 1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.nav-close:hover { background: rgba(255,255,255,0.3); }

/* Nav list */
.nav-list { list-style: none; padding: 12px 0; flex: 1; }
.nav-list > li { border-bottom: 1px solid var(--border); }
.nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; font-weight: 700; font-size: 0.92rem;
  color: var(--blue-deep); text-decoration: none; width: 100%;
  background: none; border: none; text-align: left; cursor: pointer;
  font-family: var(--font-sans); transition: background 0.2s;
}
.nav-link:hover { background: var(--cream); color: var(--saffron); }
.acc-icon {
  font-size: 1.1rem; font-weight: 700; color: var(--gold);
  transition: transform 0.3s ease; display: inline-block;
}
.has-dropdown.open > .nav-accordion-btn .acc-icon { transform: rotate(45deg); }

/* Accordion sub-menu */
.nav-sub {
  list-style: none; background: var(--cream);
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.nav-sub.open { max-height: 400px; }
.nav-sub li a {
  display: block; padding: 11px 20px 11px 36px;
  font-size: 0.87rem; font-weight: 600; color: var(--gray-dark);
  border-left: 3px solid transparent; transition: all 0.2s;
}
.nav-sub li a:hover { color: var(--blue-deep); border-left-color: var(--gold); background: rgba(201,162,39,0.08); }

/* ─── GOOGLE TRANSLATE ─── */
.translate-wrap { position: relative; }
.translate-btn {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9); padding: 5px 12px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 700; cursor: pointer;
  transition: all 0.2s; font-family: var(--font-sans); white-space: nowrap;
}
.translate-btn:hover { background: rgba(255,255,255,0.2); }
.translate-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: white; border-radius: 10px; padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18); min-width: 200px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all 0.25s ease; z-index: 9999;
  border: 1px solid var(--border);
}
.translate-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
/* Override Google Translate default ugly styles */
.goog-te-gadget { font-family: var(--font-sans) !important; font-size: 0.85rem !important; }
.goog-te-gadget-simple { border: 2px solid var(--border) !important; border-radius: 8px !important; padding: 6px 10px !important; background: white !important; }
.goog-te-gadget-simple span { color: var(--blue-deep) !important; font-weight: 600 !important; }
.goog-te-menu-value span { color: var(--blue-deep) !important; }
.goog-te-gadget img { display: none !important; }

/* ─── DESTINATION MOSAIC ─── */
/* ─── DESTINATIONS: EVEN 2x2 GRID ─── */
/* ─── DESTINATIONS: 4-CARD GRID ─── */
.dest-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 14px;
  min-height: 574px;
  margin-bottom: 0;
}
.dest-mosaic-large {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  display: block; grid-column: 1; grid-row: 1 / 3;
  min-height: 574px;
}
.dest-mosaic-col { display: contents; }
.dest-mosaic-small {
  position: relative; overflow: hidden; border-radius: var(--radius);
  display: block; min-height: 140px;
}
.dest-mosaic-img { position: absolute; inset: 0; }
.dest-mosaic-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.5s ease; display: block;
}
.dest-mosaic-large:hover .dest-mosaic-img img,
.dest-mosaic-small:hover .dest-mosaic-img img { transform: scale(1.06); }
.dest-mosaic-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(10,25,60,0.88) 0%, rgba(10,25,60,0.15) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
}
.dest-mosaic-tag {
  display: inline-block; background: var(--gold); color: var(--blue-deep);
  font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 12px;
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; width: fit-content;
}
.dest-mosaic-overlay h3 {
  font-family: var(--font-display); color: white; margin-bottom: 5px;
  font-weight: 700; line-height: 1.2; font-size: 1.2rem;
}
.dest-mosaic-large .dest-mosaic-overlay h3 { font-size: 1.5rem; }
.dest-mosaic-overlay p { color: rgba(255,255,255,0.8); font-size: 0.78rem; margin-bottom: 12px; }
.dest-mosaic-btn {
  display: inline-flex; align-items: center;
  background: var(--gold); color: var(--blue-deep);
  padding: 7px 15px; border-radius: 7px; font-weight: 700; font-size: 0.78rem;
  opacity: 0; transform: translateY(6px); transition: all 0.28s ease; width: fit-content;
}
.dest-mosaic-large:hover .dest-mosaic-btn,
.dest-mosaic-small:hover .dest-mosaic-btn { transform: translateY(0); opacity: 1; }
/* CENTER BTN — force clear below mosaic grid */
.destinations-section .center-btn { margin-top: 36px !important; display: block; clear: both; position: relative; }
@media (max-width: 860px) {
  .dest-mosaic { grid-template-columns: 1fr; grid-template-rows: 220px 200px 200px 200px; gap: 12px; }
  .dest-mosaic-large { grid-column: 1; grid-row: 1; }
  .dest-mosaic-btn { opacity: 1; transform: translateY(0); }
}
/* old mosaic continuation below - ignore */
.dest-mosaic-small {
  position: relative; overflow: hidden; border-radius: var(--radius);
  display: block;
}
.dest-mosaic-img { width: 100%; height: 100%; }
.dest-mosaic-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.6s ease; display: block;
}
.dest-mosaic-large:hover .dest-mosaic-img img,
.dest-mosaic-small:hover .dest-mosaic-img img { transform: scale(1.06); }
.dest-mosaic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,60,0.88) 0%, rgba(10,25,60,0.2) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}
.dest-mosaic-tag {
  display: inline-block; background: var(--gold); color: var(--blue-deep);
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 12px;
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; width: fit-content;
}
.dest-mosaic-overlay h3 {
  font-family: var(--font-display); color: white; margin-bottom: 5px;
  font-weight: 700; line-height: 1.2; font-size: 1.25rem;
}
.dest-mosaic-large .dest-mosaic-overlay h3 { font-size: 1.6rem; }
.dest-mosaic-overlay p { color: rgba(255,255,255,0.8); font-size: 0.8rem; margin-bottom: 12px; }
.dest-mosaic-btn {
  display: inline-flex; align-items: center;
  background: var(--gold); color: var(--blue-deep);
  padding: 7px 16px; border-radius: 7px; font-weight: 700; font-size: 0.8rem;
  transform: translateY(6px); opacity: 0; transition: all 0.3s ease; width: fit-content;
}
.dest-mosaic-large:hover .dest-mosaic-btn,
.dest-mosaic-small:hover .dest-mosaic-btn { transform: translateY(0); opacity: 1; }
@media (max-width: 768px) {
  .dest-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; gap: 12px; }
  .dest-mosaic-large { grid-column: 1; grid-row: auto; height: 240px; }
  .dest-mosaic-col { display: contents; }
  .dest-mosaic-small { height: 200px; }
  .dest-mosaic-btn { opacity: 1; transform: translateY(0); }
}

/* ─── OWL CAROUSEL CUSTOM THEME ─── */
.owl-theme .owl-nav button {
  background: white !important; color: var(--blue-deep) !important;
  width: 44px; height: 44px; border-radius: 50% !important;
  font-size: 1.2rem !important; border: 2px solid var(--border) !important;
  box-shadow: var(--shadow) !important; transition: all 0.2s !important;
  display: flex !important; align-items: center; justify-content: center;
}
.owl-theme .owl-nav button:hover {
  background: var(--gold) !important; color: var(--blue-deep) !important;
  border-color: var(--gold) !important;
}
.owl-theme .owl-dots .owl-dot span {
  background: var(--border) !important; width: 8px; height: 8px;
  transition: all 0.2s !important;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span { background: var(--gold) !important; width: 22px; border-radius: 4px; }
.stations-owl .owl-item { padding: 0 8px; }
.packages-owl .owl-item { padding: 0 10px; }
.packages-owl { margin: 0 -10px; }

/* ─── FLEET BOOKING MODAL ─── */
.fleet-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
  backdrop-filter: blur(4px); padding: 20px;
}
.fleet-modal-overlay.active { opacity: 1; visibility: visible; }
.fleet-modal {
  background: white; border-radius: var(--radius-lg); width: 100%;
  max-width: 620px; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3); position: relative;
  animation: modalIn 0.35s ease;
}
@keyframes modalIn { from { transform: scale(0.92) translateY(20px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.fleet-modal-close {
  position: absolute; top: 14px; right: 16px;
  background: var(--gray-light); border: none; width: 34px; height: 34px;
  border-radius: 50%; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; z-index: 10;
}
.fleet-modal-close:hover { background: #fee2e2; color: #dc2626; }
.fleet-modal-header {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  padding: 28px 28px 20px; color: white; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.fleet-modal-header h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 4px; }
.fleet-modal-header p { color: rgba(255,255,255,0.75); font-size: 0.87rem; }
.fleet-modal-form { padding: 24px 28px 28px; }
.fm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fm-group { margin-bottom: 14px; }
.fm-group label { display: block; font-weight: 700; font-size: 0.82rem; color: var(--gray-dark); margin-bottom: 5px; }
.fm-group input, .fm-group textarea, .fm-group select {
  width: 100%; padding: 10px 14px; border: 2px solid var(--border);
  border-radius: 8px; font-family: var(--font-sans); font-size: 0.9rem;
  transition: border-color 0.2s;
}
.fm-group input:focus, .fm-group textarea:focus { outline: none; border-color: var(--blue-mid); }
.fm-group textarea { resize: vertical; min-height: 80px; }
@media (max-width: 520px) { .fm-row { grid-template-columns: 1fr; } }

/* ─── CALL FLOAT BUTTON ─── */
.call-float {
  position: fixed; bottom: 90px; right: 24px; z-index: 999;
  background: var(--blue-deep); width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(26,58,110,0.45); transition: all 0.3s;
  animation: callPulse 2.5s infinite;
}
.call-float:hover { transform: scale(1.1); }
@keyframes callPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(26,58,110,0.45); }
  50% { box-shadow: 0 6px 32px rgba(26,58,110,0.7), 0 0 0 10px rgba(26,58,110,0.12); }
}

/* ─── FOOTER SOCIAL REAL ICONS ─── */
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; color: white;
}
.social-icon svg { width: 20px; height: 20px; flex-shrink: 0; }
.social-fb { background: #1877f2; }
.social-fb:hover { background: #1557b0; transform: translateY(-3px); }
.social-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-ig:hover { opacity: 0.85; transform: translateY(-3px); }
.social-yt { background: #ff0000; }
.social-yt:hover { background: #cc0000; transform: translateY(-3px); }
.social-wa { background: #25d366; }
.social-wa:hover { background: #1ebe5c; transform: translateY(-3px); }

/* ─── FOOTER BOTTOM ─── */
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom-inner a { color: var(--gold-light); transition: color 0.2s; }
.footer-bottom-inner a:hover { color: white; }

/* ─── PAYMENT PAGE ─── */
.payment-section { padding: 60px 0; background: var(--cream); }
.payment-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.payment-form-card { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.payment-form-card h2 { font-family: var(--font-display); color: var(--blue-deep); font-size: 1.6rem; margin-bottom: 6px; }
.payment-form-card > p { color: var(--gray); margin-bottom: 28px; font-size: 0.9rem; }
.payment-amount-display {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  border-radius: var(--radius); padding: 20px 24px; color: white;
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px;
}
.payment-amount-display .amount-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.payment-amount-display .amount-val { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-light); }
.payment-methods { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.payment-method-btn {
  flex: 1; min-width: 80px; padding: 10px 8px; border: 2px solid var(--border);
  border-radius: 10px; background: white; cursor: pointer; text-align: center;
  font-size: 0.8rem; font-weight: 700; color: var(--gray-dark);
  transition: all 0.2s; font-family: var(--font-sans);
}
.payment-method-btn:hover, .payment-method-btn.active {
  border-color: var(--gold); background: #fffbf0; color: var(--blue-deep);
}
.payment-method-btn .pm-icon { font-size: 1.4rem; display: block; margin-bottom: 4px; }
.payment-info-card { background: white; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 2px solid var(--border); }
.payment-info-card h4 { font-family: var(--font-display); color: var(--blue-deep); font-size: 1rem; margin-bottom: 18px; }
.payment-secure { display: flex; align-items: center; gap: 8px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px; padding: 12px 16px; margin-bottom: 16px; font-size: 0.85rem; color: #15803d; font-weight: 600; }
.payment-info-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.87rem; }
.payment-info-row:last-child { border-bottom: none; font-weight: 700; color: var(--blue-deep); font-size: 0.95rem; }
.upi-apps { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.upi-app { text-align: center; }
.upi-app-icon { width: 52px; height: 52px; border-radius: 12px; margin: 0 auto 6px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; border: 2px solid var(--border); background: white; }
.upi-app span { font-size: 0.72rem; color: var(--gray); font-weight: 600; display: block; }
@media (max-width: 1024px) { .payment-layout { grid-template-columns: 1fr; } }

/* ─── RESPONSIVE OVERRIDES ─── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .desktop-nav { display: none; }
  .header-cta { display: none; }
}
/* desktop: drawer stays off-screen by default — JS controls it */

/* ========================================
   V4 FIXES
======================================== */

/* ─── LANG SELECT (replaces translate dropdown) ─── */
.lang-select {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9); padding: 5px 10px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 700; cursor: pointer;
  font-family: var(--font-sans); appearance: none; -webkit-appearance: none;
  outline: none; transition: background 0.2s;
}
.lang-select:hover { background: rgba(255,255,255,0.22); }
.lang-select option { background: var(--blue-deep); color: white; }

/* ─── FLEET MODAL — COMPACT ─── */
.fleet-modal { max-width: 520px; max-height: 85vh; overflow-y: auto; }
.fleet-modal::-webkit-scrollbar { width: 5px; }
.fleet-modal::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.fleet-modal-form { padding: 18px 22px 22px; }
.fm-group { margin-bottom: 12px; }
.fm-group label { font-size: 0.78rem; margin-bottom: 3px; }
.fm-group input, .fm-group textarea, .fm-group select { padding: 9px 12px; font-size: 0.87rem; }
.fm-group textarea { min-height: 64px; }
.fleet-modal-header { padding: 20px 22px 14px; }
.fleet-modal-header h3 { font-size: 1.15rem; }

/* ─── OWL NAV ARROWS: LEFT & RIGHT SIDES ─── */
.owl-carousel { position: relative; }
.owl-carousel .owl-nav { position: absolute; top: 50%; transform: translateY(-50%); width: calc(100% + 60px); left: -30px; display: flex; justify-content: space-between; pointer-events: none; margin: 0; }
.owl-carousel .owl-nav button { pointer-events: all; margin: 0 !important; width: 42px !important; height: 42px !important; border-radius: 50% !important; background: white !important; box-shadow: 0 3px 14px rgba(0,0,0,0.15) !important; border: 2px solid var(--border) !important; font-size: 1.3rem !important; line-height: 1 !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.owl-carousel .owl-nav button:hover { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--blue-deep) !important; }
.owl-carousel .owl-dots { margin-top: 20px; }
/* Ensure carousel wrapper doesn't overflow */
.stations-section .container, .packages-section .container { overflow: visible; }

/* ─── DESTINATIONS MOSAIC: FIXED HEIGHT ─── */
.dest-mosaic { height: 440px !important; }
.dest-mosaic-img { overflow: hidden; width: 100%; height: 100%; }
.dest-mosaic-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.dest-mosaic-large { overflow: hidden; }
.dest-mosaic-small { overflow: hidden; }
/* Fix fleet section clearing */
.fleet-section { clear: both; position: relative; z-index: 1; }
.destinations-section { position: relative; z-index: 1; }

/* ─── FEATURED BLOGS ─── */
.featured-blogs-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; }
.featured-blog-main { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 2px solid var(--border); display: block; transition: all 0.3s; color: inherit; }
.featured-blog-main:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.fb-img { height: 240px; overflow: hidden; }
.fb-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.featured-blog-main:hover .fb-img img { transform: scale(1.05); }
.fb-body { padding: 22px; }
.fb-cat { font-size: 0.72rem; font-weight: 700; color: var(--saffron); text-transform: uppercase; letter-spacing: 0.08em; }
.fb-body h3 { font-family: var(--font-display); color: var(--blue-deep); font-size: 1.05rem; margin: 8px 0 10px; line-height: 1.35; }
.fb-body > p { color: var(--gray); font-size: 0.87rem; margin-bottom: 14px; line-height: 1.6; }
.fb-meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--gray); }
.fb-read { color: var(--saffron); font-weight: 700; }
.featured-blogs-list { display: flex; flex-direction: column; gap: 14px; }
.blog-list-item { display: flex; gap: 14px; background: white; border-radius: var(--radius); overflow: hidden; border: 2px solid var(--border); transition: all 0.25s; align-items: center; }
.blog-list-item:hover { border-color: var(--gold); transform: translateX(4px); }
.bli-img { width: 90px; height: 72px; flex-shrink: 0; overflow: hidden; }
.bli-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bli-text { padding: 10px 14px 10px 0; flex: 1; }
.bli-text h4 { font-family: var(--font-display); color: var(--blue-deep); font-size: 0.82rem; line-height: 1.35; margin: 4px 0 5px; }
.fb-date { font-size: 0.75rem; color: var(--gray); }
@media (max-width: 768px) {
  .featured-blogs-grid { grid-template-columns: 1fr; }
  .dest-mosaic { height: auto !important; }
}

/* ─── OUR VEHICLES PAGE ─── */
.vehicles-intro { padding: 60px 0; background: white; }
.vehicles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; padding: 60px 0; background: var(--cream); }
.vehicle-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 2px solid var(--border); transition: all 0.3s; }
.vehicle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.vehicle-card-img { position: relative; height: 220px; overflow: hidden; }
.vehicle-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.06); }
.vehicle-badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--blue-deep); padding: 4px 12px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.vehicle-card-body { padding: 20px 22px 22px; }
.vehicle-name { font-family: var(--font-display); color: var(--blue-deep); font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.vehicle-type { font-size: 0.78rem; color: var(--saffron); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.vehicle-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.spec-item { background: var(--cream); border-radius: 8px; padding: 8px 10px; }
.spec-label { font-size: 0.7rem; color: var(--gray); font-weight: 600; display: block; margin-bottom: 2px; }
.spec-val { font-size: 0.85rem; color: var(--blue-deep); font-weight: 700; }
.vehicle-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.vf-item { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: var(--gray-dark); font-weight: 600; }
.vf-icon { color: var(--gold); font-size: 0.9rem; width: 18px; }
.vehicle-card-footer { display: flex; gap: 10px; }
.vehicle-card-footer .btn { flex: 1; justify-content: center; font-size: 0.85rem; padding: 10px 12px; }
.wheelchair-section { padding: 60px 0; background: white; }
.wheelchair-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 40px; }
.wheelchair-img-col { border-radius: var(--radius-lg); overflow: hidden; }
.wheelchair-img-col img { width: 100%; object-fit: cover; }
.wheelchair-features { display: grid; gap: 14px; margin-top: 20px; }
.wf-card { display: flex; gap: 14px; align-items: flex-start; background: var(--cream); border-radius: var(--radius); padding: 16px; border: 2px solid var(--border); }
.wf-icon { font-size: 1.6rem; flex-shrink: 0; }
.wf-body h5 { font-family: var(--font-display); color: var(--blue-deep); font-size: 0.9rem; margin-bottom: 4px; }
.wf-body p { color: var(--gray); font-size: 0.83rem; margin: 0; }
@media (max-width: 768px) { .wheelchair-grid { grid-template-columns: 1fr; } .vehicle-specs { grid-template-columns: 1fr; } }


/* ========================================
   V5 FIXES
======================================== */

/* nav-drawer v5 dupe removed */
/* nav-overlay v5 dupe removed */

/* ─── DESTINATIONS: CENTER-BTN MARGIN FIX v5 ─── */
.destinations-section .center-btn { margin-top: 36px !important; display: block; }

/* ─── VEHICLES PAGE: PROPER GRID ─── */
.vehicles-grid { background: var(--cream); padding: 60px 0; }
.vehicles-inner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1100px) { .vehicles-inner-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .vehicles-inner-grid { grid-template-columns: 1fr; } }

/* ─── BLOG DETAIL RELATED ARTICLES: RESPONSIVE ─── */
.related-blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .related-blogs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .related-blogs-grid { grid-template-columns: 1fr; } }

/* ─── PAYMENT PAGE RESPONSIVE ─── */
.payment-two-col {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 900px) {
  .payment-two-col { grid-template-columns: 1fr; }
  .payment-two-col > div:last-child { position: static !important; }
}
@media (max-width: 600px) {
  .pay-tabs .ti { font-size: 1.1rem; }
  .pay-tabs { font-size: 0.78rem; }
}

/* ─── DESTINATION DETAIL: PACKAGES SECTION ─── */
.dest-related-pkgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .dest-related-pkgs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .dest-related-pkgs { grid-template-columns: 1fr; } }

/* ─── GOOGLE TRANSLATE: IMMEDIATE APPLY ─── */
.lang-select { cursor: pointer; }

/* ─── FEATURED BLOGS: RESPONSIVE ─── */
@media (max-width: 900px) {
  .featured-blogs-grid { grid-template-columns: 1fr; }
  .featured-blog-main .fb-img { height: 200px; }
}
@media (max-width: 580px) {
  .bli-img { width: 72px; height: 60px; }
  .bli-text h4 { font-size: 0.78rem; }
}

/* ─── PAYMENT SIDEBAR ─── */
.payment-sidebar {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 18px;
}
@media (max-width: 900px) {
  .payment-sidebar { position: static; }
}

/* ─── CENTER BTN DEFINITIVE FIX ─── */
.destinations-section .center-btn { 
  margin-top: 40px !important;
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
}
.footer-logo-wrap{width:100px}
/* ─── TOAST NOTIFICATION ─── */
.toast-container { position: fixed; top: 90px; right: 20px; z-index: 99999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { background: white; border-radius: 10px; padding: 14px 20px; box-shadow: 0 8px 32px rgba(0,0,0,.18); font-weight: 600; font-size: 0.9rem; color: var(--dark); min-width: 280px; max-width: 360px; display: flex; align-items: flex-start; gap: 10px; pointer-events: all; }
.toast.success { border-left: 4px solid #22c55e; }
.toast.error   { border-left: 4px solid #ef4444; }
.toast.info    { border-left: 4px solid var(--gold); }
/* Upload area hover state */
.upload-area { border: 2px dashed var(--border); border-radius: 10px; padding: 28px 16px; text-align: center; cursor: pointer; background: var(--cream); transition: all .2s; position: relative; overflow: hidden; }
.upload-area:hover { border-color: var(--gold); background: #fffbf0; }
.upload-area input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; z-index: 2; }

/* ─── COMPACT DESKTOP NAV FIX ─── */
.desktop-nav > li > a {
  font-size: 0.82rem !important;
  padding: 7px 9px !important;
  font-weight: 600;
}
.desktop-nav > li > a i.fa-chevron-down {
  margin-left: 2px;
  vertical-align: middle;
}
.desktop-nav .dropdown {
  min-width: 190px;
}
.desktop-nav .dropdown li a {
  font-size: 0.8rem;
  padding: 9px 14px;
}
.header-cta {
  font-size: 0.82rem !important;
  padding: 8px 14px !important;
  white-space: nowrap;
}

/* ============================================================
   CKEDITOR CONTENT STYLES — for Destination & Package detail pages
   ============================================================ */
.ck-content h1,.ck-content h2,.ck-content h3,.ck-content h4,.ck-content h5,.ck-content h6,
.cms-content h1,.cms-content h2,.cms-content h3,.cms-content h4,.cms-content h5,.cms-content h6 {
  font-family: var(--font-display, 'Cinzel', serif);
  color: var(--blue-deep, #1a3a6e);
  margin: 1.2em 0 .5em;
  line-height: 1.3;
}
.ck-content h1,.cms-content h1{font-size:1.8rem;}
.ck-content h2,.cms-content h2{font-size:1.4rem;}
.ck-content h3,.cms-content h3{font-size:1.15rem;}
.ck-content h4,.cms-content h4{font-size:1rem;}
.ck-content p,.cms-content p{color:var(--gray,#555);line-height:1.75;margin-bottom:.9em;font-size:.93rem;}
.ck-content ul,.cms-content ul,.ck-content ol,.cms-content ol{padding-left:1.6em;margin-bottom:.9em;color:var(--gray,#555);}
.ck-content ul,.cms-content ul{list-style:disc;}
.ck-content ol,.cms-content ol{list-style:decimal;}
.ck-content li,.cms-content li{margin-bottom:.35em;line-height:1.65;font-size:.93rem;}
.ck-content blockquote,.cms-content blockquote{
  border-left:4px solid var(--gold,#c9a227);
  background:var(--cream,#fffbf0);
  padding:14px 18px;
  border-radius:0 var(--radius,8px) var(--radius,8px) 0;
  margin:1.2em 0;
  font-style:italic;
  color:var(--blue-deep,#1a3a6e);
}
.ck-content blockquote p,.cms-content blockquote p{margin:0;font-size:.92rem;}
.ck-content strong,.cms-content strong{font-weight:700;color:var(--blue-deep,#1a3a6e);}
.ck-content em,.cms-content em{font-style:italic;color:var(--saffron,#e07b1a);}
.ck-content a,.cms-content a{color:var(--blue-mid,#234896);text-decoration:underline;}
.ck-content a:hover,.cms-content a:hover{color:var(--gold,#c9a227);}
.ck-content img,.cms-content img{max-width:100%;border-radius:var(--radius,8px);margin:10px 0;display:block;}
.ck-content figure,.cms-content figure{margin:1.2em 0;}
.ck-content figure.image,.cms-content figure.image{text-align:center;}
.ck-content figure.image img,.cms-content figure.image img{display:inline-block;border-radius:var(--radius,8px);max-width:100%;}
.ck-content figcaption,.cms-content figcaption{font-size:.78rem;color:var(--muted,#64748b);text-align:center;margin-top:5px;font-style:italic;}
.ck-content figure.table,.cms-content figure.table{overflow-x:auto;margin:1.2em 0;}
.ck-content table,.cms-content table{width:100%;border-collapse:collapse;font-size:.88rem;}
.ck-content table th,.cms-content table th{background:var(--blue-deep,#1a3a6e);color:white;padding:10px 13px;text-align:left;font-weight:600;font-size:.82rem;}
.ck-content table td,.cms-content table td{padding:9px 13px;border-bottom:1px solid var(--border,#e2e8f0);color:var(--gray,#555);}
.ck-content table tr:hover td,.cms-content table tr:hover td{background:#f8fafc;}
.ck-content table tr:last-child td,.cms-content table tr:last-child td{border-bottom:none;}
.ck-content hr,.cms-content hr{border:none;border-top:2px solid var(--border,#e2e8f0);margin:1.5em 0;}
.ck-content .media,.cms-content .media{margin:1.2em 0;}
.ck-content .media iframe,.cms-content .media iframe{width:100%;border-radius:var(--radius,8px);aspect-ratio:16/9;border:none;}
/* Highlight / marker */
.ck-content mark,.cms-content mark{background:rgba(201,162,39,.25);color:inherit;border-radius:3px;padding:1px 4px;}
/* Code */
.ck-content code,.cms-content code{background:#f1f5f9;border-radius:4px;padding:2px 6px;font-family:monospace;font-size:.86em;color:var(--blue-deep,#1a3a6e);}
.ck-content pre,.cms-content pre{background:#1e293b;color:#e2e8f0;border-radius:var(--radius,8px);padding:16px;overflow-x:auto;font-size:.84rem;line-height:1.6;}
