/* ============================================
   7SKY TRAVEL WORLD — Premium Theme
   Navy (#1a1f3d) + Gold (#c9a84c) Palette
   ============================================ */

/* ===== Variables ===== */
:root {
  --navy: #1a1f3d;
  --navy-light: #252b50;
  --navy-dark: #0e1024;
  --gold: #c9a84c;
  --gold-light: #e2c675;
  --gold-dark: #a8872e;
  --card-bg: #ffffff;
  --bg: #fcfcfc;
  --bg-secondary: #f0f1f6;
  --text: #1a1f3d;
  --text-muted: #5a6070;
  --border: #dfe1e8;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-cursive: 'Dancing Script', cursive;
}

/* ===== Reset ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.relative-z { position: relative; z-index: 10; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-white-muted { color: rgba(255,255,255,0.7); }

/* ===== Backgrounds ===== */
.bg-secondary {
  background: var(--bg-secondary);
  position: relative;
}

.section-padding {
  padding: 100px 0;
  position: relative;
}

/* Gold line separator between sections */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  gap: 16px;
}
.section-divider::before,
.section-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  max-width: 200px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.section-divider-icon {
  color: var(--gold);
  font-size: 18px;
  opacity: 0.7;
}

/* ===== Animations ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 24px 6px rgba(37,211,102,0.18); }
}
@keyframes goldPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-float { animation: float 3s ease-in-out infinite; }

/* ===== Patterns ===== */
.dots-pattern-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, var(--navy) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* ===== Gold Gradient ===== */
.gold-gradient, .btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold) 40%, var(--gold-light));
  color: var(--navy-dark);
}

/* ===== Glass ===== */
.glass-card, .btn-glass {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-glass { color: #fff; }

/* ===== Shimmer ===== */
.btn-shimmer { position: relative; overflow: hidden; }
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
}

/* ===== Buttons ===== */
.btn-gold, .btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  border-radius: 60px;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  border: none;
}
.btn-gold {
  box-shadow: 0 4px 20px rgba(201,168,76,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-gold:hover {
  box-shadow: 0 8px 35px rgba(201,168,76,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(-3px);
}
.btn-glass {
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}
.btn-lg {
  padding: 18px 40px;
  font-size: 14px;
}

/* ===== Top Bar ===== */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 50; }
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 10; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 24px; }
.top-link { display: flex; align-items: center; gap: 6px; transition: color 0.3s; }
.top-link:hover { color: var(--gold-light); }
.top-link svg:first-child { flex-shrink: 0; }
.icon-gold { color: var(--gold); }
.top-socials { display: flex; align-items: center; gap: 8px; }
.top-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  transition: color 0.3s, border-color 0.3s, background-color 0.3s, transform 0.3s;
}
.top-social-link:hover {
  color: var(--gold-light);
  border-color: rgba(201,168,76,0.7);
  background: rgba(201,168,76,0.08);
  transform: translateY(-1px);
}

/* ===== Navbar ===== */
.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 8px 40px rgba(26,31,61,0.06);
  padding: 10px 0;
  transition: all 0.4s;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo-link { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img { height: 70px; width: auto; border-radius: 12px; transition: all 0.3s; }
.logo-text { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--navy); letter-spacing: 2px; }
.logo-7 { color: var(--gold); font-size: 34px; }
.footer-logo-text { color: #fff; font-size: 32px; }
.footer-logo-text .logo-7 { font-size: 38px; }

.nav-links { display: none; align-items: center; gap: 1px; }
.nav-link {
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  border-radius: 50px;
  transition: all 0.3s;
  color: var(--text-muted);
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold-dark); background: rgba(201,168,76,0.06); }
.nav-link.active {
  background: var(--navy);
  color: var(--gold-light);
  box-shadow: 0 4px 16px rgba(26,31,61,0.25);
}
.nav-cta { display: none; }
.nav-cta .btn-gold {
  font-size: 11px;
  padding: 10px 22px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.mobile-menu-btn { display: block; padding: 8px; border-radius: 12px; color: var(--text); }
.mobile-menu-btn:hover { background: var(--bg-secondary); }
.mobile-menu { display: none; flex-direction: column; padding: 16px; gap: 4px; border-top: 1px solid var(--border); }
.mobile-menu.open { display: flex; }
.mobile-link { padding: 14px 18px; border-radius: 12px; font-weight: 600; font-size: 14px; transition: all 0.3s; }
.mobile-link:hover, .mobile-link.active { background: rgba(201,168,76,0.08); color: var(--gold-dark); }
.mobile-cta { margin-top: 8px; text-align: center; justify-content: center; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; align-items: center; gap: 12px; }
  .mobile-menu-btn { display: none; }
  .mobile-menu { display: none !important; }
}
@media (min-width: 1280px) {
  .nav-inner { gap: 32px; }
  .nav-links { gap: 2px; }
  .nav-link { font-size: 12px; padding: 10px 16px; letter-spacing: 0.08em; }
  .nav-dropdown-toggle { font-size: 12px; padding: 10px 16px; letter-spacing: 0.08em; }
  .nav-cta .btn-gold { font-size: 12px; padding: 12px 28px; letter-spacing: 0.08em; }
}

