/* ============================================================
   SHARM EXCURSIONS — Design System
   Premium Tourism & Excursions Booking Website
   Color Palette: Turquoise, Aqua, Sand, White, Coral
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Primary Colors */
  --primary: #0891B2;
  --primary-dark: #0E7490;
  --primary-darker: #155E75;
  --primary-light: #22D3EE;
  --primary-lighter: #67E8F9;
  --primary-50: #ECFEFF;
  --primary-100: #CFFAFE;

  /* Accent Colors */
  --accent: #F97316;
  --accent-dark: #EA580C;
  --accent-light: #FB923C;

  /* Coral */
  --coral: #FF6B6B;
  --coral-light: #FFA5A5;
  --coral-dark: #E05252;

  /* Sand */
  --sand: #F4E8C1;
  --sand-light: #FDF6E3;
  --sand-dark: #D4C5A0;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Semantic Colors */
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #3B82F6;

  /* Navy */
  --navy: #1B2A4A;
  --navy-light: #2D3F5E;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0891B2 0%, #22D3EE 100%);
  --gradient-ocean: linear-gradient(135deg, #0077B6 0%, #00B4D8 50%, #90E0EF 100%);
  --gradient-sunset: linear-gradient(135deg, #F97316 0%, #FB923C 50%, #FCD34D 100%);
  --gradient-hero: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.3) 100%);
  --gradient-card: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-arabic: 'Cairo', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-card: 0 4px 20px rgba(8,145,178,0.08);
  --shadow-card-hover: 0 12px 40px rgba(8,145,178,0.15);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Z-Index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-overlay: 400;
  --z-modal: 500;
  --z-toast: 600;

  /* Container */
  --container-max: 1280px;
  --container-narrow: 960px;
}

/* --- Reset / Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body[dir="rtl"] {
  font-family: var(--font-arabic);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

body[dir="rtl"] h1,
body[dir="rtl"] h2,
body[dir="rtl"] h3,
body[dir="rtl"] h4,
body[dir="rtl"] h5,
body[dir="rtl"] h6 {
  font-family: var(--font-arabic);
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-20) 0;
}

.section-sm {
  padding: var(--space-12) 0;
}

.section-bg {
  background-color: var(--gray-50);
}

.section-sand {
  background-color: var(--sand-light);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.section-header .section-badge {
  display: inline-block;
  background: var(--primary-100);
  color: var(--primary-dark);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray-500); }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* --- Grid System --- */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ==========================================================
   NAVIGATION
   ========================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: var(--space-4) 0;
  transition: all var(--transition);
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: var(--space-2) 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  z-index: 10;
}

.navbar-brand .logo {
  height: 42px;
  width: auto;
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
}

.navbar-brand .brand-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  transition: color var(--transition);
}

.navbar.scrolled .brand-name {
  color: var(--primary-dark);
}

.navbar-brand .brand-tagline {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  transition: color var(--transition);
}

.navbar.scrolled .brand-tagline {
  color: var(--gray-500);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.navbar-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
  padding: var(--space-1) 0;
}

.navbar.scrolled .navbar-links a {
  color: var(--gray-700);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--primary-light);
}

.navbar.scrolled .navbar-links a:hover,
.navbar.scrolled .navbar-links a.active {
  color: var(--primary);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width var(--transition);
  border-radius: var(--radius-full);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  padding: var(--space-1);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}

.navbar.scrolled .lang-switch {
  background: var(--gray-100);
  border-color: var(--gray-200);
}

.lang-switch button {
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}

.navbar.scrolled .lang-switch button {
  color: var(--gray-500);
}

.lang-switch button.active {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .lang-switch button.active {
  background: var(--primary);
  color: var(--white);
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--accent);
  color: var(--white);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(249,115,22,0.3);
}

.navbar-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.4);
}

/* Hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: 10;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .navbar-toggle span {
  background: var(--gray-800);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* Facebook Float */
.facebook-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: var(--z-fixed);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1877F2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(24,119,242,0.4);
  transition: all var(--transition);
  animation: pulse-blue 2s infinite;
}

.facebook-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(24,119,242,0.5);
}

