/* ==========================================================================
   TAXI LUXOR TITO — Premium Tourism Website
   Core Stylesheet
   ========================================================================== */

/* -------------------------------------------------------------------- */
/* 1. CSS VARIABLES                                                       */
/* -------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --color-navy: #0b1d3a;
  --color-navy-light: #142c54;
  --color-navy-dark: #060f20;
  --color-gold: #c9a44c;
  --color-gold-light: #e5c875;
  --color-gold-dark: #a9842f;
  --color-cream: #faf7f0;
  --color-off-white: #f5f3ee;
  --color-white: #ffffff;
  --color-text: #232b3a;
  --color-text-light: #5d6679;
  --color-border: #e6e1d6;
  --color-success: #2e7d32;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #e5c875 0%, #c9a44c 50%, #a9842f 100%);
  --gradient-navy: linear-gradient(135deg, #142c54 0%, #0b1d3a 60%, #060f20 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(6, 15, 32, 0.35) 0%, rgba(6, 15, 32, 0.85) 100%);

  /* Typography */
  --font-heading: 'Playfair Display', 'Amiri', serif;
  --font-body: 'Poppins', 'Tajawal', sans-serif;
  --font-arabic-heading: 'Amiri', 'Playfair Display', serif;
  --font-arabic-body: 'Tajawal', 'Poppins', sans-serif;

  /* Spacing */
  --section-padding: 100px;
  --section-padding-mobile: 60px;
  --container-width: 1240px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(11, 29, 58, 0.06);
  --shadow-md: 0 8px 30px rgba(11, 29, 58, 0.10);
  --shadow-lg: 0 20px 60px rgba(11, 29, 58, 0.15);
  --shadow-gold: 0 10px 30px rgba(201, 164, 76, 0.35);

  /* Transitions */
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
}

/* -------------------------------------------------------------------- */
/* 2. RESET & BASE                                                        */
/* -------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  font-family: var(--font-arabic-body);
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.25;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6 {
  font-family: var(--font-arabic-heading);
  font-weight: 700;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
  section {
    padding: var(--section-padding-mobile) 0;
  }
}

/* -------------------------------------------------------------------- */
/* 3. UTILITIES                                                           */
/* -------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  background: rgba(201, 164, 76, 0.1);
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 18px;
}

html[dir="rtl"] .section-tag {
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

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

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

.bg-cream { background-color: var(--color-cream); }
.bg-navy { background-color: var(--color-navy); color: var(--color-white); }
.bg-navy h2, .bg-navy h3 { color: var(--color-white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  text-align: center;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 164, 76, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn-dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-dark:hover {
  background: var(--color-navy-light);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--color-white);
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-navy);
  color: var(--color-navy);
}

.btn-outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-block { width: 100%; }
.btn-lg { padding: 18px 46px; font-size: 1rem; }

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* -------------------------------------------------------------------- */
/* 4. HEADER / NAVIGATION                                                 */
/* -------------------------------------------------------------------- */
#header-placeholder { position: relative; z-index: 1000; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(11, 29, 58, 0.96);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

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

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

.logo img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  border-radius: 50%;
  transition: var(--transition);
}

.site-header.scrolled .logo img {
  height: 48px;
  width: 48px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 1px;
}

.logo-text span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--color-gold-light);
  text-transform: uppercase;
}

html[dir="rtl"] .logo-text span { letter-spacing: 1px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

html[dir="rtl"] .main-nav a::after { left: auto; right: 0; }

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 6px 6px;
}

.lang-btn {
  padding: 6px 16px;
  border-radius: 50px;
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--gradient-gold);
  color: var(--color-navy-dark);
}

.header-cta {
  display: none;
}

@media (min-width: 1100px) {
  .header-cta { display: inline-flex; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1099px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--gradient-navy);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 40px;
    transition: right 0.45s ease;
    box-shadow: var(--shadow-lg);
  }

  html[dir="rtl"] .main-nav {
    right: auto;
    left: -100%;
    transition: left 0.45s ease;
  }

  .main-nav.active { right: 0; }
  html[dir="rtl"] .main-nav.active { left: 0; right: auto; }

  .main-nav a { font-size: 1.1rem; }
}