/* ===== Nav Dropdown ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  border-radius: 50px;
  transition: all 0.3s;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.nav-dropdown-toggle:hover { color: var(--gold-dark); background: rgba(201,168,76,0.06); }
.nav-dropdown-toggle.active { background: var(--navy); color: var(--gold-light); box-shadow: 0 4px 16px rgba(26,31,61,0.25); }
.nav-dropdown-toggle svg { transition: transform 0.3s; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(14,16,36,0.15), 0 0 0 1px rgba(201,168,76,0.1);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  z-index: 100;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.3s;
}
.nav-dropdown-item:hover {
  background: rgba(201,168,76,0.08);
  color: var(--gold-dark);
  transform: translateX(4px);
}
.nav-dropdown-item.active {
  background: var(--navy);
  color: var(--gold-light);
}
.nav-dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  color: var(--gold-dark);
  flex-shrink: 0;
}
.nav-dropdown-item:hover .nav-dropdown-icon {
  background: rgba(201,168,76,0.18);
}
.nav-dropdown-item.active .nav-dropdown-icon {
  background: rgba(201,168,76,0.2);
  color: var(--gold-light);
}
.mobile-dropdown-items {
  display: none;
  flex-direction: column;
  padding-left: 18px;
  gap: 2px;
}
.mobile-dropdown-items.open { display: flex; }
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  width: 100%;
  color: inherit;
}
.mobile-dropdown-toggle:hover { background: rgba(201,168,76,0.08); color: var(--gold-dark); }
.mobile-dropdown-toggle svg { transition: transform 0.3s; }
.mobile-dropdown-toggle.open svg { transform: rotate(180deg); }

/* ===== Hero ===== */
.hero { position: relative; height: 100vh; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease, transform 10s ease;
  transform: scale(1.08);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14,16,36,0.85) 0%, rgba(14,16,36,0.55) 45%, rgba(14,16,36,0.1) 100%);
}
.hero-content { position: relative; z-index: 10; height: 100%; display: flex; align-items: center; }
.hero-content .container { margin: 0; padding: 0 100px; }
.hero-text { max-width: 620px; text-align: left; }

.hero-cursive {
  font-family: var(--font-cursive);
  color: var(--gold-light);
  font-size: 24px;
  display: block;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }

/* Hero Controls */
.hero-controls {
  position: absolute; top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  z-index: 10; display: flex; align-items: center;
  justify-content: space-between; padding: 0 20px;
  pointer-events: none;
}
.hero-controls > * { pointer-events: auto; }
.hero-arrow {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: rgba(26,31,61,0.5);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,0.15);
  transition: all 0.4s;
}
.hero-arrow:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  transform: scale(1.15);
}
.hero-dots-wrap {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 10;
}
.hero-dots { display: flex; gap: 8px; }
.hero-dot {
  height: 8px; border-radius: 4px;
  transition: all 0.5s;
  background: rgba(255,255,255,0.3);
  width: 8px;
}
.hero-dot.active { background: var(--gold); width: 44px; }

@media (min-width: 768px) {
  .hero-cursive { font-size: 30px; }
  .hero-title { font-size: 68px; }
  .hero-desc { font-size: 18px; }
  .hero-controls { padding: 0 32px; }
  .hero-arrow { width: 56px; height: 56px; }
}
@media (min-width: 1024px) { .hero-title { font-size: 76px; } }

/* ===== Search Bar ===== */
.search-section { position: relative; margin-top: -80px; z-index: 20; }
.search-bar {
  background: var(--navy);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(14,16,36,0.35);
  padding: 32px 40px;
  display: flex; flex-direction: column; gap: 16px; align-items: flex-end;
  border: 1px solid rgba(201,168,76,0.15);
}
.search-field { flex: 1; width: 100%; }
.search-field input[type="number"]::-webkit-outer-spin-button,
.search-field input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; appearance: none; margin: 0; }
.search-field input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
.search-field label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--gold-light); margin-bottom: 8px;
}
.input-wrapper {
  display: flex; align-items: center; gap: 10px;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 13px 18px;
  transition: all 0.3s; background: rgba(255,255,255,0.06);
}
.input-wrapper:focus-within { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,168,76,0.12); }
.input-wrapper input {
  background: transparent; outline: none; border: none;
  flex: 1; font-size: 14px; color: #fff;
}
.input-wrapper input::placeholder { color: rgba(255,255,255,0.4); }
.search-btn {
  padding: 15px 36px; border-radius: 14px; white-space: nowrap;
  font-size: 14px;
}
@media (min-width: 768px) {
  .search-bar {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr) minmax(0, 1.15fr) 220px 180px;
    align-items: end;
    gap: 14px;
  }
  .search-field { width: auto; min-width: 0; }
  .search-field-compact { min-width: 0; }
  .search-btn {
    width: 100%;
    padding: 15px 24px;
    align-self: end;
    justify-content: center;
  }
}

