/* ==========================================================================
   RAJ TRAVEL AGENCY - PREMIUM DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --primary-navy: #0B132B;
  --navy-light: #1C2541;
  --navy-accent: #3A506B;
  --gold-primary: #D4AF37;
  --gold-light: #FFE07D;
  --gold-dark: #996515;
  --white: #FFFFFF;
  --bg-light: #F4F6F9;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;
  --border-color: #E2E8F0;

  /* Glassmorphism */
  --glass-bg: rgba(11, 19, 43, 0.85);
  --glass-border: rgba(212, 175, 55, 0.25);
  --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-hindi: 'Tiro Devanagari Hindi', serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.35);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

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

.bg-light {
  background-color: var(--bg-light);
}

.gold-text {
  color: var(--gold-primary);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #FFE07D 0%, #D4AF37 50%, #996515 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   3. Top Announcement Bar & Language Switcher
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: #070D1E;
  color: #94A3B8;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-info span i {
  color: var(--gold-primary);
  margin-right: 6px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.lang-switch-btn:hover {
  background: var(--gold-primary);
  color: var(--primary-navy);
}

.top-whatsapp {
  background-color: var(--whatsapp-green);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.top-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   4. Animated Glassmorphism Header & Navbar
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: padding var(--transition-normal), background var(--transition-normal);
  padding: 12px 0;
}

.header.scrolled {
  padding: 8px 0;
  background: rgba(7, 13, 30, 0.95);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4), 0 0 10px rgba(212, 175, 55, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.4);
  transition: transform var(--transition-bounce), box-shadow 0.3s ease, border-color 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6), 0 0 16px rgba(212, 175, 55, 0.7);
  border-color: var(--gold-primary);
}

.logo-icon-wrapper {
  width: 46px;
  height: 46px;
  position: relative;
  transition: transform var(--transition-bounce);
}

.brand-logo:hover .logo-icon-wrapper {
  transform: rotate(5deg) scale(1.08);
}

.logo-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.4));
}

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

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--white);
  line-height: 1.1;
}

.logo-title.white-text {
  color: #FFFFFF;
}

.logo-tagline {
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  color: #94A3B8;
  font-weight: 700;
}

.nav-menu {
  position: relative;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #E2E8F0;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

.nav-indicator {
  position: absolute;
  bottom: -4px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-primary));
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 0 12px var(--gold-primary);
  opacity: 0;
}

.nav-indicator.active {
  opacity: 1;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-tap-highlight-color: transparent;
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(4px) scale(1.15);
}

/* Shimmer Light Layer for Buttons */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

/* 1. Primary Gold Button (.btn-primary, .pkg-book-btn) */
.btn-primary, .pkg-book-btn {
  background: linear-gradient(135deg, #FFE07D 0%, #D4AF37 50%, #996515 100%);
  color: #0B132B;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.5);
}

.btn-primary:hover, .pkg-book-btn:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFE07D 50%, #D4AF37 100%);
  color: #0B132B;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6), 0 0 15px rgba(255, 224, 125, 0.5);
  border-color: #FFE07D;
}

/* 2. Book Vehicle / Outline Buttons (.book-vehicle-btn, .btn-primary-outline) */
.book-vehicle-btn, .btn-primary-outline {
  background: #FFFFFF;
  border: 2px solid var(--primary-navy);
  color: var(--primary-navy);
  box-shadow: 0 4px 14px rgba(11, 19, 43, 0.1);
}

.book-vehicle-btn:hover, .btn-primary-outline:hover {
  background: linear-gradient(135deg, #0B132B 0%, #1C2541 100%);
  color: var(--gold-light);
  border-color: var(--gold-primary);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 28px rgba(11, 19, 43, 0.35), 0 0 16px rgba(212, 175, 55, 0.4);
}

/* 3. Gold CTA Button (.btn-gold) */
.btn-gold {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  color: #0B132B;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  border: 1px solid #FFE07D;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFD700 100%);
  color: #0B132B;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 35px rgba(255, 215, 0, 0.65), 0 0 20px rgba(255, 224, 125, 0.6);
}

/* 4. Secondary Outline Button */
.btn-secondary-outline {
  background: transparent;
  border: 1.5px solid var(--primary-navy);
  color: var(--primary-navy);
  padding: 8px 18px;
  font-size: 0.84rem;
}

.btn-secondary-outline:hover {
  background: var(--primary-navy);
  color: var(--gold-light);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 19, 43, 0.25);
}