/* -------------------------------------------------------------------- */
/* 5. HERO                                                                */
/* -------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
  padding-top: 120px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
}

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

.hero .section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-gold-light);
  border: 1px solid rgba(229, 200, 117, 0.3);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: var(--color-white);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--color-gold-light);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 36px;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-gold-light);
}

.hero-stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
  padding-top: 140px;
  padding-bottom: 60px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Breadcrumbs */
.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  flex-wrap: wrap;
}

.breadcrumbs a { color: var(--color-gold-light); }
.breadcrumbs span { color: rgba(255, 255, 255, 0.5); }

/* -------------------------------------------------------------------- */
/* 6. ABOUT / WHY CHOOSE                                                  */
/* -------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.about-images img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: var(--shadow-md);
}

.about-images .img-tall { grid-row: span 2; height: 100%; }
.about-images .img-tall img { height: 100%; }

.about-badge {
  position: absolute;
  bottom: -24px;
  background: var(--color-white);
  padding: 18px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 2px solid var(--color-gold);
  z-index: 3;
}

html[dir="ltr"] .about-badge { right: -20px; }
html[dir="rtl"] .about-badge { left: -20px; }

@media (max-width: 600px) {
  .about-badge { position: static; margin-top: 16px; display: inline-block; }
}

.about-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-navy);
}

.about-badge span {
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: var(--color-text-light);
  text-transform: uppercase;
}

.about-content h2 { margin-bottom: 20px; }
.about-content > p { margin-bottom: 20px; color: var(--color-text-light); }

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0;
}

@media (max-width: 480px) {
  .check-list { grid-template-columns: 1fr; }
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.check-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gradient-gold);
  color: var(--color-navy-dark);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Why Choose Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--color-white);
  padding: 36px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--color-border);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-navy);
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--color-gold-light);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

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

/* -------------------------------------------------------------------- */
/* 7. SERVICES                                                            */
/* -------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

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

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

.service-card-img {
  height: 230px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card-body p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 18px;
  flex: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.service-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-gold-dark);
  background: rgba(201, 164, 76, 0.1);
  padding: 5px 14px;
  border-radius: 50px;
}

.service-link {
  font-weight: 600;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  transition: var(--transition);
}

.service-link:hover { color: var(--color-gold-dark); gap: 12px; }

/* -------------------------------------------------------------------- */
/* 8. ATTRACTIONS / TOURS                                                 */
/* -------------------------------------------------------------------- */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.attraction-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.attraction-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.attraction-card:hover img { transform: scale(1.08); }

.attraction-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,15,32,0.92) 10%, rgba(6,15,32,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--color-white);
}

.attraction-overlay h3 {
  color: var(--color-white);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.attraction-overlay p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: var(--transition);
}

.attraction-card:hover .attraction-overlay p {
  max-height: 120px;
  opacity: 1;
  margin-top: 10px;
}

.attraction-badge {
  position: absolute;
  top: 20px;
  inset-inline-start: 20px;
  background: var(--gradient-gold);
  color: var(--color-navy-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* -------------------------------------------------------------------- */
/* 9. GALLERY                                                             */
/* -------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

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

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

.gallery-item::after {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-white);
  background: rgba(11, 29, 58, 0.4);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after { opacity: 1; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 15, 32, 0.92);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  inset-inline-end: 30px;
  color: var(--color-white);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox-close:hover { background: var(--color-gold); color: var(--color-navy-dark); }

/* -------------------------------------------------------------------- */
/* 10. REVIEWS                                                            */
/* -------------------------------------------------------------------- */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  text-align: center;
}

.reviews-score strong {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--color-navy);
  display: block;
}

.stars {
  color: var(--color-gold);
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin: 6px 0;
}

.reviews-score span {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

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

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

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

.review-stars {
  color: var(--color-gold);
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.review-card p {
  color: var(--color-text);
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-navy);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-navy);
}

.review-author span {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.review-card.hidden-review {
  display: none;
}

.load-more-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* -------------------------------------------------------------------- */
/* 11. FAQ ACCORDION                                                      */
/* -------------------------------------------------------------------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-item.active { border-color: var(--color-gold); box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--color-navy);
  width: 100%;
  text-align: start;
  gap: 20px;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-gold-dark);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--gradient-gold);
  color: var(--color-navy-dark);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* -------------------------------------------------------------------- */
/* 12. BOOKING FORM / CONTACT FORM                                        */
/* -------------------------------------------------------------------- */
.booking-section {
  background: var(--gradient-navy);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: -200px;
  inset-inline-end: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,164,76,0.18) 0%, transparent 70%);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
}