/* ===== Section Headers ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.fun-badge {
  display: inline-flex;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 12px; font-weight: 700;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.25);
}
.section-title {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 700;
  margin-top: 12px; line-height: 1.15;
  color: var(--text);
}
.section-desc {
  font-size: 16px; color: var(--text-muted);
  margin-top: 16px; max-width: 560px;
  margin-left: auto; margin-right: auto;
  line-height: 1.75;
}
@media (min-width: 768px) { .section-title { font-size: 50px; } }

/* ===== Categories Grid ===== */
.categories-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.category-card { display: block; }
.category-inner {
  position: relative; overflow: hidden;
  border-radius: 20px; aspect-ratio: 3/4;
  box-shadow: 0 10px 30px rgba(14,16,36,0.18);
  transition: all 0.5s cubic-bezier(.4,0,.2,1);
  border: 2px solid transparent;
}
.category-inner:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 60px rgba(14,16,36,0.25);
  border-color: var(--gold);
}
.category-inner img { width:100%; height:100%; object-fit:cover; transition: transform 0.8s; }
.category-card:hover .category-inner img { transform: scale(1.15); }
.category-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy-dark) 0%, rgba(14,16,36,0.3) 50%, transparent 100%);
}
.category-icon { position: absolute; top: 16px; left: 16px; font-size: 28px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.category-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.category-info h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #fff; }
.category-info p { color: rgba(255,255,255,0.55); font-size: 12px; margin-top: 4px; }

@media (min-width: 768px) { .categories-grid { grid-template-columns: repeat(3,1fr); gap: 20px; } .category-info h3 { font-size: 17px; } }
@media (min-width: 1024px) { .categories-grid { grid-template-columns: repeat(6,1fr); } }

/* ===== Destinations Grid (Homepage) ===== */
.destinations-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.dest-card {
  display: block; background: var(--card-bg);
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(14,16,36,0.07);
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(.4,0,.2,1);
}
.dest-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(14,16,36,0.15);
  border-color: var(--gold);
}
.dest-card-img { position: relative; overflow: hidden; height: 260px; }
.dest-card-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.8s; }
.dest-card:hover .dest-card-img img { transform: scale(1.12); }

.dest-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  font-weight: 700; font-size: 12px; padding: 8px 16px;
  border-radius: 50px; box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  color: var(--text);
}
.dest-duration {
  position: absolute; top: 16px; right: 16px;
  background: var(--navy); color: var(--gold-light);
  font-weight: 700; font-size: 12px;
  padding: 8px 16px; border-radius: 50px;
  box-shadow: 0 4px 16px rgba(14,16,36,0.3);
  border: 1px solid rgba(201,168,76,0.3);
}
.dest-card-body { padding: 28px; }
.dest-card-header { display: flex; justify-content: space-between; align-items: center; }
.dest-card-header h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.dest-price { text-align: right; }
.dest-price span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.dest-price p { color: var(--gold-dark); font-weight: 700; font-family: var(--font-display); font-size: 22px; }
.view-link {
  display: flex; align-items: center; gap: 6px;
  margin-top: 16px; color: var(--navy); font-size: 13px;
  font-weight: 700; transition: all 0.4s;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.group:hover .view-link, .dest-card:hover .view-link { gap: 14px; color: var(--gold-dark); }

@media (min-width: 640px) { .destinations-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .destinations-grid { grid-template-columns: repeat(3,1fr); } }

/* ===== Wave Divider ===== */
.wave-divider { width: 100%; overflow: hidden; line-height: 0; display: none; }

/* ===== Section Divider ===== */
.section-padding + .section-padding,
.section-padding + .bg-secondary,
.bg-secondary + .section-padding {
  border-top: none;
}


/* ===== Vehicles Grid ===== */
.vehicles-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.vehicle-card {
  display: block; border-radius: 24px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(14,16,36,0.07);
  border: 1px solid var(--border); background: var(--card-bg);
  transition: all 0.5s cubic-bezier(.4,0,.2,1);
}
.vehicle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(14,16,36,0.15);
  border-color: var(--gold);
}
.vehicle-img-wrap { position: relative; overflow: hidden; height: 220px; }
.vehicle-img-wrap img { width:100%; height:100%; object-fit:cover; transition: transform 0.8s; }
.vehicle-card:hover .vehicle-img-wrap img { transform: scale(1.12); }
.vehicle-price {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--navy); color: var(--gold-light);
  font-weight: 700; font-size: 14px; padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(14,16,36,0.35);
  border: 1px solid rgba(201,168,76,0.3);
}
.vehicle-info { padding: 24px; }
.vehicle-name { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.vehicle-name h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.vehicle-info > p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
@media (min-width: 768px) { .vehicles-grid { grid-template-columns: repeat(3,1fr); } }

/* ===== Navy Section ===== */
.navy-section {
  background: linear-gradient(135deg, rgba(14,16,36,0.7), rgba(26,31,61,0.75)),
              url('assets/dest-goa-C1d-tqNx.jpg') center/cover no-repeat fixed;
  position: relative; overflow: hidden;
}
.cta-section {
  background: linear-gradient(135deg, rgba(14,16,36,0.7), rgba(26,31,61,0.75)),
              url('assets/dest-ladakh-DmAc0L_0.jpg') center/cover no-repeat fixed;
}
.glow-orb {
  position: absolute; width: 400px; height: 400px;
  border-radius: 50%; background: rgba(201,168,76,0.06);
  filter: blur(80px);
}
.glow-right { right: -100px; top: -100px; }
.glow-left { left: -100px; bottom: -100px; }

.navy-section .section-title { color: #fff; }
.navy-section .section-desc { color: rgba(255,255,255,0.65); }
.navy-section .fun-badge {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  border-color: rgba(201,168,76,0.3);
}
.navy-section .section-header::after { display: none; }

/* ===== Features Grid ===== */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.feature-card {
  text-align: center; padding: 40px 24px; border-radius: 24px;
  transition: all 0.5s cubic-bezier(.4,0,.2,1);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  box-shadow: 0 20px 50px rgba(201,168,76,0.1);
}
.feature-icon { font-size: 56px; margin-bottom: 24px; display: inline-block; }
.feature-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.feature-card p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4,1fr); } }

