/* ==========================================================================
   Vaayu Travels Services Sdn. Bhd - Mobile-Perfect Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary-dark: #070e17;
  --primary-navy: #0d1829;
  --primary-emerald: #0b3d2e;
  --emerald-light: #135240;
  --emerald-accent: #10b981;
  --gold-primary: #e5b842;
  --gold-light: #f7d774;
  --gold-dark: #b88f28;
  --gold-gradient: linear-gradient(135deg, #f7d774 0%, #e5b842 50%, #b88f28 100%);
  --emerald-gradient: linear-gradient(135deg, #0d3b2e 0%, #071f18 100%);
  --dark-glass: rgba(13, 24, 41, 0.94);
  --card-border: rgba(229, 184, 66, 0.3);
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-glow: 0 8px 25px -8px rgba(229, 184, 66, 0.35);
  --shadow-dark: 0 15px 35px -10px rgba(0, 0, 0, 0.6);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--primary-dark);
}

body {
  overflow-x: hidden;
  line-height: 1.5;
  padding-bottom: 75px; /* Buffer for sticky bottom action bar */
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, .font-heading {
  font-family: 'Outfit', sans-serif;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(229, 184, 66, 0.12);
  border: 1px solid var(--card-border);
  color: var(--gold-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--primary-dark);
  box-shadow: var(--shadow-glow);
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 6px 20px -4px rgba(37, 211, 102, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Top Announcement License Bar */
.license-bar {
  background: #04080e;
  border-bottom: 1px solid rgba(229, 184, 66, 0.15);
  padding: 0.4rem 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.license-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.license-badge-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.license-badge-item i {
  color: var(--gold-primary);
}

/* Header & Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.75rem 0;
  background: rgba(7, 14, 23, 0.96);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(229, 184, 66, 0.2);
  box-shadow: var(--shadow-dark);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 15px rgba(229, 184, 66, 0.35);
  transition: var(--transition);
}

.brand-logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(229, 184, 66, 0.6);
}

.logo-text-box {
  display: flex;
  flex-direction: column;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold-light);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-main);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--gold-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.mobile-toggle {
  display: none;
  font-size: 1.4rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.4rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  padding: 3rem 0 3.5rem 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.7) contrast(1.15);
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 14, 23, 0.85) 0%, rgba(7, 14, 23, 0.96) 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #4ade80;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-stat-item h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
}

.hero-stat-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Booking Card (Form) */
.booking-card {
  background: rgba(13, 24, 41, 0.94);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-dark);
}

.booking-card-header {
  margin-bottom: 1.2rem;
}

.booking-card-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.booking-card-header p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
}

.form-control option {
  background-color: var(--primary-navy);
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.calc-estimate-box {
  background: rgba(11, 61, 46, 0.5);
  border: 1px dashed var(--gold-primary);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.calc-estimate-box .label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.calc-estimate-box .price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
}

/* Trust Bar */
.trust-bar {
  background: rgba(13, 24, 41, 0.95);
  border-top: 1px solid rgba(229, 184, 66, 0.15);
  border-bottom: 1px solid rgba(229, 184, 66, 0.15);
  padding: 2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(229, 184, 66, 0.12);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 0.98rem;
  font-weight: 700;
}

.trust-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Services Section */
.services-section {
  padding: 4.5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--dark-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--emerald-gradient);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Fleet Showcase */
.fleet-section {
  padding: 4.5rem 0;
  background: rgba(13, 24, 41, 0.5);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.fleet-card {
  background: var(--primary-navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fleet-img-wrapper {
  position: relative;
  height: 200px;
  background: #070e17;
  overflow: hidden;
}

.fleet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: var(--gold-gradient);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.fleet-content {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.fleet-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fleet-spec-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.fleet-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
}

/* Tour Packages */
.tours-section {
  padding: 4.5rem 0;
}

.tour-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.tour-tab-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
}

.tour-tab-btn.active, .tour-tab-btn:hover {
  background: var(--gold-gradient);
  color: var(--primary-dark);
  border-color: transparent;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.tour-card {
  background: var(--dark-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tour-img-box {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.tour-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-duration {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  background: rgba(7, 14, 23, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(229, 184, 66, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
}

.tour-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-location {
  font-size: 0.78rem;
  color: var(--gold-primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.tour-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.tour-highlights {
  list-style: none;
  margin-bottom: 1.2rem;
  margin-top: auto;
}

.tour-highlights li {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tour-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* MICE & Corporate */
.mice-section {
  padding: 4.5rem 0;
  background: var(--emerald-gradient);
  border-top: 1px solid rgba(229, 184, 66, 0.2);
  border-bottom: 1px solid rgba(229, 184, 66, 0.2);
}

.mice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.mice-box-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.mice-item-card {
  background: rgba(7, 14, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mice-item-card i {
  color: var(--gold-primary);
}

/* Gallery */
.gallery-section {
  padding: 4.5rem 0;
  background: rgba(13, 24, 41, 0.6);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 14, 23, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

/* FAQ Section */
.faq-section {
  padding: 4.5rem 0;
  background: rgba(13, 24, 41, 0.5);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--dark-glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.faq-header {
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
}

.faq-body {
  padding: 0 1.4rem 1.1rem 1.4rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  display: none;
}

.faq-item.active .faq-body {
  display: block;
}

/* Contact CTA */
.contact-cta {
  padding: 4rem 0;
  background: var(--emerald-gradient);
  border-top: 1px solid rgba(229, 184, 66, 0.2);
  border-bottom: 1px solid rgba(229, 184, 66, 0.2);
  text-align: center;
}

/* Footer */
.footer {
  background: #04080e;
  padding: 3.5rem 0 1.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Admin CMS Modal Demo */
.admin-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.admin-modal-card {
  background: var(--primary-navy);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  padding: 1.8rem;
  box-shadow: var(--shadow-dark);
}

.admin-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

/* Floating Desktop Buttons */
.floating-contact-desktop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.float-whatsapp { background: #25D366; }
.float-call { background: var(--gold-gradient); color: var(--primary-dark); }

/* Mobile Sticky Bottom Action Bar - ALWAYS FIXED TO BOTTOM OF SCREEN */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(7, 14, 23, 0.98);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(229, 184, 66, 0.3);
  padding: 0.65rem 0.85rem;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6);
}

.mobile-sticky-buttons {
  display: flex;
  gap: 0.6rem;
}

.mobile-sticky-btn {
  flex: 1;
  padding: 0.75rem 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* Specific Mobile Responsive Rules (< 992px & < 768px) */
@media (max-width: 992px) {
  .hero-grid, .mice-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 270px;
    height: 100vh;
    background: var(--primary-navy);
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-dark);
    z-index: 1001;
  }
  .nav-menu.active { right: 0; }
  .mobile-toggle { display: block; z-index: 1002; }
}

@media (max-width: 768px) {
  /* License Bar: Compact horizontal scroll strip */
  .license-bar {
    padding: 0.35rem 0;
    font-size: 0.72rem;
  }
  .license-flex {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }
  .license-flex::-webkit-scrollbar { display: none; }

  .nav-call-btn {
    display: none !important;
  }

  .logo {
    font-size: 1.15rem;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .logo-tagline {
    font-size: 0.6rem;
  }

  /* Zero Blank Space under Sticky Navbar */
  .hero {
    padding-top: 1.25rem !important;
    padding-bottom: 2rem;
    min-height: auto;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    margin-bottom: 0.75rem;
  }

  .hero-title {
    font-size: 1.6rem;
    line-height: 1.22;
    margin-bottom: 0.75rem;
  }

  .hero-desc {
    font-size: 0.88rem;
    margin-bottom: 1rem;
    line-height: 1.45;
  }

  .hero-stats {
    gap: 0.8rem;
    margin-bottom: 1.2rem;
  }

  .hero-stat-item h4 {
    font-size: 1.2rem;
  }

  .hero-stat-item p {
    font-size: 0.72rem;
  }

  /* HIDE DUPLICATE HERO BUTTONS ON MOBILE (Bottom Sticky Bar is primary) */
  .hero-action-buttons {
    display: none !important;
  }

  .booking-card {
    padding: 1.15rem;
  }

  .form-row, .mice-box-list {
    grid-template-columns: 1fr;
  }

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

  .mobile-sticky-bar {
    display: block;
  }

  .floating-contact-desktop {
    display: none;
  }
}

/* Tour Itinerary Detail Modal */
.tour-modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 8, 14, 0.88);
  backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.tour-modal-card {
  background: #0d1829;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-glow);
  display: flex;
  flex-direction: column;
}

.tour-modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(229, 184, 66, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 14, 23, 0.95);
  position: sticky;
  top: 0;
  z-index: 10;
}

.tour-modal-header h3 {
  font-size: 1.25rem;
  color: var(--gold-light);
  margin: 0;
}

.close-tour-modal-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  transition: var(--transition);
}

.close-tour-modal-btn:hover {
  color: var(--gold-primary);
}

.tour-modal-body {
  padding: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.itinerary-day-box {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--gold-primary);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.9rem;
}

.itinerary-day-title {
  font-weight: 700;
  color: var(--gold-light);
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.itinerary-day-desc {
  color: #cbd5e1;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

.modal-inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.2rem 0;
}

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

.modal-inc-box {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 1rem;
  border-radius: var(--radius-md);
}

.modal-exc-box {
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.25);
  padding: 1rem;
  border-radius: var(--radius-md);
}

.fleet-disclaimer-box {
  background: rgba(229, 184, 66, 0.08);
  border: 1px dashed rgba(229, 184, 66, 0.3);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--gold-light);
  text-align: center;
  line-height: 1.5;
}

/* Admin CMS Tabbed Modal Styles */
.admin-tab-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(229, 184, 66, 0.2);
  padding-bottom: 0.5rem;
  flex-wrap: wrap;
}

.admin-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 600;
  transition: var(--transition);
}

.admin-tab-btn.active {
  background: var(--gold-gradient);
  color: var(--primary-dark);
  border-color: var(--gold-primary);
}

.admin-tab-pane {
  display: none;
}

.admin-tab-pane.active {
  display: block;
}