.btn-block {
  width: 100%;
}

.btn-large {
  padding: 14px 32px;
  font-size: 1rem;
}

/* Header Attention Glow */
.nav-btn-book {
  animation: pulseButtonGlow 3s infinite ease-in-out;
}

@keyframes pulseButtonGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 0 22px rgba(212, 175, 55, 0.85);
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   5. Mobile Drawer Menu
   -------------------------------------------------------------------------- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background-color: var(--primary-navy);
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}

.close-drawer {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.drawer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.drawer-link {
  color: #E2E8F0;
  font-size: 1.1rem;
  font-weight: 600;
}

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

.drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   6. Hero Section & Background Slider
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  color: var(--white);
}

.hero-background-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #CBD5E1;
  max-width: 780px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.stat-card .plus, .stat-card .percent {
  font-size: 1.8rem;
  color: var(--gold-primary);
  font-weight: 800;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: #94A3B8;
  font-weight: 600;
}

.hero-search-wrapper {
  background: rgba(11, 19, 43, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  text-align: left;
  margin-top: 20px;
}

.search-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
  overflow-x: auto;
}

.search-tab {
  background: transparent;
  border: none;
  color: #94A3B8;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.search-tab.active, .search-tab:hover {
  background: var(--gold-primary);
  color: var(--primary-navy);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #CBD5E1;
}

.form-group label i {
  color: var(--gold-primary);
}

.form-group input, .form-group select, .form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--white);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.14);
}

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

.search-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.fare-preview {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fare-label {
  font-size: 0.9rem;
  color: #94A3B8;
}

.fare-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   7. Sections Common
   -------------------------------------------------------------------------- */
.section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--primary-navy);
  font-weight: 800;
  margin-bottom: 12px;
}

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

/* --------------------------------------------------------------------------
   8. Fleet Section
   -------------------------------------------------------------------------- */
.fleet-filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.fleet-filter-btn {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.fleet-filter-btn.active, .fleet-filter-btn:hover {
  background: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.4);
}

.fleet-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold-primary);
  color: #0B132B;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 5;
}

.fleet-badge.luxury {
  background: var(--primary-navy);
  color: var(--gold-light);
}

.fleet-img-box {
  height: 210px;
  background: linear-gradient(180deg, #F8FAFC 0%, #E2E8F0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.fleet-img-box img {
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
  transition: transform var(--transition-normal);
}

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

.fleet-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.fleet-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #475569;
}

.fleet-specs span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fleet-specs span i {
  color: var(--gold-dark);
}

.fleet-pricing {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.price-box .price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.price-box .unit {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. Rate Card Table Section
   -------------------------------------------------------------------------- */
.rate-card-section {
  background: var(--white);
}

.table-responsive {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--white);
}

.rate-table th {
  background: var(--primary-navy);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 20px;
}

.rate-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.92rem;
  color: var(--text-dark);
}

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

.rate-table tbody tr:hover {
  background-color: #F8FAFC;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
}

.badge-gold {
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold-dark);
}

.badge-navy {
  background: rgba(11, 19, 43, 0.12);
  color: var(--primary-navy);
}

.table-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* --------------------------------------------------------------------------
   10. Packages Section
   -------------------------------------------------------------------------- */