/* ===== Gallery Strip ===== */
.gallery-strip { overflow: hidden; padding: 0; }
.gallery-scroll { display: flex; gap: 0; }
.gallery-item { flex-shrink: 0; width: 200px; height: 150px; overflow: hidden; position: relative; }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(14,16,36,0.2);
  transition: opacity 0.4s; opacity: 1;
}
.gallery-item:hover::after { opacity: 0; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.15); }
@media (min-width: 768px) { .gallery-item { width: 300px; height: 200px; } }

/* ===== Testimonials ===== */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.testimonial-card {
  background: var(--card-bg); border-radius: 24px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(14,16,36,0.07);
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(.4,0,.2,1);
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(14,16,36,0.15);
  border-color: var(--gold);
}
.testimonial-img { height: 180px; overflow: hidden; }
.testimonial-img img { width:100%; height:100%; object-fit:cover; }
.testimonial-body { padding: 30px; }
.stars { color: var(--gold); font-size: 20px; margin-bottom: 16px; letter-spacing: 4px; }
.testimonial-text {
  color: var(--text); font-size: 15px; line-height: 1.7;
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  box-shadow: 0 4px 16px rgba(14,16,36,0.2);
}
.author-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.author-location { color: var(--text-muted); font-size: 12px; margin-top: 2px; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }

/* ===== CTA Section ===== */
.cta-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 40px; }

/* ===== Footer ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
  border-top: 3px solid var(--gold);
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.footer-logo .logo-img { height: 100px; border-radius: 12px; margin-bottom: 20px; }
.footer-about { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  transition: all 0.4s; border: 1px solid rgba(255,255,255,0.08);
}
.social-link:hover {
  background: var(--gold); color: var(--navy-dark);
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.footer-col h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; transition: all 0.3s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--gold-light); transform: translateX(4px); }
.contact-list li { font-size: 14px; }
.footer-bottom {
  text-align: center; padding: 24px 0; margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06); font-size: 13px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  z-index: 100; transition: all 0.4s;
  animation: pulseGlow 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.15) translateY(-4px); box-shadow: 0 12px 40px rgba(37,211,102,0.55); }

/* ===== Responsive ===== */
.hide-mobile { display: none; }
.hide-tablet { display: none; }
@media (min-width: 640px) { .hide-mobile { display: inline; } }
@media (min-width: 768px) { .hide-tablet { display: inline; } }

.main-content { flex: 1; padding-top: 100px; }

/* ===== Page Hero Banner ===== */
.page-hero { position: relative; height: 62vh; min-height: 460px; overflow: hidden; }
.page-hero-img { width:100%; height:100%; object-fit:cover; }
.page-hero-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; text-align: left;
  padding: 0 24px 56px;
}
.page-hero-title { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,0.4); max-width: 720px; }
.page-hero-breadcrumb { color: rgba(255,255,255,0.82); margin-top: 16px; font-size: 16px; letter-spacing: 0.03em; max-width: 620px; line-height: 1.7; }
@media (min-width: 768px) {
  .page-hero-content { padding: 0 80px 70px; }
  .page-hero-title { font-size: 68px; }
}

