/* ==========================================================================
   Safar Tour and Travels - Main Stylesheet (Vanilla CSS)
   Complete Scratch Rebuild - Premium Travel Operator Design System
   ========================================================================== */

:root {
  /* Brand Colors - Deep Heritage Navy, Warm Gold, Clean White, Warm Terracotta/Orange CTA */
  --primary: #d9531e;          /* Warm Terracotta / Energetic Travel Orange */
  --primary-hover: #b83f10;
  --primary-light: #fff5f0;
  --primary-border: #fed7aa;
  
  --secondary: #0b1e36;        /* Deep Midnight / Royal Navy */
  --secondary-hover: #132d4e;
  --secondary-light: #f0f4f9;

  /* Safar Premium Navy Navbar System */
  --nav-bg: #081827;           /* Deep Heritage Navy */
  --nav-bg-elevated: #0d2238;  /* Elevated Navy for controls/cards */
  --nav-text: #ffffff;
  --nav-text-muted: #cbd5e1;
  --brand-gold: #d4af37;       /* Warm Regal Gold */
  --cta-orange: #d9531e;
  --header-height: 74px;
  
  --accent-gold: #d4af37;      /* Warm Regal Gold */
  --accent-gold-light: #fdf8eb;
  --accent-gold-border: #f0d59e;
  
  --whatsapp: #25D366;
  --whatsapp-hover: #1da851;
  
  /* Neutrals */
  --text-main: #1e293b;        /* Crisp Charcoal Slate */
  --text-muted: #576574;       /* Readable Medium Grey */
  --text-light: #8395a7;       /* Soft Light Grey */
  --text-white: #ffffff;
  
  /* Backgrounds */
  --bg-main: #ffffff;
  --bg-warm: #faf8f5;          /* Warm Subtle Off-White for alternate sections */
  --bg-subtle: #f4f6fa;        /* Soft Cool Grey for cards */
  --bg-dark: #0b1e36;          /* Deep Navy Footer / Accent blocks */
  --bg-dark-card: #132a48;
  
  --border-color: #e2e8f0;
  --border-subtle: #edf2f7;
  
  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  /* Elevation & Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(11, 30, 54, 0.08);
  --shadow-lg: 0 12px 24px -4px rgba(11, 30, 54, 0.12);
  --shadow-card-hover: 0 18px 36px -6px rgba(11, 30, 54, 0.15);
  
  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
  
  --container-max: 1240px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
p:last-child { margin-bottom: 0; }

.text-primary { color: var(--primary); }
.text-gold { color: var(--accent-gold); }
.text-secondary { color: var(--secondary); }
.text-white { color: #ffffff; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(217, 83, 30, 0.25);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: #ea5a24;
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(217, 83, 30, 0.35);
}

.btn-secondary {
  background-color: var(--secondary);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: #0f2744;
  border-color: var(--brand-gold);
  color: var(--brand-gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(11, 30, 54, 0.25);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(194, 142, 43, 0.25);
}
.btn-gold:hover,
.btn-gold:focus-visible {
  background-color: #bb9128;
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(194, 142, 43, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--secondary);
  border-color: var(--border-color);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background-color: var(--secondary-light);
  border-color: var(--brand-gold);
  color: var(--secondary);
  transform: translateY(-1px);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-outline-white:hover,
.btn-outline-white:focus-visible {
  background-color: #ffffff;
  color: var(--secondary);
  border-color: #ffffff;
  transform: translateY(-1px);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background-color: #20bd5a;
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(37, 211, 102, 0.35);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
  border-radius: var(--radius-xs);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.05rem;
}

/* ==========================================================================
   1. Top Information Bar
   ========================================================================== */
.top-header {
  display: none;
}

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

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

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-info-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.top-contacts {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-weight: 600;
  transition: color var(--transition-fast);
}
.top-contact-link:hover {
  color: var(--accent-gold);
}

/* ==========================================================================
   2. Sticky Navigation Bar (Safar Deep Navy & Gold Luxury Palette)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--nav-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.site-header.scrolled {
  background-color: #06121f;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(212, 175, 55, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

/* Keep page content clear of the fixed navigation on every page. */
body {
  padding-top: var(--header-height);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--nav-text-muted);
  padding: 8px 0;
  position: relative;
  transition: color 0.25s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.active {
  color: var(--brand-gold);
  font-weight: 700;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #d4af37, #fef08a, #d4af37);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--nav-text-muted);
  padding: 4px 0;
  position: relative;
  transition: color 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown-toggle:hover {
  color: #ffffff;
}

.nav-dropdown-toggle svg {
  transition: transform 0.2s ease;
  stroke-width: 3;
}

.nav-dropdown.active .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(11, 30, 54, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  min-width: 200px;
  margin-top: 8px;
  display: none;
  flex-direction: column;
  gap: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nav-dropdown.active .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-item {
  color: #cbd5e1;
  text-decoration: none;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s ease;
  display: block;
  border: none;
  background: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
}

.nav-dropdown-item:first-child {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.nav-dropdown-item:last-child {
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.nav-dropdown-item:hover {
  background: rgba(212, 175, 55, 0.15);
  color: #fbd38d;
  padding-left: 20px;
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background-color: var(--nav-bg-elevated);
  border: 1px solid rgba(212, 175, 55, 0.35);
  transition: all var(--transition-fast);
  text-decoration: none;
}
.nav-phone-btn svg {
  color: var(--brand-gold);
}
.nav-phone-btn:hover {
  background-color: #122c47;
  border-color: var(--brand-gold);
  color: #ffffff;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background-color: var(--nav-bg-elevated);
  border: 1px solid rgba(212, 175, 55, 0.4);
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}
.mobile-toggle:hover,
.mobile-toggle:focus-visible {
  border-color: var(--brand-gold);
  background-color: #122c47;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.hamburger-bar {
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, background 0.2s ease;
}

.mobile-toggle:hover .hamburger-bar,
.mobile-toggle:focus-visible .hamburger-bar {
  background: linear-gradient(90deg, #d4af37, #fef08a);
  box-shadow: 0 0 4px rgba(212, 175, 55, 0.6);
}

.mobile-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--brand-gold);
}
.mobile-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--brand-gold);
}

/* ==========================================================================
   3. Hero Section (Visual Photography Slideshow + Rich Content)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
  background-color: #0b1e36;
}

/* Slideshow Container */
.hero-slideshow {
  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 cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.03);
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 6s linear;
}

/* Subtle Natural Contrast Overlay (NOT heavy opaque blue) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(11, 30, 54, 0.85) 0%,
    rgba(11, 30, 54, 0.65) 45%,
    rgba(11, 30, 54, 0.25) 100%
  );
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  max-width: 640px;
}

.hero-vehicle-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: end;
}

.hero-vehicle-tile {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  color: var(--secondary);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-vehicle-tile:hover,
.hero-vehicle-tile:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.hero-vehicle-tile img {
  width: 100%;
  height: 155px;
  object-fit: contain;
  background: #ffffff;
}

.hero-vehicle-tile span {
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fbd38d;
  margin-bottom: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--accent-gold);
}

.hero-title {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1.08rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: #f1f5f9;
}
.trust-item svg {
  color: #fbd38d;
  flex-shrink: 0;
}

/* Hero Right Side Vehicle / Travel Showcase Card */
.hero-visual-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform var(--transition-normal);
}