.booking-info h2 { color: var(--color-white); margin-bottom: 18px; }
.booking-info p { color: rgba(255,255,255,0.8); margin-bottom: 30px; }

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.booking-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.booking-perk-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201, 164, 76, 0.15);
  border: 1px solid rgba(201, 164, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-gold-light);
  flex-shrink: 0;
}

.booking-perk strong { display: block; margin-bottom: 4px; color: var(--color-white); }
.booking-perk span { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

.booking-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 480px) {
  .booking-form { padding: 26px; }
}

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

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-cream);
  color: var(--color-text);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(201, 164, 76, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.form-actions .btn { flex: 1; min-width: 200px; }

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 16px;
  text-align: center;
}

.form-success {
  display: none;
  background: rgba(46, 125, 50, 0.1);
  border: 1px solid var(--color-success);
  color: var(--color-success);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  font-weight: 600;
  text-align: center;
}

.form-success.active { display: block; }

/* -------------------------------------------------------------------- */
/* 13. CTA BANNER                                                         */
/* -------------------------------------------------------------------- */
.cta-banner {
  background: var(--gradient-gold);
  color: var(--color-navy-dark);
  text-align: center;
  position: relative;
}

.cta-banner h2 {
  color: var(--color-navy-dark);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.cta-banner p {
  margin-bottom: 30px;
  font-size: 1.05rem;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 30px;
  color: rgba(11, 29, 58, 0.8);
}

.cta-banner .btn-row { justify-content: center; }

.cta-banner .btn-dark:hover { background: var(--color-navy-dark); }

/* -------------------------------------------------------------------- */
/* 14. CONTACT PAGE                                                       */
/* -------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.contact-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-gold); }

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-navy);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.contact-card p { color: var(--color-text-light); font-size: 0.9rem; margin: 0; }
.contact-card a { color: var(--color-navy); font-weight: 600; }
.contact-card a:hover { color: var(--color-gold-dark); }

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-row a:hover {
  background: var(--gradient-gold);
  color: var(--color-navy-dark);
  transform: translateY(-3px);
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}

.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* -------------------------------------------------------------------- */
/* 15. PRICING                                                            */
/* -------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

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

.pricing-card.featured {
  border: 2px solid var(--color-gold);
  background: var(--color-cream);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--color-navy-dark);
  padding: 6px 22px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.pricing-card .pricing-route { color: var(--color-text-light); font-size: 0.9rem; margin-bottom: 20px; }

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.pricing-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-light);
}

.pricing-card ul {
  text-align: start;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--color-gold-dark);
  font-weight: 700;
}

.pricing-note {
  background: var(--color-cream);
  border: 1px dashed var(--color-gold);
  border-radius: var(--radius);
  padding: 24px 30px;
  margin-top: 50px;
  text-align: center;
  color: var(--color-text-light);
}

/* -------------------------------------------------------------------- */
/* 16. BLOG                                                               */
/* -------------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

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

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

.blog-card-img { height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }

.blog-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }

.blog-meta {
  font-size: 0.78rem;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.blog-card-body p { color: var(--color-text-light); font-size: 0.92rem; margin-bottom: 18px; flex: 1; }

/* Blog Article */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content img {
  border-radius: var(--radius);
  margin: 30px 0;
  box-shadow: var(--shadow-md);
}

.article-content h2 { margin: 36px 0 16px; font-size: 1.7rem; }
.article-content h3 { margin: 28px 0 14px; font-size: 1.3rem; }
.article-content p { margin-bottom: 18px; color: var(--color-text-light); }
.article-content ul { margin: 0 0 18px; padding-inline-start: 22px; }
.article-content ul li { color: var(--color-text-light); margin-bottom: 8px; list-style: disc; }

/* -------------------------------------------------------------------- */
/* 17. LEGAL PAGES                                                        */
/* -------------------------------------------------------------------- */
.legal-content {
  max-width: 840px;
  margin: 0 auto;
}

.legal-content h2 { margin: 32px 0 14px; font-size: 1.5rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 16px; color: var(--color-text-light); }
.legal-content ul { margin: 0 0 16px; padding-inline-start: 22px; }
.legal-content ul li { color: var(--color-text-light); margin-bottom: 8px; list-style: disc; }
.legal-content .updated { color: var(--color-gold-dark); font-weight: 600; margin-bottom: 30px; }

/* -------------------------------------------------------------------- */
/* 18. FOOTER                                                             */
/* -------------------------------------------------------------------- */
.site-footer {
  background: var(--gradient-navy);
  color: rgba(255,255,255,0.85);
  padding-top: 80px;
}

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

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .logo-text strong { color: var(--color-white); }
.footer-brand p { margin: 18px 0; font-size: 0.92rem; color: rgba(255,255,255,0.65); }

.footer-col h4 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--color-gold);
}