.facebook-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

/* Instagram Float */
.instagram-float {
  position: fixed;
  bottom: 170px;
  right: 30px;
  z-index: var(--z-fixed);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
  transition: all var(--transition);
  animation: pulse-pink 2s infinite;
}

.instagram-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(225, 48, 108, 0.5);
}

.instagram-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

@keyframes pulse-pink {
  0% { box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(225, 48, 108, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 48, 108, 0); }
}

@keyframes pulse-blue {
  0% { box-shadow: 0 0 0 0 rgba(24,119,242,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(24,119,242,0); }
  100% { box-shadow: 0 0 0 0 rgba(24,119,242,0); }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: var(--z-fixed);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.4;
  white-space: nowrap;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
  border-radius: var(--radius-xl);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(8,145,178,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(8,145,178,0.4);
}

.btn-accent {
  background: var(--gradient-sunset);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(249,115,22,0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249,115,22,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
}

.btn-block {
  width: 100%;
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: var(--text-6xl);
  color: var(--white);
  font-weight: 800;
  margin-bottom: var(--space-6);
  line-height: 1.1;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 span {
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-8);
  line-height: 1.6;
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: var(--space-10);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--white);
}

.hero-stat .stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
}

/* Hero Slider Dots */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: var(--space-3);
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
}

.hero-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* ==========================================================
   SEARCH FORM (Hero)
   ========================================================== */
.hero-search {
  position: relative;
  z-index: 3;
  margin-top: -60px;
  margin-bottom: var(--space-16);
}

.search-box {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-6) var(--space-8);
  box-shadow: var(--shadow-2xl);
  display: flex;
  align-items: flex-end;
  gap: var(--space-6);
}

.search-field {
  flex: 1;
}

.search-field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-2);
}

.search-field select,
.search-field input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all var(--transition);
  appearance: none;
}

.search-field select:focus,
.search-field input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.1);
}

.search-btn {
  padding: var(--space-3) var(--space-8);
  min-height: 50px;
}

/* ==========================================================
   TRIP CARDS
   ========================================================== */
.trip-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
}

.trip-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.trip-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.trip-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.trip-card:hover .trip-card-image img {
  transform: scale(1.08);
}

.trip-card-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--coral);
  color: var(--white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  z-index: 2;
}

.trip-card-wishlist {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
}

.trip-card-wishlist:hover {
  background: var(--coral);
  color: var(--white);
}

.trip-card-wishlist svg {
  width: 18px;
  height: 18px;
}

.trip-card-body {
  padding: var(--space-5);
}

.trip-card-location {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--primary);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.trip-card-location svg {
  width: 14px;
  height: 14px;
}

.trip-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trip-card-desc {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-4);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.trip-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--gray-100);
}

.trip-card-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--gray-500);
}

.trip-card-meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.trip-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trip-card-price {
  display: flex;
  flex-direction: column;
}

.trip-card-price .price-label {
  font-size: var(--text-xs);
  color: var(--gray-400);
}

.trip-card-price .price-value {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--primary-dark);
}

.trip-card-price .price-old {
  font-size: var(--text-sm);
  color: var(--gray-400);
  text-decoration: line-through;
  margin-left: var(--space-2);
}

.trip-card-rating {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.trip-card-rating .stars {
  display: flex;
  gap: 2px;
}

.trip-card-rating .stars svg {
  width: 14px;
  height: 14px;
  fill: #FBBF24;
}

.trip-card-rating .rating-text {
  font-size: var(--text-xs);
  color: var(--gray-500);
  font-weight: 500;
}

.trip-card-actions {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.trip-card-actions .btn {
  flex: 1;
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-3);
}

/* ==========================================================
   CATEGORY CARDS
   ========================================================== */
.category-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  transition: all var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
  transition: all var(--transition);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(180deg, rgba(8,145,178,0.1) 0%, rgba(8,145,178,0.8) 100%);
}

.category-card h3 {
  color: var(--white);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.category-card p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-card .category-count {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  color: var(--white);
  font-weight: 600;
  margin-top: var(--space-2);
}

/* ==========================================================
   FEATURES / WHY CHOOSE US
   ========================================================== */
.feature-card {
  text-align: center;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-xl);
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  transform: scale(1.1);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  transition: color var(--transition);
}