.hero-visual-badge {
  display: inline-block;
  background-color: var(--secondary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.hero-visual-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.hero-visual-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

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

.hero-visual-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: var(--secondary);
  font-weight: 600;
}

.hero-visual-spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-warm);
  padding: 6px 10px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-color);
}

/* Hero Slider Controls */
.hero-slider-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 50;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hero-slider-dot.active {
  background: #ffffff;
  width: 12px;
  height: 12px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* Mouse Follow Mini SVG Vehicle Interaction for Desktop */
.hero-cursor-vehicle {
  position: fixed;
  width: 36px;
  height: 22px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  display: block;
}

/* ==========================================================================
   4. Quick Intro Section
   ========================================================================== */
.intro-section {
  padding: 80px 0;
  background-color: var(--bg-main);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  color: var(--secondary);
  margin-bottom: 16px;
  line-height: 1.22;
}

.section-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}

.intro-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.intro-stat-card {
  background: var(--bg-warm);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: var(--radius-md);
}

.intro-stat-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.intro-stat-title svg {
  color: var(--primary);
}

.intro-stat-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.intro-media-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-media-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.intro-media-box:hover .intro-media-img {
  transform: scale(1.03);
}

.intro-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(11, 30, 54, 0.9);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.intro-badge-overlay strong {
  color: #fbd38d;
  display: block;
  font-size: 0.95rem;
}
.intro-badge-overlay span {
  font-size: 0.82rem;
  color: #e2e8f0;
}