html[dir="rtl"] .footer-col h4::after { left: auto; right: 0; }

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--color-gold-light); padding-inline-start: 6px; }

.footer-col address { font-style: normal; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact-item span:first-child {
  color: var(--color-gold-light);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 26px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--color-gold-light); }

.footer-lang {
  display: flex;
  gap: 10px;
}

.footer-lang button {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  transition: var(--transition);
}

.footer-lang button.active,
.footer-lang button:hover {
  color: var(--color-navy-dark);
  background: var(--gradient-gold);
}

/* -------------------------------------------------------------------- */
/* 19. FLOATING BUTTONS                                                   */
/* -------------------------------------------------------------------- */
.float-btn {
  position: fixed;
  bottom: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.whatsapp-float {
  inset-inline-end: 28px;
  background: #25d366;
  color: var(--color-white);
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), var(--shadow-lg); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), var(--shadow-lg); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), var(--shadow-lg); }
}

.back-to-top {
  inset-inline-start: 28px;
  background: var(--color-navy);
  color: var(--color-gold-light);
  font-size: 1.3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--color-gold); color: var(--color-navy-dark); }

@media (max-width: 600px) {
  .float-btn { width: 52px; height: 52px; font-size: 1.4rem; bottom: 18px; }
  .whatsapp-float { inset-inline-end: 18px; }
  .back-to-top { inset-inline-start: 18px; }
}

/* -------------------------------------------------------------------- */
/* 20. RTL SPECIFIC ADJUSTMENTS                                           */
/* -------------------------------------------------------------------- */
html[dir="rtl"] .gallery-item::after,
html[dir="rtl"] .form-group input,
html[dir="rtl"] .form-group select,
html[dir="rtl"] .form-group textarea {
  text-align: right;
}

html[dir="rtl"] .service-link svg,
html[dir="rtl"] .booking-perk-icon,
html[dir="rtl"] .feature-icon {
  transform: scaleX(-1);
}

html[dir="rtl"] .review-stars,
html[dir="rtl"] .stars { letter-spacing: 4px; direction: ltr; display: inline-block; }

/* -------------------------------------------------------------------- */
/* 21. MISC                                                               */
/* -------------------------------------------------------------------- */
.divider-gold {
  width: 70px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 18px 0;
  border-radius: 2px;
}

.section-header .divider-gold { margin-inline: auto; }

.tag-pill {
  display: inline-block;
  background: rgba(201,164,76,0.12);
  color: var(--color-gold-dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 30px; }
}

.two-col img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.icon-list .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--color-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-heading);
}

.icon-list strong { display: block; margin-bottom: 4px; }
.icon-list span { color: var(--color-text-light); font-size: 0.9rem; }

/* Vehicle Cards */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.vehicle-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

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

.vehicle-card img { height: 200px; width: 100%; object-fit: cover; }

.vehicle-card-body { padding: 24px; }
.vehicle-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.vehicle-card-body p { color: var(--color-text-light); font-size: 0.9rem; }

.vehicle-meta {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--color-navy);
  font-weight: 600;
}

/* Process steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.step-card { position: relative; padding: 0 14px; }

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-navy);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 18px;
  border: 2px solid var(--color-gold);
}

.step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-card p { color: var(--color-text-light); font-size: 0.9rem; }

/* Loading state for skip-link a11y */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--color-gold);
  color: var(--color-navy-dark);
  padding: 12px 20px;
  z-index: 5000;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
  top: 0;
}