.feature-card:hover .feature-icon svg {
  color: var(--white);
}

.feature-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.6;
}

/* ==========================================================
   REVIEWS
   ========================================================== */
.review-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.review-card::before {
  content: '"';
  font-family: serif;
  font-size: 80px;
  color: var(--primary-100);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: #FBBF24;
}

.review-text {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-lg);
}

.review-author-info h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 2px;
}

.review-author-info p {
  font-size: var(--text-sm);
  color: var(--gray-400);
}

/* Reviews Carousel */
.reviews-carousel {
  display: flex;
  gap: var(--space-6);
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: var(--space-6);
  transition: transform var(--transition-slow);
}

.reviews-track .review-card {
  min-width: calc(33.333% - var(--space-4));
  flex-shrink: 0;
}

/* ==========================================================
   SPECIAL OFFERS
   ========================================================== */
.offer-banner {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: center;
  background: var(--gradient-ocean);
}

.offer-banner-bg {
  position: absolute;
  inset: 0;
}

.offer-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.offer-content {
  position: relative;
  z-index: 2;
  padding: var(--space-12);
  max-width: 600px;
}

.offer-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--coral);
  color: var(--white);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: var(--space-4);
  animation: bounce-gentle 2s infinite;
}

@keyframes bounce-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.offer-content h2 {
  color: var(--white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.offer-content p {
  color: rgba(255,255,255,0.9);
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}

/* ==========================================================
   GALLERY
   ========================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: var(--space-3);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,145,178,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

/* Gallery Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--text-2xl);
  cursor: pointer;
  transition: all var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--text-xl);
  cursor: pointer;
  transition: all var(--transition);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ==========================================================
   FAQ ACCORDION
   ========================================================== */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-3);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-card);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  gap: var(--space-4);
}

.faq-question h3 {
  font-size: var(--text-base);
  font-weight: 600;
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--primary);
  transform: rotate(180deg);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  transition: color var(--transition);
}

.faq-item.active .faq-icon svg {
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.7;
}

/* ==========================================================
   CONTACT CTA
   ========================================================== */
.contact-cta {
  background: var(--gradient-ocean);
  border-radius: var(--radius-2xl);
  padding: var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.contact-cta h2 {
  color: var(--white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  position: relative;
}

.contact-cta p {
  color: rgba(255,255,255,0.9);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  position: relative;
}

/* ==========================================================
   NEWSLETTER
   ========================================================== */
.newsletter-section {
  background: var(--sand-light);
  padding: var(--space-16) 0;
}

.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
}

.newsletter-box p {
  color: var(--gray-500);
  margin-bottom: var(--space-6);
}

.newsletter-form {
  display: flex;
  gap: var(--space-3);
}

.newsletter-form input {
  flex: 1;
  padding: var(--space-4) var(--space-5);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  font-size: var(--text-base);
  background: var(--white);
  transition: all var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.1);
}

.newsletter-form .btn {
  border-radius: var(--radius-xl);
  white-space: nowrap;
}

/* ==========================================================
   TRANSFERS
   ========================================================== */
.transfer-type-tabs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
  justify-content: center;
}

.transfer-tab {
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  border: 2px solid var(--gray-200);
  transition: all var(--transition);
  cursor: pointer;
}

.transfer-tab:hover,
.transfer-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.vehicle-card:hover,
.vehicle-card.selected {
  border-color: var(--primary);
  box-shadow: var(--shadow-card-hover);
}

.vehicle-card.selected {
  background: var(--primary-50);
}

.vehicle-card-image {
  height: 160px;
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-card-image img {
  max-height: 120px;
  object-fit: contain;
}

.vehicle-card-body {
  padding: var(--space-4);
}

.vehicle-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.vehicle-specs {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.vehicle-spec {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.vehicle-spec svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.vehicle-price {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--primary-dark);
}

/* ==========================================================
   BOOKING FORM
   ========================================================== */
.booking-sidebar {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-6);
  position: sticky;
  top: 100px;
}

.booking-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 2px solid var(--gray-100);
}