/* ==========================================================================
   5. Our Fleet Section
   ========================================================================== */
.fleet-section {
  padding: 85px 0;
  background-color: var(--bg-warm);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px auto;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.fleet-category-section {
  display: flex;
  flex-direction: column;
}

.fleet-category-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.fleet-category-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.fleet-category-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 700px;
}

.fleet-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  cursor: pointer;
}

.fleet-card:hover,
.fleet-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(11, 30, 54, 0.14);
  border-color: rgba(212, 175, 55, 0.4);
}

.fleet-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--secondary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
  transition: background-color 0.25s ease;
}

.fleet-card-badge.gold {
  background: var(--accent-gold);
}

.fleet-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
  position: relative;
}

.fleet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-card:hover .fleet-img,
.fleet-card:focus-visible .fleet-img {
  transform: scale(1.05);
}

.fleet-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-category {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.fleet-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
  transition: color 0.25s ease;
}
.fleet-card:hover .fleet-title {
  color: var(--secondary);
}

.fleet-bestfor {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 14px;
}

.fleet-specs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.spec-pill {
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--bg-subtle);
  color: var(--secondary);
  padding: 4px 8px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-subtle);
}

.fleet-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}
.fleet-card:hover .fleet-actions .btn-primary {
  background-color: #ea5a24;
  transform: translateY(-1px);
}

/* ==========================================================================
   6. Services Section
   ========================================================================== */
.services-section {
  padding: 85px 0;
  background-color: var(--bg-main);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(11, 30, 54, 0.09);
  border-color: rgba(212, 175, 55, 0.5);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon-box {
  transform: scale(1.06);
  background-color: #feebe3;
}

.service-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
  transition: color 0.25s ease;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.25s ease, color 0.25s ease;
}
.service-card:hover .service-link {
  color: var(--primary-hover);
  gap: 8px;
}

/* ==========================================================================
   7. Popular Tour Experiences / Packages
   ========================================================================== */
.tours-section {
  padding: 85px 0;
  background-color: var(--bg-warm);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tour-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  text-decoration: none;
  color: inherit;
}

.tour-card:hover,
.tour-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(11, 30, 54, 0.12);
  border-color: rgba(212, 175, 55, 0.35);
}

.tour-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card:hover .tour-img,
.tour-card:focus-visible .tour-img {
  transform: scale(1.05);
}