.package-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pkg-tab-btn {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.pkg-tab-btn.active, .pkg-tab-btn:hover {
  background: var(--gold-primary);
  color: var(--primary-navy);
  border-color: var(--gold-primary);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

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

.pkg-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.pkg-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
}

.pkg-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pkg-location {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.pkg-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pkg-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pkg-highlights {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: #475569;
}

.pkg-highlights span i {
  color: #10B981;
  margin-right: 6px;
}

.pkg-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  gap: 12px;
}

.pkg-price .from {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.pkg-price .amount {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.pkg-price .per {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pkg-action-btns {
  display: flex;
  gap: 8px;
}

/* --------------------------------------------------------------------------
   11. Social Proof Toast Notification
   -------------------------------------------------------------------------- */
.social-proof-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 2400;
  max-width: 320px;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-proof-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-avatar {
  width: 38px;
  height: 38px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.toast-body h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 2px;
}

.toast-body p {
  font-size: 0.78rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.toast-body span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.toast-close {
  position: absolute;
  top: 4px;
  right: 8px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   12. FAQ Accordion & Services
   -------------------------------------------------------------------------- */
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--gold-primary);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  color: var(--gold-dark);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
}

.service-img {
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

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

.service-img img.contain-img {
  object-fit: contain;
  background: #F1F5F9;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.service-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  color: var(--primary-navy);
}

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

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 19, 43, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: var(--white);
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.gallery-overlay span {
  font-size: 0.75rem;
  color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   13. Features & Testimonials
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-navy), var(--navy-light));
  color: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(11, 19, 43, 0.2);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

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

.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.review-rating {
  color: #F59E0B;
  margin-bottom: 14px;
}

.review-text {
  font-style: italic;
  font-size: 0.92rem;
  color: #334155;
  margin-bottom: 20px;
}

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

.reviewer-avatar {
  width: 42px;
  height: 42px;
  background: var(--primary-navy);
  color: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.reviewer-info h4 {
  font-size: 0.95rem;
  color: var(--primary-navy);
}

.reviewer-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   14. CTA Banner, Footer & Floating WhatsApp Widget
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, #0B132B 0%, #1C2541 100%);
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta-content p {
  color: #CBD5E1;
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Floating Sticky Call & WhatsApp Widgets */
.floating-call-btn {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1A2B4C 0%, #0B132B 100%);
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2500;
  box-shadow: 0 8px 25px rgba(11, 19, 43, 0.5);
  animation: pulseCall 2s infinite;
  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
  text-decoration: none;
}

.floating-call-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  color: #0B132B;
}

.call-tooltip {
  position: absolute;
  right: 70px;
  background: var(--primary-navy);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.floating-call-btn:hover .call-tooltip {
  opacity: 1;
}

@keyframes pulseCall {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Floating WhatsApp Widget */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-green);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 2500;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  animation: pulseWhatsApp 2s infinite;
  transition: transform var(--transition-fast);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: var(--whatsapp-dark);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--primary-navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes pulseWhatsApp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.footer {
  background-color: #070D1E;
  color: #94A3B8;
  padding-top: 70px;
}

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

.footer-about {
  font-size: 0.88rem;
  margin: 16px 0 24px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--gold-primary);
  color: var(--primary-navy);
}

.footer-heading {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.footer-contact i {
  color: var(--gold-primary);
  margin-top: 3px;
}

.footer-bottom {
  padding: 20px 0;
  font-size: 0.82rem;
  text-align: center;
}

/* --------------------------------------------------------------------------
   15. Modals (Itinerary & Booking)
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.lightbox-content img {
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
}

.lightbox-caption {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-top: 12px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 19, 43, 0.7);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform var(--transition-bounce);
}

.modal-dialog.modal-lg {
  max-width: 720px;
}

.modal.active .modal-dialog {
  transform: scale(1);
}

.modal-header {
  background: var(--primary-navy);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-light);
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-body {
  padding: 24px;
}

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

.modal-body .form-group label {
  color: var(--text-dark);
}

.modal-body .form-group input, .modal-body .form-group textarea {
  background: #F8FAFC;
  border-color: var(--border-color);
  color: var(--text-dark);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--gold-primary);
}

.timeline-item {
  position: relative;
}

.timeline-badge {
  position: absolute;
  left: -31px;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-navy);
  border: 3px solid var(--gold-primary);
  border-radius: 50%;
}

.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   16. Responsive Media Queries
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   16. Comprehensive Mobile-First & Responsive Media Queries
   -------------------------------------------------------------------------- */

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

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

/* --- Large Tablets & Laptops (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .packages-grid, .fleet-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

/* --- Medium Tablets & Mobile Landscape (max-width: 768px) --- */
@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 6px 0;
  }

  .top-info {
    justify-content: center;
    gap: 12px;
    font-size: 0.78rem;
    flex-wrap: wrap;
  }

  .top-actions {
    justify-content: center;
    gap: 10px;
  }

  .header {
    padding: 12px 0;
  }

  .logo-title {
    font-size: 1.15rem;
  }

  .logo-tagline {
    font-size: 0.62rem;
    letter-spacing: 1px;
  }

  .hero {
    padding: 100px 0 50px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.35;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
  }

  .stat-card {
    padding: 12px 8px;
    background: rgba(11, 19, 43, 0.55);
    border-radius: var(--radius-sm);
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  /* Booking Search Engine Responsive */
  .search-tabs {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    gap: 6px;
    margin-bottom: 16px;
  }

  .search-tab {
    padding: 8px 14px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .search-action-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    text-align: center;
  }

  .fare-preview {
    text-align: center;
    padding: 8px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-sm);
  }

  .search-action-bar button {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 0.95rem;
  }

  /* Intro Blog Card Responsive */
  .intro-blog-wrapper {
    padding: 24px 18px;
  }

  .intro-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .intro-main-title {
    font-size: 1.45rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .intro-action-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 16px;
  }

  .banner-owner-info {
    flex-direction: column;
    text-align: center;
  }

  .banner-whatsapp-btn {
    width: 100%;
    justify-content: center;
  }

  /* Grids & Cards */
  .fleet-grid, .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fleet-filter-bar, .package-tabs {
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .fleet-filter-btn, .pkg-tab-btn {
    flex-shrink: 0;
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  .rate-table th, .rate-table td {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* --- Smartphones (max-width: 480px) --- */
@media (max-width: 480px) {
  .top-info span:nth-child(2), .top-info span:nth-child(3) {
    display: none;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stat-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 14px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .pkg-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

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

  .pkg-action-btns {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .pkg-action-btns button {
    width: 100%;
  }

  /* Floating Widgets Mobile Layout */
  .floating-whatsapp-btn {
    bottom: 18px;
    right: 14px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .floating-call-btn {
    bottom: 76px;
    right: 14px;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .whatsapp-tooltip, .call-tooltip {
    display: none;
  }

  .social-proof-toast {
    bottom: 138px;
    left: 12px;
    right: 12px;
    max-width: none;
    padding: 10px 12px;
  }

  .toast-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .toast-body h5 {
    font-size: 0.82rem;
  }

  .toast-body p {
    font-size: 0.75rem;
  }

  /* Modals Touch Optimized */
  .modal-dialog {
    max-width: 94vw;
    padding: 16px;
    border-radius: var(--radius-md);
  }

  .modal-title {
    font-size: 1.1rem;
  }

  .modal-body {
    padding: 16px 8px;
  }
}

/* --- Ultra-compact Phones (max-width: 360px) --- */
@media (max-width: 360px) {
  .logo-title {
    font-size: 1rem;
  }
  .brand-logo svg {
    width: 34px;
    height: 34px;
  }
  .hero-title {
    font-size: 1.4rem;
  }
  .search-action-bar button {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   ABOUT US & INTERACTIVE ANIMATED COMPONENTS
   ========================================================================== */

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

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.75);
  }
}

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

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-70px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateX(10px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.newly-added-review {
  border: 2px solid var(--gold-primary) !important;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.45) !important;
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards, pulseGlow 3s infinite 0.8s;
}

@keyframes pulsePing {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* Scroll Reveal Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* About Us Animated Components */
.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  animation: pulseGlow 3s infinite ease-in-out;
}

.glass-kpi-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glass-kpi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(212, 175, 55, 0.25);
  border-color: var(--gold-primary);
}

.glass-kpi-card:hover::before {
  opacity: 1;
}

.kpi-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 6px;
}

.kpi-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Animated Timeline System */
.timeline-container {
  position: relative;
  max-width: 860px;
  margin: 40px auto 0;
  padding: 10px 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-primary), var(--navy-accent));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-block {
  position: relative;
  margin-bottom: 40px;
  width: 50%;
  padding: 0 30px;
}

.timeline-block.left {
  left: 0;
  text-align: right;
}

.timeline-block.right {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 15px;
  width: 20px;
  height: 20px;
  background: var(--gold-primary);
  border: 4px solid var(--primary-navy);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulsePing 2.5s infinite;
}

.timeline-block.left .timeline-dot {
  right: -10px;
}

.timeline-block.right .timeline-dot {
  left: -10px;
}

.timeline-card-box {
  background: #FFFFFF;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.35s ease;
}

.timeline-card-box:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(11, 19, 43, 0.15);
  border-color: var(--gold-primary);
}

.timeline-year {
  display: inline-block;
  background: var(--primary-navy);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .timeline-container::before {
    left: 20px;
  }
  .timeline-block {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
  }
  .timeline-block.left, .timeline-block.right {
    left: 0;
    text-align: left;
  }
  .timeline-block.left .timeline-dot, .timeline-block.right .timeline-dot {
    left: 10px;
    right: auto;
  }
}

/* ==========================================================================
   BLOG WELCOME INTRO ANIMATED SECTION STYLES
   ========================================================================== */
.welcome-intro-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  padding: 50px 0 20px;
}

.intro-blog-wrapper {
  background: #FFFFFF;
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.intro-blog-wrapper:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.25);
}

.blog-glow-orb {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
  pointer-events: none;
  animation: floatSlow 6s infinite ease-in-out;
}

.blog-glow-orb-secondary {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(26, 43, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: floatSlow 8s infinite ease-in-out reverse;
}

.intro-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 16px;
}

.pulse-glow-badge {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-dark);
  border: 1px solid var(--gold-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  animation: pulseGlow 3s infinite ease-in-out;
}

.gold-sparkle-icon {
  color: var(--gold-primary);
  animation: spinSlow 8s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.trust-pill {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
  background: rgba(11, 19, 43, 0.08);
  padding: 5px 16px;
  border-radius: var(--radius-full);
}

.intro-main-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: var(--primary-navy);
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 800;
}

.animated-gradient {
  background: linear-gradient(135deg, #FFE07D 0%, #D4AF37 50%, #996515 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineGradient 4s linear infinite;
}

@keyframes shineGradient {
  to { background-position: 200% center; }
}

.intro-blog-lead {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Expandable Extra Blog Content */
.expandable-blog-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), opacity 0.4s ease;
  opacity: 0;
}

.expandable-blog-content.open {
  max-height: 500px;
  opacity: 1;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  margin-bottom: 24px;
}

.blog-extra-box {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.blog-extra-box h4 {
  color: var(--primary-navy);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-extra-box p {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.blog-toggle-wrapper {
  margin-bottom: 28px;
}

.blog-toggle-btn {
  font-size: 0.88rem;
  padding: 8px 20px;
  border-radius: var(--radius-full);
}

/* Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.pillar-card {
  background: #F8FAFC;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-left: 4px solid var(--gold-primary);
  padding: 18px;
  border-radius: var(--radius-sm);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pillar-card:hover {
  transform: translateY(-6px);
  background: #FFFFFF;
  border-color: var(--gold-primary);
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.22);
}

.pillar-icon-box {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--primary-navy);
  color: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon-box {
  background: var(--gold-primary);
  color: var(--primary-navy);
  transform: rotate(12deg) scale(1.1);
}

.pillar-text h3 {
  font-size: 0.98rem;
  color: var(--primary-navy);
  margin-bottom: 4px;
  font-weight: 700;
}

.pillar-text p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Action Banner */
.intro-action-banner {
  background: linear-gradient(135deg, #0B132B 0%, #1A2B4C 100%);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.banner-owner-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.banner-icon-pulse {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.4rem;
  animation: pulseGlow 2.5s infinite ease-in-out;
}

.banner-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.banner-sub {
  font-size: 0.82rem;
  color: #CBD5E1;
}

.banner-whatsapp-btn {
  padding: 10px 24px;
  font-size: 0.88rem;
}