.booking-price {
  font-family: var(--font-heading);
}

.booking-price .price-label {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.booking-price .price-value {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--primary-dark);
}

.booking-price .price-per {
  font-size: var(--text-sm);
  color: var(--gray-400);
  font-weight: 400;
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--space-2);
}

.form-control {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.1);
}

.form-control::placeholder {
  color: var(--gray-400);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.guest-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
}

.guest-counter-label {
  display: flex;
  flex-direction: column;
}

.guest-counter-label span:first-child {
  font-weight: 600;
  font-size: var(--text-sm);
}

.guest-counter-label span:last-child {
  font-size: var(--text-xs);
  color: var(--gray-400);
}

.guest-counter-controls {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.guest-counter-controls button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  color: var(--primary);
  transition: all var(--transition);
  background: var(--white);
}

.guest-counter-controls button:hover {
  border-color: var(--primary);
  background: var(--primary-50);
}

.guest-counter-controls button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.guest-counter-controls .count {
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}

.booking-summary {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-5);
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
}

.booking-summary-row.total {
  border-top: 2px solid var(--gray-200);
  margin-top: var(--space-2);
  padding-top: var(--space-3);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--primary-dark);
}

/* ==========================================================
   TRIP DETAIL PAGE
   ========================================================== */
.trip-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: var(--space-2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-8);
}

.trip-gallery-main {
  grid-row: span 2;
}

.trip-gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.trip-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.trip-gallery-item:hover img {
  transform: scale(1.05);
}

.trip-gallery-more {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-xl);
}

.trip-detail-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-8);
}

.trip-detail-main h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.trip-info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.trip-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.trip-pill svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.trip-tabs {
  display: flex;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: var(--space-6);
  overflow-x: auto;
}

.trip-tab {
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-500);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.trip-tab:hover,
.trip-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.trip-tab-content {
  display: none;
}

.trip-tab-content.active {
  display: block;
}

.trip-tab-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.trip-tab-content ul {
  margin-bottom: var(--space-4);
}

.trip-tab-content ul li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
  color: var(--gray-600);
  line-height: 1.6;
}

.trip-tab-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.trip-tab-content ul.not-included li::before {
  content: '✗';
  color: var(--danger);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: var(--space-16) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer-brand {
  margin-bottom: var(--space-5);
}

.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-col h4 {
  font-size: var(--text-base);
  color: var(--white);
  font-weight: 700;
  margin-bottom: var(--space-5);
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--primary);
  margin-top: var(--space-2);
}

.footer-col ul li {
  margin-bottom: var(--space-3);
}

.footer-col ul li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-col ul li a:hover {
  color: var(--primary-light);
  padding-left: var(--space-2);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: var(--text-sm);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}

.footer-payments {
  display: flex;
  gap: var(--space-3);
  align-items: center;
}

.footer-payments span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-right: var(--space-2);
}

.payment-icon {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: var(--space-1) var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* ==========================================================
   PAGE HEADER (inner pages)
   ========================================================== */
.page-header {
  background: var(--gradient-ocean);
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
  color: var(--white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-3);
  position: relative;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  position: relative;
}

.page-header .breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.page-header .breadcrumb a:hover {
  color: var(--white);
}

.page-header .breadcrumb .separator {
  color: rgba(255,255,255,0.4);
}

/* ==========================================================
   FILTERS SIDEBAR (Trips page)
   ========================================================== */
.trips-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-8);
}

.filters-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.filter-group {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-card);
}

.filter-group h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-600);
  margin-bottom: var(--space-4);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  cursor: pointer;
}

.filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.filter-option label {
  font-size: var(--text-sm);
  color: var(--gray-600);
  cursor: pointer;
  flex: 1;
}

.filter-option .count {
  font-size: var(--text-xs);
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.price-range {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.price-range input {
  width: 100%;
  accent-color: var(--primary);
}

.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--gray-400);
  margin-top: var(--space-1);
}