.tour-duration-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(11, 30, 54, 0.88);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  transition: background-color 0.25s ease;
}
.tour-card:hover .tour-duration-badge {
  background: rgba(8, 24, 39, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.tour-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.tour-dest-covered {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

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

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.tour-price-label {
  font-size: 0.75rem;
  color: var(--text-light);
  display: block;
}

.tour-price-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--secondary);
}

/* ==========================================================================
   8. Destinations Visual Browsing Grid
   ========================================================================== */
.dest-section {
  padding: 85px 0;
  background-color: var(--bg-main);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.dest-card {
  position: relative;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.dest-card:hover,
.dest-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(11, 30, 54, 0.22);
}

.dest-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-card:hover .dest-bg-img,
.dest-card:focus-visible .dest-bg-img {
  transform: scale(1.06);
}

.dest-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(11, 30, 54, 0.85) 100%);
  z-index: 2;
  transition: background 0.35s ease;
}
.dest-card:hover .dest-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(8, 24, 39, 0.92) 100%);
}

.dest-content {
  position: relative;
  z-index: 3;
  transition: transform 0.3s ease;
}
.dest-card:hover .dest-content {
  transform: translateY(-3px);
}

.dest-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.dest-subtitle {
  font-size: 0.82rem;
  color: #fbd38d;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.25s ease, color 0.25s ease;
}
.dest-card:hover .dest-subtitle {
  color: var(--brand-gold);
  gap: 8px;
}

.dest-content {
  position: relative;
  z-index: 3;
}

.dest-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.dest-subtitle {
  font-size: 0.82rem;
  color: #fbd38d;
  font-weight: 600;
}

/* ==========================================================================
   9. Why Choose Safar
   ========================================================================== */
.why-section {
  padding: 85px 0;
  background-color: var(--bg-dark);
  color: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.why-media-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.why-title {
  color: #ffffff;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  margin-bottom: 16px;
}

.why-desc {
  color: #cdd6e3;
  font-size: 1.02rem;
  margin-bottom: 30px;
}

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-feature-item {
  display: flex;
  gap: 12px;
}

.why-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background: rgba(194, 142, 43, 0.2);
  color: #fbd38d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feature-item h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 4px;
}

.why-feature-item p {
  color: #94a3b8;
  font-size: 0.84rem;
  line-height: 1.45;
  margin-bottom: 0;
}

/* ==========================================================================
   10. Travel By Vehicle / Experience Matching
   ========================================================================== */
.experience-section {
  padding: 85px 0;
  background-color: var(--bg-main);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.exp-card {
  background: var(--bg-warm);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-normal);
}
.exp-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.exp-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.exp-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.exp-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.exp-recommended {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
}

/* ==========================================================================
   11. How Safar Works (Timeline)
   ========================================================================== */
.how-section {
  padding: 85px 0;
  background-color: var(--bg-warm);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}

.how-step-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xs);
}

.how-step-num {
  width: 44px;
  height: 44px;
  background: var(--secondary);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  border: 3px solid var(--accent-gold);
}

.how-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.how-step-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0;
}

/* ==========================================================================
   12. Testimonials
   ========================================================================== */
.testimonials-section {
  padding: 85px 0;
  background-color: var(--bg-main);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-warm);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.test-stars {
  color: #f59e0b;
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.test-text {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.test-author-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}

.test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--secondary);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.test-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
}

.test-route {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   13. Travel Guide Section
   ========================================================================== */
.guide-section {
  padding: 85px 0;
  background-color: var(--bg-warm);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.guide-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  text-decoration: none;
  color: inherit;
}

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

.guide-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.guide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.guide-card:hover .guide-img {
  transform: scale(1.05);
}

.guide-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.guide-cat {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.guide-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.guide-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.guide-readmore {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

/* ==========================================================================
   14. FAQ Section
   ========================================================================== */
.faq-section {
  padding: 85px 0;
  background-color: var(--bg-main);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-warm);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

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

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

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  padding-bottom: 18px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   15. Quotation & Booking Enquiry Form Section
   ========================================================================== */
.quote-section {
  padding: 85px 0;
  background-color: var(--bg-warm);
}

.quote-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
}

.quote-header {
  text-align: center;
  margin-bottom: 30px;
}

.quote-title {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--secondary);
  margin-bottom: 8px;
}

.quote-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 100%;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--secondary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-main);
  color: var(--text-main);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 83, 30, 0.15);
}