/* ===== About Page ===== */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
.about-para { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-para.text-lg { font-size: 18px; }
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-img {
  border-radius: 20px; width:100%; height: 224px; object-fit:cover;
  box-shadow: 0 10px 30px rgba(14,16,36,0.15);
  transition: all 0.5s; border: 2px solid transparent;
}
.about-img:hover { transform: translateY(-8px); border-color: var(--gold); }
.mt-offset-down { margin-top: 40px; }
.mt-offset-up { margin-top: -16px; }
.mt-offset-down-sm { margin-top: 24px; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-grid .service-img {
  border-radius: 20px; width: 100%; height: 380px; object-fit: cover;
  box-shadow: 0 10px 30px rgba(14,16,36,0.15);
  transition: all 0.5s; border: 2px solid transparent;
}
.about-grid .service-img:hover { transform: translateY(-8px); border-color: var(--gold); }

/* ===== Stats ===== */
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; text-align: center; }
.stat-card {
  border-radius: 24px; padding: 36px 24px;
  transition: all 0.5s; border: 1px solid rgba(255,255,255,0.08);
}
.stat-card:hover { transform: translateY(-8px); border-color: var(--gold); background: rgba(201,168,76,0.08); }
.stat-emoji { font-size: 36px; margin-bottom: 16px; }
.stat-number { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--gold-light); }
.stat-label { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 8px; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } .stat-number { font-size: 52px; } }

.wave-navy svg path { fill: var(--navy); }
.gallery-item-lg { width: 200px; height: 140px; }
@media (min-width: 768px) { .gallery-item-lg { width: 320px; height: 200px; } }

.mission-text { color: var(--text-muted); font-size: 18px; line-height: 1.8; margin-bottom: 32px; }
.mission-cursive { font-family: var(--font-cursive); color: var(--gold); font-size: 28px; display: block; }

/* ===== Detailed Footer ===== */
.footer-detailed {
  background: var(--navy-dark); color: rgba(255,255,255,0.7);
  padding: 80px 0 0; position: relative; overflow: hidden;
  border-top: 3px solid var(--gold);
}
.footer-detailed .footer-grid-4 { display: grid; grid-template-columns: 1fr; gap: 40px; }
.footer-detailed .footer-col h4 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--gold-light); margin-bottom: 24px;
  padding-bottom: 12px; border-bottom: 2px solid rgba(201,168,76,0.2);
  display: inline-block;
}
.footer-cursive { font-family: var(--font-cursive); color: var(--gold); font-size: 18px; display: block; margin-bottom: 20px; }
.social-link-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.05); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s; border: 1px solid rgba(255,255,255,0.08);
}
.social-link-icon:hover {
  background: var(--gold); color: var(--navy-dark);
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.footer-contact { display: flex; flex-direction: column; gap: 16px; font-size: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; margin-top: 48px; }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold-light); }
@media (min-width: 640px) { .footer-detailed .footer-grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
@media (min-width: 1024px) { .footer-detailed .footer-grid-4 { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

/* ===== Packages Page ===== */
.listing-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 32px;
}
.listing-filter-btn {
  border: 1px solid rgba(26,31,61,0.12);
  background: rgba(255,255,255,0.9);
  color: var(--navy);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 10px 24px rgba(14,16,36,0.06);
}
.listing-filter-btn:hover,
.listing-filter-btn.active {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(201,168,76,0.25);
}
.packages-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.package-card {
  background: var(--card-bg); border-radius: 24px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(14,16,36,0.07);
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(.4,0,.2,1);
  display: block;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(14,16,36,0.15);
  border-color: var(--gold);
}
.package-card-img { position: relative; overflow: hidden; height: 240px; }
.package-card-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.8s; }
.package-card:hover .package-card-img img { transform: scale(1.12); }
.package-card-body { padding: 28px; }
.package-card-body h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.package-meta { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 14px; margin-bottom: 8px; }
.package-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; margin-top: 24px; border-top: 1px solid var(--border);
}
.package-price span { font-size: 11px; color: var(--text-muted); display: block; text-transform: uppercase; letter-spacing: 0.05em; }
.package-price p { color: var(--gold-dark); font-weight: 700; font-family: var(--font-display); font-size: 26px; }
.btn-book {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--gold-light);
  font-weight: 700; font-size: 12px; padding: 12px 24px;
  border-radius: 50px; transition: all 0.4s;
  position: relative; overflow: hidden;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.3);
}
.btn-book:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-book::after {
  content:''; position: absolute; top:0; left:-100%; width:50%; height:100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent);
  animation: shimmer 3s infinite;
}
@media (min-width: 640px) { .packages-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .packages-grid { grid-template-columns: repeat(3,1fr); } }