/* Trips grid results */
.trips-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.results-count {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.results-count strong {
  color: var(--gray-800);
}

.sort-select {
  padding: var(--space-2) var(--space-4);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
}

.trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-10);
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--transition);
}

.pagination a {
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.pagination a:hover,
.pagination a.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ==========================================================
   BOOKING CONFIRMATION
   ========================================================== */
.confirmation-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.confirmation-header {
  background: var(--gradient-primary);
  padding: var(--space-10);
  text-align: center;
  color: var(--white);
}

.confirmation-check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
}

.confirmation-check svg {
  width: 40px;
  height: 40px;
}

.confirmation-header h1 {
  color: var(--white);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-2);
}

.confirmation-header p {
  font-size: var(--text-lg);
  opacity: 0.9;
}

.booking-number {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: 2px;
  margin-top: var(--space-5);
}

.confirmation-body {
  padding: var(--space-8);
}

.confirmation-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.confirmation-detail {
  padding: var(--space-3);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}

.confirmation-detail label {
  font-size: var(--text-xs);
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.confirmation-detail p {
  font-weight: 600;
  color: var(--gray-800);
  margin-top: var(--space-1);
}

.confirmation-actions {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================
   ANIMATIONS
   ========================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ==========================================================
   BACK TO TOP
   ========================================================== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-sticky);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  cursor: pointer;
  color: var(--primary);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ==========================================================
   TRANSFER FORM
   ========================================================== */
.transfer-form-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-8);
}

.transfer-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.transfer-form-section h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
  color: var(--navy);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.form-radio-group {
  display: flex;
  gap: var(--space-4);
}

.form-radio {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
}

.form-radio input[type="radio"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}

.form-radio label {
  font-size: var(--text-sm);
  cursor: pointer;
}

/* ==========================================================
   MOBILE DRAWER (used for filters on mobile)
   ========================================================== */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  background: var(--white);
  z-index: var(--z-modal);
  transform: translateX(-100%);
  transition: transform var(--transition);
  overflow-y: auto;
  padding: var(--space-6);
}

body[dir="rtl"] .mobile-drawer {
  left: auto;
  right: 0;
  transform: translateX(100%);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--gray-200);
}

/* ==========================================================
   CHECK BOOKING
   ========================================================== */
.check-booking-form {
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.check-booking-form .form-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
}

.check-booking-form .form-icon svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
}

.booking-status-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.status-header {
  padding: var(--space-6);
  text-align: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-sm);
}

.status-badge.confirmed {
  background: #D1FAE5;
  color: #065F46;
}

.status-badge.pending {
  background: #FEF3C7;
  color: #92400E;
}

.status-badge.cancelled {
  background: #FEE2E2;
  color: #991B1B;
}

/* ==========================================================
   MISC / UTILITIES
   ========================================================== */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  margin: var(--space-4) auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

.badge-primary {
  background: var(--primary-100);
  color: var(--primary-dark);
}

.badge-success {
  background: #D1FAE5;
  color: #065F46;
}

.badge-warning {
  background: #FEF3C7;
  color: #92400E;
}

.badge-danger {
  background: #FEE2E2;
  color: #991B1B;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: var(--z-toast);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-6);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transform: translateX(calc(100% + 30px));
  transition: transform var(--transition-bounce);
}

.toast.show {
  transform: translateX(0);
}

.toast-success { border-left: 4px solid var(--success); }
.toast-error { border-left: 4px solid var(--danger); }

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Language Dropdown Select */
.lang-select {
  appearance: none;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-1) var(--space-6) var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  outline: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
}
.lang-select option {
  color: var(--gray-800);
  background: var(--white);
}
.navbar.scrolled .lang-select {
  background-color: var(--gray-100);
  color: var(--gray-600);
  border-color: var(--gray-200);
  background-image: url('data:image/svg+xml;utf8,<svg fill="%234B5563" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
}
body[dir="rtl"] .lang-select {
  background-position: left 8px center;
  padding: var(--space-1) var(--space-3) var(--space-1) var(--space-6);
}


.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  z-index: 20;
  flex-shrink: 0;
}