.form-submit-btn {
  width: 100%;
  margin-top: 8px;
  font-size: 1.05rem;
}

/* ==========================================================================
   16. Google Maps + Contact Section
   ========================================================================== */
.contact-map-section {
  padding: 85px 0;
  background-color: var(--bg-main);
}

.contact-map-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

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

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--secondary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.contact-item a:hover {
  color: var(--primary);
}

.map-wrapper {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   17. Site Footer
   ========================================================================== */
.site-footer {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 70px 0 24px;
  border-top: 3px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 48px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-desc {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.88rem;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand-gold);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: #cbd5e1;
  margin-bottom: 12px;
}
.footer-contact-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s ease;
}
.social-icon-btn:hover,
.social-icon-btn:focus-visible {
  background: var(--nav-bg-elevated);
  border-color: var(--brand-gold);
  color: var(--brand-gold);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  color: #64748b;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  color: #94a3b8;
}
.footer-legal-links a:hover {
  color: #fbd38d;
}

/* ==========================================================================
   18. Subpages Specific Styling (Hero, Breadcrumbs, Editorial, Detail Grid)
   ========================================================================== */
.page-hero {
  position: relative;
  background-color: var(--secondary);
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 60px 0;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(11, 30, 54, 0.92) 0%, rgba(11, 30, 54, 0.7) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.back-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(-4px);
}
.back-link svg {
  stroke-width: 2.5;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 1.05rem;
  color: #e2e8f0;
  margin-bottom: 0;
}

.detail-content-section {
  padding: 70px 0;
  background-color: var(--bg-main);
}

.detail-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

.detail-main-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: var(--bg-warm);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
}

.sidebar-card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

/* ==========================================================================
   19. Final High Impact CTA Section
   ========================================================================== */
.final-cta-section {
  padding: 75px 0;
  background: linear-gradient(135deg, #0b1e36 0%, #132d4e 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fbd38d;
  margin-bottom: 10px;
}

.final-cta-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 14px;
}

.final-cta-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 620px;
  margin: 0 auto 30px auto;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   20. Fixed Mobile Bottom CTA Bar & AI Chatbot
   ========================================================================== */
.fixed-cta-bar {
  display: none;
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--whatsapp);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 990;
  transition: transform var(--transition-fast);
}
.floating-whatsapp:hover {
  transform: scale(1.08);
}

.floating-call-now {
  position: fixed;
  right: 24px;
  bottom: 154px;
  z-index: 990;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 7px 20px rgba(217, 83, 30, 0.42);
  animation: call-now-bounce 1.8s ease-in-out infinite;
}

.floating-call-now:hover,
.floating-call-now:focus-visible {
  animation-play-state: paused;
  background: var(--primary-hover);
  color: #ffffff;
  transform: scale(1.06);
}

@keyframes call-now-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.chatbot-trigger {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: #ffffff;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 4px 18px rgba(11, 30, 54, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 990;
  transition: transform var(--transition-fast);
}
.chatbot-trigger:hover {
  transform: scale(1.08);
}

.chatbot-panel {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 120px);
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.chatbot-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  background: var(--secondary);
  color: #ffffff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-title-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-title {
  font-size: 0.95rem;
  font-weight: 700;
}

.chatbot-status {
  font-size: 0.72rem;
  color: #86efac;
  display: flex;
  align-items: center;
  gap: 4px;
}
.chatbot-status-dot {
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
}

.chatbot-close-btn {
  background: none;
  border: none;
  color: #cbd5e1;
  cursor: pointer;
  padding: 4px;
}
.chatbot-close-btn:hover {
  color: #ffffff;
}

.chatbot-messages {
  flex-grow: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-warm);
}

.chat-msg {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  line-height: 1.45;
  max-width: 85%;
}

