/* ============================================================
   Syria Travel Services — Main Stylesheet
   Mobile-first | Bilingual EN/AR | RTL Support
   ============================================================ */

/* --- 1. Custom Properties --- */
:root {
  --gold:        #9A6E1A;
  --gold-dark:   #7A5714;
  --gold-light:  #C4973D;
  --gold-pale:   #F7F0E3;
  --charcoal:    #1C1C1E;
  --charcoal-2:  #3C3C3E;
  --gray:        #6C6C70;
  --gray-light:  #AEAEB2;
  --border:      #E5E0D5;
  --bg:          #FAFAF8;
  --bg-alt:      #F4F1EB;
  --white:       #FFFFFF;
  --danger:      #C0392B;
  --success:     #27AE60;

  --font-serif:    'Noto Serif', Georgia, 'Times New Roman', serif;
  --font-sans:     'Noto Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif-ar: 'Noto Serif Arabic', 'Traditional Arabic', serif;
  --font-sans-ar:  'Noto Sans Arabic', 'Arial Unicode MS', Tahoma, sans-serif;

  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --container: 1200px;
  --header-h:  72px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: 0.25s ease;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--charcoal-2);
  line-height: 1.65;
  overflow-x: hidden;
}

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

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* --- 3. Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5 {
  font-family: var(--font-serif-ar);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.75;
}

/* --- 4. Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.section {
  padding-block: var(--space-3xl);
}

.section-sm {
  padding-block: var(--space-2xl);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}
.section-dark h1, .section-dark h2, .section-dark h3 {
  color: var(--white);
}

.section-alt { background: var(--bg-alt); }
.section-gold { background: var(--gold-pale); }

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

[dir="rtl"] .section-header .eyebrow {
  letter-spacing: 0;
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  max-width: 56ch;
  margin-inline: auto;
  color: var(--gray);
}

/* --- 5. Grid Utilities --- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- 6. Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(154,110,26,0.35);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--gold);
}
.btn-white:hover {
  background: var(--gold-pale);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}

.btn-lg {
  padding: 0.95rem 2.25rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

/* --- 7. Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
}

[dir="rtl"] .logo-main {
  font-family: var(--font-serif-ar);
}

.logo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

[dir="rtl"] .logo-sub {
  letter-spacing: 0;
}

.main-nav { display: none; }

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-2);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 3px;
  font-size: 0.8rem;
  font-weight: 600;
}

.lang-btn {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  color: var(--gray);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--white);
}

.lang-btn:hover:not(.active) {
  color: var(--gold);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 38px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  padding: var(--space-xl) var(--space-lg);
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-xl);
}

.mobile-nav-list a {
  display: block;
  padding: var(--space-md) 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
}

.mobile-nav-list a:hover {
  color: var(--gold);
}

@media (min-width: 768px) {
  .main-nav { display: block; }
  .hamburger { display: none; }
}

/* --- 8. Hero Section --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(28,28,30,0.88) 0%,
      rgba(28,28,30,0.65) 50%,
      rgba(28,28,30,0.80) 100%
    ),
    url('../images/byd-hero.jpg') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-4xl) var(--space-3xl);
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-lg);
}

[dir="rtl"] .hero-eyebrow {
  letter-spacing: 0;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold-light);
  flex-shrink: 0;
}

[dir="rtl"] .hero-eyebrow::before {
  order: 1;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-xl);
  max-width: 52ch;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

.hero-trust-item svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

/* --- 9. Trust Bar --- */
.trust-bar {
  background: var(--gold);
  padding-block: var(--space-lg);
  overflow-x: auto;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  min-width: max-content;
  padding-inline: var(--space-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white);
  white-space: nowrap;
}

.trust-item svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.trust-item-label {
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* --- 10. Service Cards --- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.service-card-icon {
  padding: var(--space-xl);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon svg {
  color: var(--gold);
}

.service-card-body {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  margin-bottom: var(--space-sm);
}

.service-card-body p {
  color: var(--gray);
  font-size: 0.9rem;
  flex: 1;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-block: var(--space-lg);
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--gold);
}

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

/* --- 11. Why Choose Us --- */
.value-prop {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.value-prop-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-prop-icon svg {
  color: var(--gold);
}

.value-prop h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.value-prop p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

/* --- 12. How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}

[dir="rtl"] .step {
  align-items: flex-start;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step h3 { font-size: 1.05rem; margin-bottom: var(--space-xs); }
.step p { font-size: 0.9rem; color: var(--gray); margin: 0; }

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }

  .step {
    position: relative;
  }
}

/* --- 13. Vehicle Showcase --- */
.vehicle-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.vehicle-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #2C2C2E, #1C1C1E);
  position: relative;
}

.vehicle-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  text-align: center;
}

.vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-block: var(--space-xl);
}

.spec-item {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.spec-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 4px;
}

[dir="rtl"] .spec-label {
  letter-spacing: 0;
}

.spec-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

@media (min-width: 768px) {
  .vehicle-showcase { grid-template-columns: 1fr 1fr; }
}

/* --- 14. Testimonials --- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  left: auto;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold-pale);
  font-family: Georgia, serif;
  font-weight: 700;
  pointer-events: none;
}

[dir="rtl"] .testimonial-card::before {
  content: '\201D';
  right: auto;
  left: var(--space-lg);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-md);
  color: var(--gold);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--charcoal-2);
  margin-bottom: var(--space-lg);
  padding-top: var(--space-sm);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray);
}

/* --- 15. FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  width: 100%;
  text-align: start;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--gray);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: var(--space-lg);
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  display: block;
}

/* --- 16. Booking Form --- */
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.booking-progress {
  background: var(--bg-alt);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  flex: 1;
  max-width: 120px;
}

.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

[dir="rtl"] .progress-step:not(:last-child)::after {
  left: calc(-50% + 16px);
  right: calc(50% + 16px);
}

.progress-step.completed::after { background: var(--gold); }

.progress-dot {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.progress-step.active .progress-dot {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.progress-step.completed .progress-dot {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.progress-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray);
  text-align: center;
  white-space: nowrap;
}

.progress-step.active .progress-label {
  color: var(--gold);
  font-weight: 600;
}

.booking-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 900px) {
  .booking-body { grid-template-columns: 1fr 320px; }
}

.booking-form-main {
  padding: var(--space-2xl) var(--space-xl);
}

.booking-sidebar {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--space-xl);
  border-radius: 0 0 var(--radius-xl) 0;
}

[dir="rtl"] .booking-sidebar {
  border-radius: 0 0 0 var(--radius-xl);
}

@media (min-width: 900px) {
  .booking-sidebar {
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  }
  [dir="rtl"] .booking-sidebar {
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  }
}

.booking-sidebar h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  font-family: var(--font-sans);
}

[dir="rtl"] .booking-sidebar h3 {
  font-family: var(--font-sans-ar);
}

.price-estimate-box {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.price-estimate-service {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-sm);
}

.price-estimate-amount {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.price-estimate-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.form-step { display: none; }
.form-step.active { display: block; }

.form-step-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-xl);
}

/* --- 17. Form Elements --- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(154,110,26,0.12);
}

.form-control::placeholder {
  color: var(--gray-light);
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236C6C70' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

[dir="rtl"] select.form-control {
  background-position: left 12px center;
  padding-right: 0.95rem;
  padding-left: 36px;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 4px;
}

.form-error {
  font-size: 0.78rem;
  color: var(--danger);
  margin-top: 4px;
  display: none;
}

.form-control.error {
  border-color: var(--danger);
}

.form-control.error + .form-error {
  display: block;
}

/* Passenger Count Buttons */
.count-selector {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.count-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--charcoal);
  background: var(--bg);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.count-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.count-display {
  font-size: 1.2rem;
  font-weight: 700;
  min-width: 28px;
  text-align: center;
}

/* Toggle (yes/no) */
.toggle-group {
  display: flex;
  gap: var(--space-sm);
}

.toggle-btn {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  color: var(--gray);
  background: var(--bg);
  transition: all var(--transition-fast);
}

.toggle-btn.active {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--gold);
  font-weight: 600;
}

/* Checkbox Grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 0.8rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.checkbox-item:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-pale);
}

/* Form Navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
  gap: var(--space-md);
}

.form-nav .btn-back {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-nav .btn-back:hover {
  color: var(--charcoal);
}

/* Confirmation Screen */
.booking-confirmation {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.confirmation-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: #E8F9F0;
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
}