.navbar-brand .logo {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  mix-blend-mode: multiply;
  border-radius: 50%;
  object-fit: contain;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex: 1;
  justify-content: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
  z-index: 20;
}

.lang-dropdown {
  flex-shrink: 0;
}

.lang-select {
  appearance: none;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-2) var(--space-6) var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  outline: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  min-width: 110px;
}
.navbar.scrolled .lang-select {
  background-color: var(--gray-100);
  color: var(--gray-600);
  border-color: var(--gray-200);
  background-image: url('data:image/svg+xml;utf8,<svg fill="%234B5563" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
}


/* Hide Google Translate Bar */
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon { display: none !important; }
body { top: 0px !important; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================
   TRANSFER WIDGET STYLES
   ========================================================== */
.hero-container-redesign {
  z-index: 2;
  position: relative;
  width: 100%;
}

.transfer-widget-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  margin-top: 30px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.4);
}

body[dir="rtl"] .transfer-widget-container {
  text-align: right;
}

.transfer-widget .widget-row {
  margin-bottom: 20px;
}

/* Radio Cards (Vehicle Type) */
.transfer-type-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.transfer-type-selector label {
  cursor: pointer;
  position: relative;
}

.transfer-type-selector input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.transfer-type-selector .card-content {
  background: var(--gray-100);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 15px 10px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-800);
  font-weight: 600;
  font-size: 0.95rem;
}

.transfer-type-selector .card-content .emoji {
  font-size: 1.8rem;
}

.transfer-type-selector input:checked ~ .card-content {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

/* Text Radio (Direction & Trip Type) */
.direction-selector, .trip-type-selector {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 15px;
  flex-wrap: wrap;
}

.direction-selector label, .trip-type-selector label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
  color: var(--gray-800);
  font-size: 0.95rem;
}

.direction-selector input[type="radio"], .trip-type-selector input[type="radio"] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
}

/* Grids */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.return-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 40%;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
}

.input-group input[type="text"],
.input-group input[type="date"],
.input-group input[type="time"],
.input-group input[type="number"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: var(--white);
  color: var(--gray-800);
  transition: border-color var(--transition);
}

.input-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(251, 140, 0, 0.1);
}

.input-group input:disabled {
  background: var(--gray-100);
  cursor: not-allowed;
  opacity: 0.8;
}

/* Custom Dropdown */
.custom-dropdown {
  position: relative;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 250px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  margin-top: 5px;
}

.dropdown-list.active {
  display: block;
}

.dropdown-group-label {
  padding: 10px 15px;
  font-weight: 700;
  background: var(--gray-50);
  color: var(--navy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dropdown-item {
  padding: 12px 15px;
  cursor: pointer;
  transition: background var(--transition);
  font-size: 0.95rem;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: rgba(251, 140, 0, 0.1);
  color: var(--accent);
}

/* Footer */
.widget-footer {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  color: var(--gray-600);
  font-size: 0.85rem;
  font-weight: 500;
  flex-wrap: wrap;
}

.booking-success {
  text-align: center;
  padding: 30px;
  color: var(--navy);
}

.booking-success svg {
  margin-bottom: 15px;
}

.booking-success h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--success);
}

/* ============================================================
   HIDE GOOGLE TRANSLATE BANNER & TOOLTIPS
   ============================================================ */
body {
    top: 0 !important;
}
.skiptranslate iframe,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip {
    display: none !important;
    visibility: hidden !important;
}
/* Also disable the weird font color changes Google sometimes applies on hover */
font {
    background: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
}

/* ============================================================
   VEHICLE IMAGE CARDS (BOOKING WIDGET)
   ============================================================ */