.chat-msg.bot {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-msg.user {
  background: var(--primary);
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-quick-replies {
  padding: 8px 12px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
}

.quick-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.quick-btn:hover {
  background: var(--secondary-light);
  border-color: var(--secondary);
}

.chatbot-input-bar {
  padding: 10px 14px;
  display: flex;
  gap: 8px;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
}

.chatbot-input {
  flex-grow: 1;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.88rem;
}
.chatbot-input:focus {
  outline: none;
  border-color: var(--primary);
}

.chatbot-send-btn {
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0 12px;
  cursor: pointer;
}

/* ==========================================================================
   20. Safar Travel Gallery & Asymmetric Visual Layout
   ========================================================================== */
.gallery-section {
  padding: 70px 0 90px;
  background-color: var(--bg-main);
}

.gallery-filters-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.gallery-filter-btn {
  padding: 10px 22px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: var(--secondary);
  border: 1px solid var(--border-color);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gallery-filter-btn:hover {
  border-color: var(--brand-gold);
  color: var(--secondary);
  transform: scale(1.03);
  box-shadow: var(--shadow-sm);
}

.gallery-filter-btn.active {
  background: var(--secondary);
  color: var(--brand-gold);
  border-color: var(--brand-gold);
  box-shadow: 0 4px 14px rgba(11, 30, 54, 0.2);
}

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

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #0f172a;
  cursor: pointer;
  height: 230px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  border: 1px solid var(--border-color);
  outline: none;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11, 30, 54, 0.2);
  border-color: var(--brand-gold);
}

.gallery-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-img,
.gallery-card:focus-visible .gallery-img {
  transform: scale(1.06);
}

.gallery-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 18, 31, 0.88) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  z-index: 2;
}

.gallery-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-gold);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

.gallery-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
}

.gallery-card-video .video-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.88);
  border: 2px solid var(--brand-gold);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.gallery-card-video:hover .video-play-badge {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--secondary);
}

.video-play-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-duration {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
}

/* ==========================================================================
   21. Gallery Lightbox Modal
   ========================================================================== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 31, 0.95);
  backdrop-filter: blur(8px);
}

.lightbox-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 92%;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image-wrap {
  position: relative;
  max-width: 100%;
  max-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b1e36;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.25);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
}

.lightbox-image {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-md);
}

.lightbox-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 12px 20px;
  background: rgba(18, 44, 71, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-sm);
  color: #ffffff;
}

.lightbox-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lightbox-category-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lightbox-caption {
  font-size: 0.94rem;
  color: #f8fafc;
}

.lightbox-counter {
  font-size: 0.88rem;
  font-weight: 700;
  color: #94a3b8;
  white-space: nowrap;
}

.lightbox-btn {
  position: absolute;
  background: rgba(18, 44, 71, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.lightbox-btn:hover,
.lightbox-btn:focus-visible {
  background: var(--brand-gold);
  color: #081827;
  border-color: var(--brand-gold);
  transform: scale(1.08);
}

.lightbox-close {
  top: -56px;
  right: 0;
  width: 42px;
  height: 42px;
}

.lightbox-prev {
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.08);
}

.lightbox-next {
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.08);
}

/* Lightbox Mobile Adjustments */
@media (max-width: 768px) {
  .lightbox-prev {
    left: 8px;
    top: auto;
    bottom: -60px;
    transform: none;
  }
  .lightbox-prev:hover {
    transform: scale(1.08);
  }
  .lightbox-next {
    right: 8px;
    top: auto;
    bottom: -60px;
    transform: none;
  }
  .lightbox-next:hover {
    transform: scale(1.08);
  }
  .lightbox-close {
    top: -48px;
    right: 8px;
  }
  .gallery-span-12,
  .gallery-span-8,
  .gallery-span-6,
  .gallery-span-4,
  .gallery-span-3,
  .gallery-card.tall {
    grid-column: span 12;
    height: 280px;
  }
}