.package-breadcrumb-strip {
  background: #fff;
  border-bottom: 1px solid rgba(26,31,61,0.08);
}
.package-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  color: var(--text-muted);
  font-size: 14px;
}
.package-breadcrumb-inner a:hover { color: var(--gold-dark); }
.package-top-shell {
  margin-top: -110px;
  position: relative;
  z-index: 20;
  padding-top: 0;
}
.package-summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.package-summary-card {
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(247,248,251,0.98));
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 20px 54px rgba(14,16,36,0.12);
}
.package-summary-card span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.package-summary-card strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  display: block;
}
.package-summary-card small {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}
.package-spotlight-card {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(14,16,36,0.18);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.package-spotlight-card .section-title {
  color: #fff;
  margin-bottom: 12px;
}
.package-spotlight-card .section-desc {
  color: rgba(255,255,255,0.74);
}
.package-spotlight-card .detail-chip {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.package-spotlight-side {
  display: grid;
  gap: 16px;
}
.spotlight-note {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}
.spotlight-note span {
  display: block;
  color: var(--gold-light);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.spotlight-note strong {
  display: block;
  font-size: 18px;
  line-height: 1.6;
  font-family: var(--font-display);
}
.package-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.package-detail-header {
  text-align: left;
  margin-bottom: 28px;
}
.itinerary-intro {
  max-width: 760px;
  margin-left: 0;
}
.detail-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.detail-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(201,168,76,0.12);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}
.detail-panel,
.booking-card {
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  border: 1px solid rgba(201,168,76,0.16);
  box-shadow: 0 18px 44px rgba(14,16,36,0.08);
}
.detail-panel h3,
.booking-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 20px;
}
.detail-list {
  display: grid;
  gap: 14px;
}
.detail-list li,
.booking-card-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  line-height: 1.7;
}
.detail-list li::before,
.booking-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.itinerary-header { margin-top: 42px; }
.itinerary-timeline {
  display: grid;
  gap: 18px;
}
.itinerary-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(26,31,61,0.08);
  box-shadow: 0 12px 32px rgba(14,16,36,0.06);
}
.itinerary-day {
  border-radius: 18px;
  background: linear-gradient(180deg, var(--navy), var(--navy-light));
  color: var(--gold-light);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
}
.itinerary-body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 10px;
}
.itinerary-body p {
  color: var(--text-muted);
  line-height: 1.8;
}
.package-booking-sidebar { position: relative; }
.booking-card {
  position: sticky;
  top: 132px;
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(240,241,246,0.95));
}
.booking-card p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 14px 0 18px;
}
.booking-card-price {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold-dark);
  margin-bottom: 20px;
}
.booking-card-list {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}
.booking-card-actions {
  display: grid;
  gap: 14px;
}
@media (max-width: 767px) {
  .package-top-shell { margin-top: -70px; }
  .itinerary-card { grid-template-columns: 1fr; }
  .itinerary-day { min-height: 56px; }
}
@media (min-width: 768px) {
  .package-summary-grid { grid-template-columns: repeat(2, 1fr); }
  .package-spotlight-card { grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr); }
}
@media (min-width: 1024px) {
  .package-summary-grid { grid-template-columns: repeat(4, 1fr); }
  .package-detail-layout { grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.75fr); }
}

/* ===== Destinations Full Page ===== */
.dest-full-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.dest-full-card {
  display: block; position: relative; overflow: hidden;
  border-radius: 24px; height: 400px;
  box-shadow: 0 8px 30px rgba(14,16,36,0.12);
  transition: all 0.5s cubic-bezier(.4,0,.2,1);
  border: 2px solid transparent;
}
.dest-full-card:hover { transform: translateY(-10px); box-shadow: 0 30px 70px rgba(14,16,36,0.2); border-color: var(--gold); }
.dest-full-card img { width:100%; height:100%; object-fit:cover; transition: transform 0.8s; }
.dest-full-card:hover img { transform: scale(1.12); }
.dest-full-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy-dark) 0%, rgba(14,16,36,0.3) 50%, transparent 100%);
}
.dest-full-icon {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: linear-gradient(180deg, rgba(26,31,61,0.9), rgba(37,43,80,0.8));
  border: 1px solid rgba(201,168,76,0.35);
  box-shadow: 0 12px 30px rgba(14,16,36,0.25);
  backdrop-filter: blur(10px);
}
.dest-full-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; }
.dest-full-info h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.dest-full-info p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.dest-full-bottom { display: flex; align-items: center; justify-content: space-between; }
.dest-full-badge {
  background: var(--navy); color: var(--gold-light);
  font-weight: 700; font-size: 12px; padding: 8px 18px;
  border-radius: 50px; border: 1px solid rgba(201,168,76,0.3);
}
@media (min-width: 768px) { .dest-full-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .dest-full-grid { grid-template-columns: repeat(3,1fr); } }

/* ===== Vehicle Rental Page ===== */
.feature-row { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 64px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 28px; background: var(--card-bg);
  border-radius: 20px; box-shadow: 0 4px 20px rgba(14,16,36,0.06);
  border: 1px solid var(--border); transition: all 0.4s;
}
.feature-item:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 16px 40px rgba(14,16,36,0.12); }
.feature-item-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--navy); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 16px rgba(14,16,36,0.15);
}
.feature-item h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.feature-item p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
@media (min-width: 768px) { .feature-row { grid-template-columns: repeat(3,1fr); } }