.vehicle-img-card {
  cursor: pointer;
  position: relative;
  display: block;
}
.vehicle-img-card input[type="radio"] {
  display: none;
}
.vehicle-img-card .card-content {
  border: 2px solid var(--gray-200);
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.vehicle-img-card:hover .card-content {
  border-color: var(--primary-light);
  transform: translateY(-2px);
}
.vehicle-img-card input[type="radio"]:checked + .card-content {
  border-color: var(--accent);
  box-shadow: 0 8px 15px rgba(249, 115, 22, 0.2);
  transform: translateY(-5px);
}
.vehicle-img-card .vehicle-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--gray-200);
}
.vehicle-img-card .vehicle-info {
  padding: 15px;
  text-align: center;
}
.vehicle-img-card .vehicle-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--gray-800);
}
.vehicle-img-card .vehicle-info p {
  margin: 5px 0 0;
  font-size: 0.85rem;
  color: var(--gray-500);
}
/* Mobile tweaks */
@media (max-width: 480px) {
  .transfer-type-selector {
    grid-template-columns: 1fr !important;
  }
}

/* Reviews CSS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.review-author {
  font-weight: bold;
  font-size: 1.1rem;
}
.review-country {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.review-rating {
  color: #ffcc00;
  font-size: 1.2rem;
}
.review-comment {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
  flex-grow: 1;
}
.review-trip {
  margin-top: 15px;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: bold;
}
.review-date {
  font-size: 0.8rem;
  color: #888;
  text-align: right;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   MOBILE SOCIAL FLOATING BUTTONS — safe at 375–430px
   All three buttons (WhatsApp, Instagram, Facebook) visible.
   They must not cover booking forms, inputs, or page content.
   ========================================================== */
@media (max-width: 768px) {
  /* Shrink all three buttons on mobile */
  .whatsapp-float,
  .instagram-float,
  .facebook-float {
    width: 48px !important;
    height: 48px !important;
    right: 14px !important;
  }

  .whatsapp-float svg,
  .instagram-float svg,
  .facebook-float svg {
    width: 24px !important;
    height: 24px !important;
  }

  /* Stack order (bottom → top): WhatsApp, Facebook, Instagram */
  .whatsapp-float {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .facebook-float {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .instagram-float {
    bottom: calc(128px + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* On booking & transfer booking pages add extra bottom space so
     the floating group never covers the CTA / submit buttons.
     These pages add class="booking-page" on <body>. */
  body.booking-page .whatsapp-float  { right: 10px !important; }
  body.booking-page .facebook-float  { right: 10px !important; }
  body.booking-page .instagram-float { right: 10px !important; }
}

/* STACKED TRIP SECTIONS START */

/* Hide the old horizontal tab buttons */
.trip-tabs {
  display: none !important;
}

/* Section titles */
.trip-section-title {
  margin: 30px 0 14px;
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 800;
  color: var(--primary-dark, #172d52);
}

/* Show every section under the previous section */
.trip-tab-content,
.trip-tab-content.active {
  display: block !important;
  margin: 0 0 4px !important;
  padding: 0 0 28px !important;
  border-bottom: 1px solid rgba(23, 45, 82, 0.18);
}

/* No line after the final section */
#tab-cancel {
  border-bottom: 0;
}

/* Keep list items vertically arranged */
.trip-tab-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
}

/* Correct alignment for both languages */
body[dir="ltr"] .trip-section-title,
body[dir="ltr"] .trip-tab-content {
  text-align: left;
}

body[dir="rtl"] .trip-section-title,
body[dir="rtl"] .trip-tab-content {
  text-align: right;
}

@media (max-width: 768px) {
  .trip-section-title {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.15rem;
  }

  .trip-tab-content,
  .trip-tab-content.active {
    padding-bottom: 22px !important;
  }
}

/* STACKED TRIP SECTIONS END */

/* TRIP GALLERY ALL IMAGES START */

.trip-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-rows: 220px;
  overflow: visible;
}

.trip-gallery-main {
  grid-column: span 2;
  grid-row: span 2;
}

.trip-gallery-item {
  min-height: 220px;
  border-radius: var(--radius-lg);
}

.trip-gallery.trip-gallery-single {
  grid-template-columns: 1fr;
  grid-auto-rows: 500px;
}

.trip-gallery.trip-gallery-single .trip-gallery-main {
  grid-column: auto;
  grid-row: auto;
}

.trip-gallery.trip-gallery-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 420px;
}

.trip-gallery.trip-gallery-two .trip-gallery-main {
  grid-column: auto;
  grid-row: auto;
}

/* TRIP GALLERY ALL IMAGES END */