/* --- 18. Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2C2C2E 100%);
  padding-top: calc(var(--header-h) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: var(--space-md); }
.page-hero .lead { color: rgba(255,255,255,0.7); max-width: 60ch; margin-inline: auto; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  justify-content: center;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* --- 19. Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

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

.contact-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 4px;
}

[dir="rtl"] .contact-label {
  letter-spacing: 0;
}

.contact-value {
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
}

/* --- 20. About --- */
.about-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 900px) {
  .about-hero-content { grid-template-columns: 1fr 1fr; }
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2C2C2E, #1C1C1E);
}

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

.commitment-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.commitment-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.commitment-check {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- 21. CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  padding-block: var(--space-4xl);
  text-align: center;
}

.cta-section h2 { color: var(--white); margin-bottom: var(--space-md); }
.cta-section p {
  color: rgba(255,255,255,0.85);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

/* --- 22. Footer --- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding-block: var(--space-3xl) var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

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

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

.footer-brand .logo-main { color: var(--white); }
.footer-brand .logo-sub { margin-bottom: var(--space-md); }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-lg);
  font-family: var(--font-sans);
}

[dir="rtl"] .footer-col h4 {
  letter-spacing: 0;
  font-family: var(--font-sans-ar);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-sm);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
}

.footer-lang span {
  color: rgba(255,255,255,0.35);
}

.footer-lang button {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-lang button:hover, .footer-lang button.active {
  color: var(--gold-light);
}

/* Language Switch Link (EN/AR page switch) */
.lang-switch-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.lang-switch-link:hover {
  background: var(--gold);
  color: var(--white);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--transition);
}

[dir="rtl"] .whatsapp-float {
  right: auto;
  left: var(--space-xl);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* Notification Pulse */
.whatsapp-float::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #FF3B30;
  border-radius: var(--radius-full);
  top: 2px;
  right: 2px;
  border: 2px solid var(--bg);
}

/* --- 23. Pricing Table --- */
.pricing-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border);
  gap: var(--space-md);
}

.pricing-row:last-child { border-bottom: none; }
.pricing-row:nth-child(even) { background: var(--bg-alt); }

.pricing-route { font-weight: 500; color: var(--charcoal); font-size: 0.95rem; }
.pricing-desc { font-size: 0.82rem; color: var(--gray); margin-top: 2px; }
.pricing-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  font-family: var(--font-serif);
}

/* --- 24. Chips/Tags --- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--gold-pale);
  color: var(--gold);
}

.chip-green {
  background: #E8F9F0;
  color: #27AE60;
}

/* --- 25. Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

/* --- 26. Print Styles --- */
@media print {
  .site-header, .site-footer, .whatsapp-float, .form-nav, .booking-progress {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .booking-confirmation {
    page-break-inside: avoid;
  }

  .booking-form-wrap {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* --- 27. Media Queries (Desktop Enhancements) --- */
@media (min-width: 768px) {
  .section { padding-block: var(--space-4xl); }
  .section-sm { padding-block: var(--space-3xl); }

  .hero-content { padding-block: var(--space-4xl); }
  .hero-sub { max-width: 60ch; }

  .service-card-icon { padding: var(--space-2xl); }

  .checkbox-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .header-inner .btn { display: inline-flex; }
}

/* --- 28. Utility --- */
.text-gold { color: var(--gold); }
.text-gray { color: var(--gray); }
.text-center { text-align: center; }
.text-sm { font-size: 0.85rem; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.divider {
  height: 1px;
  background: var(--border);
  margin-block: var(--space-2xl);
}

/* Country code select in phone field */
.phone-group {
  display: flex;
  gap: var(--space-sm);
}

.phone-code-select {
  width: 110px;
  flex-shrink: 0;
}

.phone-input {
  flex: 1;
}

/* Notice/alert box */
.notice {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
  font-size: 0.88rem;
  color: var(--charcoal-2);
}

[dir="rtl"] .notice {
  border-left: none;
  border-right: 3px solid var(--gold);
}

/* Collapsible conditional fields */
.conditional-fields {
  display: none;
  margin-top: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.conditional-fields.show {
  display: block;
}

/* Star Rating Display */
.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  padding-inline-end: 3.5rem; /* clear the decorative quote mark */
}