.vehicle-detail-card {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 8px 30px rgba(14,16,36,0.1);
  border: 1px solid var(--border); margin-bottom: 40px;
  transition: all 0.4s;
}
.vehicle-detail-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.vehicle-detail-grid { display: grid; grid-template-columns: 1fr; }
.vehicle-detail-img { position: relative; overflow: hidden; height: 300px; }
.vehicle-detail-img img { width:100%; height:100%; object-fit:cover; }
.vehicle-detail-label {
  position: absolute; top: 16px; left: 16px;
  background: var(--navy); color: var(--gold-light);
  backdrop-filter: blur(8px); border-radius: 50px;
  padding: 8px 18px; font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 16px rgba(14,16,36,0.3);
  border: 1px solid rgba(201,168,76,0.3);
}
.vehicle-detail-body { padding: 28px 36px; }
.vehicle-detail-body h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.vehicle-detail-body .vehicle-subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }
.rate-cards { display: grid; grid-template-columns: 1fr; gap: 24px; }
.rate-card {
  background: var(--bg-secondary); border-radius: 18px; padding: 24px;
  border: 1px solid var(--border);
}
.rate-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.rate-dot { width: 10px; height: 10px; border-radius: 50%; }
.rate-dot-gold { background: var(--gold); }
.rate-dot-orange { background: #f97316; }
.rate-card-header h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.rate-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; }
.rate-row + .rate-row { border-top: 1px solid var(--border); }
.rate-label { color: var(--text-muted); font-size: 14px; display: flex; align-items: center; gap: 8px; }
.rate-value { font-weight: 700; font-family: var(--font-display); font-size: 20px; color: var(--gold-dark); }
.rate-value-sm { font-weight: 700; font-size: 14px; color: var(--text); }
@media (min-width: 768px) { .rate-cards { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) {
  .vehicle-detail-grid { grid-template-columns: 2fr 3fr; }
  .vehicle-detail-img { position: relative; height: auto; }
  .vehicle-detail-img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
}

.vehicle-color-sky { background: linear-gradient(135deg, rgba(56,189,248,0.08), rgba(56,189,248,0.02)); }
.vehicle-color-gold { background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02)); }
.vehicle-color-orange { background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(249,115,22,0.02)); }
.vehicle-color-green { background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(34,197,94,0.02)); }
.vehicle-color-navy { background: linear-gradient(135deg, rgba(26,31,61,0.06), rgba(26,31,61,0.02)); }

/* ===== Contact Page ===== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
.contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; display: block; color: var(--text); }
.contact-input {
  width: 100%; border: 2px solid var(--border);
  border-radius: 16px; padding: 14px 18px;
  font-size: 14px; font-family: var(--font-body);
  background: var(--card-bg); color: var(--text);
  outline: none; transition: all 0.3s;
}
.contact-input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,168,76,0.1); }
textarea.contact-input { resize: none; }
.contact-form-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.contact-form-space { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  display: flex; gap: 18px; padding: 24px;
  background: var(--card-bg); border-radius: 20px;
  border: 1px solid var(--border); transition: all 0.4s;
  box-shadow: 0 2px 12px rgba(14,16,36,0.04);
}
.contact-info-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 12px 30px rgba(14,16,36,0.1); }
.contact-info-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--navy); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 16px rgba(14,16,36,0.15);
}
.contact-info-card h4 { font-family: var(--font-display); font-weight: 700; margin-bottom: 6px; }
.contact-info-card p { color: var(--text-muted); font-size: 14px; white-space: pre-line; line-height: 1.7; }
.contact-mini-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.contact-mini-gallery div { border-radius: 16px; overflow: hidden; height: 112px; box-shadow: 0 4px 16px rgba(14,16,36,0.08); }
.contact-mini-gallery img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.contact-mini-gallery img:hover { transform: scale(1.12); }
@media (min-width: 768px) { .contact-form-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

/* ===== Enquiry Popup Modal ===== */
.enquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14,16,36,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.enquiry-overlay.open {
  display: flex;
  opacity: 1;
}
.enquiry-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(14,16,36,0.3);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 40px 36px;
  position: relative;
  animation: modalSlideIn 0.35s cubic-bezier(.4,0,.2,1);
}
.enquiry-modal::-webkit-scrollbar { display: none; }
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.enquiry-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  color: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.enquiry-modal-close:hover {
  background: var(--navy);
  color: #fff;
}
.enquiry-modal-header {
  text-align: center;
  margin-bottom: 28px;
}
.enquiry-modal-header .fun-badge { margin-bottom: 12px; }
.enquiry-modal-header h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-top: 8px;
}
.enquiry-modal-header p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 8px;
}
.enquiry-modal .contact-form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 480px) {
  .enquiry-modal .contact-form-grid { grid-template-columns: 1fr 1fr; }
}
.enquiry-modal .form-group { margin-top: 16px; }
.enquiry-thankyou {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.enquiry-thankyou.show { display: block; }
.enquiry-thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.enquiry-thankyou h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.enquiry-thankyou p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .enquiry-modal { padding: 28px 20px; }
  .enquiry-modal-header h2 { font-size: 24px; }
}

/* Blog & Policy Content */
.blog-content h2, .blog-content h3, .policy-content h2, .policy-content h3 {
    font-family: var(--font-display);
    color: var(--navy);
    margin: 32px 0 12px;
}
.blog-content h2, .policy-content h2 { font-size: 28px; }
.blog-content h3, .policy-content h3 { font-size: 22px; }
.blog-content p, .policy-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 16px;
}
.blog-content ul, .blog-content ol, .policy-content ul, .policy-content ol {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
}
.blog-content li, .policy-content li { margin-bottom: 8px; }
.blog-content img { max-width: 100%; border-radius: 16px; margin: 24px 0; }

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  /* Page Hero */
  .page-hero { height: 45vh; min-height: 320px; }
  .page-hero-content { padding: 0 20px 40px; }
  .page-hero-title { font-size: 32px; }
  .page-hero-breadcrumb { font-size: 13px; margin-top: 8px; }
  .hero-cursive { font-size: 16px; }

  /* Hero Section */
  .hero { height: 70vh; min-height: 450px; }
  .hero-title { font-size: 32px !important; }
  .hero-desc { font-size: 14px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns a { width: 100%; justify-content: center; text-align: center; }
  .hero-controls { display: none; }

  /* Search Bar */
  .search-section { margin-top: -50px; }
  .search-bar { padding: 20px; border-radius: 16px; gap: 12px; }
  .search-btn { padding: 14px; font-size: 14px; }

  /* Section Headers */
  .section-title { font-size: 28px !important; }
  .section-desc { font-size: 14px; }
  .section-padding { padding: 48px 0; }
  .fun-badge { font-size: 11px; padding: 7px 16px; }

  /* Container */
  .container { padding: 0 16px; }

  /* Categories */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-icon { font-size: 28px; }
  .category-info h3 { font-size: 14px; }
  .category-info p { font-size: 11px; }

  /* Destination Cards */
  .dest-card-body h3 { font-size: 16px; }
  .dest-price p { font-size: 16px; }

  /* Vehicle Cards (Home) */
  .vehicles-grid { grid-template-columns: 1fr; gap: 16px; }
  .vehicle-img-wrap { height: 200px; }

  /* Vehicle Detail Cards */
  .vehicle-detail-card { margin-bottom: 24px; }
  .vehicle-detail-img { height: 220px; }
  .vehicle-detail-body { padding: 20px; }
  .vehicle-detail-body h3 { font-size: 22px; }
  .rate-cards { grid-template-columns: 1fr; gap: 12px; }

  /* Features */
  .feature-row { grid-template-columns: 1fr; gap: 16px; }
  .feature-item { padding: 24px; }
  .feature-icon svg { width: 28px; height: 28px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-img { height: 160px; }

  /* Gallery */
  .gallery-item { width: 200px; height: 140px; }
  .gallery-item-lg { width: 240px; height: 160px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-number { font-size: 36px; }

  /* About Grid */
  .about-grid { gap: 32px; }
  .about-images { gap: 10px; }
  .about-img { height: 180px; }
  .service-img { height: 260px; }
  .mt-offset-down, .mt-offset-up, .mt-offset-down-sm { margin-top: 0; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-info-card { padding: 16px; }

  /* Footer */
  .footer { padding: 40px 0 24px; }
  .footer-grid { gap: 28px; }
  .footer-about { font-size: 13px; }

  /* CTA */
  .cta-btns { flex-direction: column; gap: 10px; }
  .cta-btns a { width: 100%; justify-content: center; }

  /* Packages Grid */
  .packages-grid { grid-template-columns: 1fr; }

  /* Dest Full Grid */
  .dest-full-grid { grid-template-columns: 1fr; }

  /* Blog & Policy */
  .blog-content h2, .policy-content h2 { font-size: 22px; }
  .blog-content h3, .policy-content h3 { font-size: 18px; }
  .blog-content p, .policy-content p { font-size: 14px; }

  /* Listing Filter */
  .listing-filter { gap: 8px; justify-content: center; }
  .listing-filter-btn { padding: 10px 20px; font-size: 13px; }

  /* WhatsApp Float */
  .whatsapp-float { bottom: 20px; right: 16px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }

  /* Buttons */
  .btn-lg { padding: 14px 24px; font-size: 14px; }
  .btn-gold, .btn-glass { font-size: 13px; }
}

@media (max-width: 480px) {
  .page-hero { height: 40vh; min-height: 280px; }
  .page-hero-title { font-size: 26px; }
  .hero-title { font-size: 26px !important; }
  .section-title { font-size: 24px !important; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .category-info { padding: 10px; }
  .category-info h3 { font-size: 12px; }
  .category-info p { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stat-card { padding: 16px 12px; }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 12px; }

  .destinations-grid { grid-template-columns: 1fr; }

  .about-images { grid-template-columns: 1fr 1fr; }
  .about-img { height: 150px; }
  .service-img { height: 200px; }

  .footer-socials { gap: 8px; }
  .social-link { width: 36px; height: 36px; }
  .social-link svg { width: 14px; height: 14px; }

  .search-bar { padding: 16px; }
  .search-field label { font-size: 10px; }

  .nav-cta { display: none; }
}
