/* ═══════════════════════════════════════════════
   SAND TOURS MAROC — Premium Design System
   ═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --gold: #C8963E;
  --gold-light: #DEBA6F;
  --gold-dark: #A67A2E;
  --terra: #C4714A;
  --terra-light: #D4866A;
  --terra-dark: #A85C3A;
  --dark: #1A1410;
  --dark-2: #2A2018;
  --dark-3: #3A3028;
  --teal: #1E5F6B;
  --teal-light: #2A8090;
  --cream: #FAF6F1;
  --warm-white: #FEFCF8;
  --sand: #F0E6D6;
  --text: #3D2E22;
  --text-light: #7A6B5D;
  --text-muted: #A09080;
  --border: #E8DFD2;
  --card-bg: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(30,20,10,.08);
  --shadow-lg: 0 16px 48px rgba(30,20,10,.12);
  --shadow-gold: 0 8px 24px rgba(196,113,74,.2);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.7; background: var(--warm-white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.moroccan-divider { height: 4px; background: linear-gradient(90deg, transparent, var(--gold), var(--teal), var(--gold), transparent); margin: 0; opacity: .5; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══ BUTTONS ═══ */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 32px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; font-family: var(--font-body); cursor: pointer; transition: all var(--transition); border: none; letter-spacing: .3px; }
.btn-gold { background: linear-gradient(135deg, var(--terra), var(--terra-light)); color: #fff; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(196,113,74,.35); }
.btn-dark { background: var(--dark); color: var(--cream); }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-outline-light { background: transparent; border: 2px solid rgba(255,255,255,.3); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: var(--gold-light); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1EBE57; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
/* ═══ HEADER ═══ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,.05); transition: all var(--transition); }
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; max-width: 1400px; margin: 0 auto; padding: 0 28px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 48px; }
.logo-text { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--dark); }
.logo-text span { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 14px; font-weight: 600; color: var(--text); position: relative; padding: 4px 0; }
.nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width var(--transition); }
.nav a:hover, .nav a.active { color: var(--gold-dark); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-right { display: flex; align-items: center; gap: 20px; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { font-size: 13px; font-weight: 600; color: var(--dark); display: flex; align-items: center; gap: 6px; }
.header-phone i { color: var(--gold); }
.lang-btn { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; padding: 7px 14px; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; position: relative; background: var(--warm-white); }
.lang-dropdown { position: absolute; top: calc(100% + 8px); right: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); min-width: 170px; display: none; overflow: hidden; z-index: 100; }
.lang-btn:hover .lang-dropdown { display: block; }
.lang-dropdown a { display: flex; align-items: center; gap: 10px; padding: 11px 18px; font-size: 13px; transition: background var(--transition); }
.lang-dropdown a:hover { background: var(--cream); }
.mobile-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--dark); padding: 8px; position: relative; z-index: 2001; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
/* ═══ HERO ═══ */
.hero { padding: 140px 0 80px; background: linear-gradient(160deg, #12100E 0%, var(--dark) 30%, var(--dark-2) 60%, #3A2E22 100%); position: relative; overflow: hidden; }
.hero-deco-1 { position: absolute; top: -20%; right: -5%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(200,150,62,.08) 0%, transparent 70%); pointer-events: none; }
.hero-deco-2 { position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(30,95,107,.1) 0%, transparent 70%); pointer-events: none; }
.hero-line { position: absolute; top: 0; right: 20%; width: 1px; height: 100%; background: linear-gradient(180deg, transparent, rgba(200,150,62,.2), transparent); }
.hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 50px; background: var(--warm-white); border-radius: 50% 50% 0 0 / 100% 100% 0 0; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-label { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: rgba(200,150,62,.12); border: 1px solid rgba(200,150,62,.2); border-radius: 30px; font-size: 12px; font-weight: 700; color: var(--gold-light); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px; }
.hero-label i { font-size: 10px; }
.hero h1 { font-family: var(--font-heading); font-size: clamp(32px, 5vw, 56px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08); }
.hero-stat .val { font-family: var(--font-heading); font-size: 32px; font-weight: 800; color: var(--gold-light); }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* Hero booking card */
.hero-card { background: #fff; border-radius: 20px; padding: 36px; box-shadow: 0 12px 48px rgba(30,20,10,.15); border-left: 4px solid var(--terra); }
.hero-card h3 { font-family: var(--font-heading); font-size: 22px; color: var(--dark); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-bottom: 6px; font-weight: 600; }
.form-input { width: 100%; padding: 14px 16px; background: #f7f7f8; border: 1px solid #e2e2e5; border-radius: var(--radius-sm); color: var(--dark); font-size: 14px; font-family: var(--font-body); outline: none; transition: border-color var(--transition); box-sizing: border-box; }
.form-input::placeholder { color: #aaa; }
.form-input:focus { border-color: var(--terra); background: #fff; }
.form-extras { margin-bottom: 8px; }
.form-extras-toggle { font-size: 12px; color: var(--gold-dark); font-weight: 600; cursor: pointer; padding: 8px 0; display: flex; align-items: center; gap: 6px; list-style: none; }
.form-extras-toggle::-webkit-details-marker { display: none; }
.form-extras-toggle i { font-size: 14px; transition: transform var(--transition); }
.form-extras[open] .form-extras-toggle i { transform: rotate(45deg); }
.book-note { text-align: center; font-size: 12px; color: #999; margin-top: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8963E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
textarea.form-input { resize: vertical; min-height: 50px; }
/* ═══ TRUST BAR ═══ */
.trust-bar { background: var(--dark); border-bottom: 1px solid rgba(200,150,62,.1); padding: 16px 0; overflow: hidden; }
.trust-track { display: flex; gap: 48px; animation: trustScroll 35s linear infinite; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6); white-space: nowrap; flex-shrink: 0; }
.trust-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@keyframes trustScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══ SECTION ═══ */
.section { padding: 100px 0; }
.section-dark { background: var(--dark); color: #fff; }
.section-cream { background: var(--cream); background-image: radial-gradient(circle at 20% 80%, rgba(200,150,62,.04) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(30,95,107,.04) 0%, transparent 50%); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-label { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); font-weight: 700; margin-bottom: 16px; }
.section-label::before, .section-label::after { content: ''; width: 24px; height: 1px; background: linear-gradient(90deg, var(--gold), var(--teal)); }
.section-title { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
.section-dark .section-title { color: #fff; }
.section-title em { font-style: normal; color: var(--gold); }
.section-desc { font-size: 16px; color: var(--text-light); line-height: 1.8; }
.section-dark .section-desc { color: rgba(255,255,255,.5); }

/* ═══ FEATURES ═══ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--card-bg); padding: 36px 28px; border-radius: var(--radius); border: 1px solid var(--border); transition: all var(--transition); position: relative; overflow: hidden; border-top: 3px solid transparent; }
.feature-card:hover { border-top-color: var(--terra); }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(200,150,62,.1), rgba(200,150,62,.05)); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--gold); margin-bottom: 20px; }
.feature-card h4 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
/* ═══ FLEET / VEHICLES ═══ */
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.vehicle-card { background: var(--card-bg); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: all var(--transition); }
.vehicle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vehicle-img { height: 200px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.vehicle-tag { position: absolute; top: 14px; left: 14px; padding: 5px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.tag-economy { background: rgba(16,185,129,.12); color: #059669; border: 1px solid rgba(16,185,129,.2); }
.tag-comfort { background: rgba(200,150,62,.12); color: var(--gold-dark); border: 1px solid rgba(200,150,62,.2); }
.tag-family { background: rgba(59,130,246,.12); color: #2563EB; border: 1px solid rgba(59,130,246,.2); }
.tag-group { background: rgba(15,25,35,.8); color: #fff; border: 1px solid rgba(255,255,255,.1); }
.vehicle-body { padding: 24px; }
.vehicle-body h4 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.vehicle-body .desc { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.vehicle-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.vspec { padding: 5px 12px; background: var(--cream); border-radius: 6px; font-size: 11px; font-weight: 600; color: var(--text); }
.vehicle-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.vehicle-price .amt { font-family: var(--font-heading); font-size: 30px; font-weight: 800; color: var(--gold-dark); }
.vehicle-price .per { font-size: 12px; color: var(--text-muted); }

/* ═══ ROUTES ═══ */
.routes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.route-card { display: flex; align-items: center; justify-content: space-between; background: var(--card-bg); padding: 20px 24px; border-radius: var(--radius); border: 1px solid var(--border); transition: all var(--transition); cursor: pointer; gap: 16px; }
.route-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.route-left { display: flex; align-items: center; gap: 16px; min-width: 0; }
.route-badge { padding: 6px 12px; border-radius: 8px; font-size: 11px; font-weight: 700; white-space: nowrap; flex-shrink: 0; letter-spacing: .3px; }
.rb-airport { background: linear-gradient(135deg, #FEF3C7, #FDE68A); color: #92400E; }
.rb-surf { background: linear-gradient(135deg, #DBEAFE, #BFDBFE); color: #1E40AF; }
.rb-popular { background: linear-gradient(135deg, #FCE7F3, #FBCFE8); color: #9D174D; }
.rb-scenic { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); color: #065F46; }
.rb-custom { background: linear-gradient(135deg, #E0E7FF, #C7D2FE); color: #3730A3; }
.rb-city { background: linear-gradient(135deg, #F3E8FF, #E9D5FF); color: #6B21A8; }
.route-info h4 { font-size: 15px; font-weight: 700; color: var(--dark); }
.route-info p { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.route-right { text-align: right; flex-shrink: 0; }
.route-price { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--gold-dark); }
.route-meta { font-size: 11px; color: var(--text-muted); }
/* ═══ REVIEWS ═══ */
.reviews-stats { display: flex; align-items: center; justify-content: center; gap: 48px; margin-bottom: 48px; padding: 32px; background: var(--cream); border-radius: var(--radius); }
.rev-stat { text-align: center; }
.rev-stat .big { font-family: var(--font-heading); font-size: 40px; font-weight: 900; color: var(--dark); }
.rev-stat .stars { color: var(--gold); font-size: 16px; margin: 4px 0; }
.rev-stat .src { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--card-bg); padding: 28px; border-radius: var(--radius); border: 1px solid var(--border); transition: all var(--transition); }
.review-card:hover { box-shadow: var(--shadow); }
.review-card .stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.review-card blockquote { font-size: 14px; color: var(--text); line-height: 1.8; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.rev-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--dark); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.rev-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.rev-trip { font-size: 11px; color: var(--text-muted); }

/* ═══ COVERAGE ═══ */
.coverage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.coverage-card { background: var(--card-bg); padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); transition: all var(--transition); }
.coverage-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.coverage-card .cov-icon { font-size: 28px; margin-bottom: 16px; }
.coverage-card h4 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.coverage-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.cov-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cov-tag { padding: 6px 14px; background: var(--cream); border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--text); transition: all var(--transition); cursor: pointer; }
.cov-tag:hover { background: var(--gold); color: var(--dark); }
/* ═══ FAQ ═══ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--dark); background: none; border: none; width: 100%; text-align: left; font-family: var(--font-body); gap: 16px; }
.faq-q i { color: var(--gold); transition: transform var(--transition); font-size: 14px; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 0 22px; font-size: 15px; color: var(--text-light); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 400px; }

/* ═══ CTA ═══ */
.cta-section { background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 50%, #3A2518 100%); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(196,113,74,.08) 0%, transparent 60%); transform: translate(-50%, -50%); }
.cta-section::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--terra), var(--gold), var(--terra)); }
.cta-section h2 { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-section h2 em { font-style: normal; color: var(--gold-light); }
.cta-section p { color: rgba(255,255,255,.5); font-size: 14px; margin-bottom: 36px; letter-spacing: .3px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ═══ FOOTER ═══ */
.footer { background: #14100C; color: rgba(255,255,255,.6); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .footer-logo img { height: 44px; }
.footer-brand p { font-size: 13px; line-height: 1.8; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all var(--transition); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.footer h5 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer ul li { margin-bottom: 12px; }
.footer ul li a { font-size: 13px; display: flex; align-items: center; gap: 8px; }
.footer ul li a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 13px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--gold); width: 16px; font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); margin-top: 48px; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 12px; }
.footer-bottom a { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 24px; }
/* ═══ WHATSAPP ═══ */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 6px 24px rgba(37,211,102,.35); transition: transform var(--transition); }
.wa-float:hover { transform: scale(1.1); }

/* ═══ PAGE HERO (inner pages) ═══ */
.page-hero { padding: 140px 0 60px; background: linear-gradient(160deg, #12100E 0%, var(--dark) 50%, #3A2518 100%); text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 40px; background: var(--warm-white); border-radius: 50% 50% 0 0 / 100% 100% 0 0; }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.5); max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.4); margin-top: 20px; }
.breadcrumb a { color: var(--gold-light); }

/* ═══ ABOUT PAGE ═══ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content h2 { font-family: var(--font-heading); font-size: 36px; font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.about-content p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.about-hl { padding: 20px; background: var(--cream); border-radius: var(--radius-sm); text-align: center; }
.about-hl .num { font-family: var(--font-heading); font-size: 28px; font-weight: 800; color: var(--gold-dark); }
.about-hl .txt { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ═══ CONTACT PAGE ═══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form { background: var(--card-bg); padding: 40px; border-radius: var(--radius); border: 1px solid var(--border); }
.contact-form h3 { font-family: var(--font-heading); font-size: 24px; margin-bottom: 24px; color: var(--dark); }
.cf-input { width: 100%; padding: 14px 18px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font-body); outline: none; background: var(--warm-white); transition: border-color var(--transition); margin-bottom: 14px; }
.cf-input:focus { border-color: var(--gold); }
textarea.cf-input { resize: vertical; min-height: 120px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.ci-card { background: var(--card-bg); padding: 28px; border-radius: var(--radius); border: 1px solid var(--border); display: flex; align-items: center; gap: 20px; }
.ci-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(200,150,62,.1), rgba(200,150,62,.05)); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold); flex-shrink: 0; }
.ci-card h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.ci-card p { font-size: 13px; color: var(--text-light); }
.ci-card a { color: var(--gold-dark); font-weight: 600; }
/* ═══ RESPONSIVE ═══ */
/* ═══ BOOKING TABS & VEHICLE ROW ═══ */
.booking-tabs { display: flex; gap: 6px; padding: 4px; background: #f2f2f4; border-radius: 30px; margin-bottom: 20px; }
.booking-tab { flex: 1; border: 0; border-radius: 26px; background: transparent; padding: 10px; cursor: pointer; font-weight: 700; font-size: 13px; color: #999; font-family: var(--font-body); transition: all var(--transition); }
.booking-tab.active { background: var(--terra); color: #fff; }
.vehicle-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 14px 0; }
.vehicle-choice { border: 1px solid #e2e2e5; background: #f7f7f8; border-radius: 12px; padding: 10px; cursor: pointer; text-align: left; font-weight: 700; font-size: 13px; color: var(--dark); font-family: var(--font-body); transition: all var(--transition); }
.vehicle-choice small { display: block; color: #999; font-weight: 500; font-size: 11px; margin-top: 2px; }
.vehicle-choice.active { border-color: var(--terra); background: rgba(196,113,74,.08); }
.form-field-full { grid-column: 1 / -1; }

/* ═══ TOURS PAGE ═══ */
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tour-card { background: var(--card-bg); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: all var(--transition); }
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-img { height: 220px; background-size: cover; background-position: center; position: relative; }
.tour-tag { position: absolute; top: 14px; left: 14px; padding: 5px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; background: rgba(200,150,62,.9); color: var(--dark); }
.tour-body { padding: 24px; }
.tour-body h4 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.tour-body p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.tour-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.tour-meta span { display: flex; align-items: center; gap: 6px; }
.tour-meta i { color: var(--gold); }

/* ═══ RTL SUPPORT ═══ */
[dir="rtl"] { direction: rtl; text-align: right; }
[dir="rtl"] .nav { flex-direction: row-reverse; }
[dir="rtl"] .header-inner { flex-direction: row-reverse; }
[dir="rtl"] .route-left { flex-direction: row-reverse; }
[dir="rtl"] .route-right { text-align: left; }
[dir="rtl"] .hero-btns { flex-direction: row-reverse; }
[dir="rtl"] .hero-stats { flex-direction: row-reverse; }
[dir="rtl"] .section-label::before { margin-left: 12px; margin-right: 0; }
[dir="rtl"] .section-label::after { margin-right: 12px; margin-left: 0; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .lang-dropdown { right: auto; left: 0; }
[dir="rtl"] .form-select { background-position: left 14px center; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100vh; background: #fff; flex-direction: column; justify-content: center; align-items: center; gap: 24px; z-index: 2000; }
  .nav.show { display: flex; }
  .nav.show a { font-size: 18px; color: var(--dark); font-weight: 600; padding: 12px 32px; border-radius: 8px; transition: all var(--transition); width: 80%; max-width: 280px; text-align: center; }
  .nav.show a:hover, .nav.show a.active { background: var(--cream); color: var(--gold-dark); }
  .mobile-toggle { display: block; z-index: 2001; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-card { max-width: 100%; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicle-row { grid-template-columns: repeat(2, 1fr); }
  [dir="rtl"] .nav.show { flex-direction: column; }
  [dir="rtl"] .header-inner { flex-direction: row; }
}
@media (max-width: 768px) {
  .header-inner { height: 64px; padding: 0 16px; }
  .logo img { height: 38px; }
  .hero { padding: 100px 0 48px; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hero-stat { text-align: center; min-width: 70px; }
  .hero-stat .val { font-size: 22px; }
  .hero-stat .lbl { font-size: 10px; }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .feature-card { padding: 24px 20px; }
  .feature-card h4 { font-size: 15px; }
  .feature-card p { font-size: 13px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
  .route-card { padding: 16px; gap: 12px; }
  .route-info h4 { font-size: 14px; }
  .route-price { font-size: 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { font-size: 12px; }
  .footer-brand .footer-logo img { height: 36px; }
  .footer-social { margin-top: 12px; }
  .footer-social a { width: 32px; height: 32px; font-size: 12px; }
  .footer h5 { font-size: 14px; margin-bottom: 12px; }
  .footer ul li { margin-bottom: 8px; }
  .footer ul li a { font-size: 12px; }
  .footer-contact p { font-size: 12px; margin-bottom: 6px; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { margin-top: 20px; padding: 14px 0; }
  .reviews-stats { flex-direction: row; gap: 24px; padding: 24px; }
  .container { padding: 0 16px; }
  .header-cta .header-phone { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 360px; justify-content: center; }
  .cta-section { padding: 64px 0; }
  .cta-section h2 { font-size: 24px; }
  .contact-form { padding: 24px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .page-hero { padding: 110px 0 48px; }
  .page-hero h1 { font-size: 28px; }
  .page-hero p { font-size: 14px; }
  .lang-btn { padding: 6px 10px; font-size: 12px; z-index: 1; }
  .lang-dropdown { z-index: 50; }
  .form-select { font-size: 14px; }
  .booking-tabs { flex-wrap: wrap; }
  .vehicle-row { grid-template-columns: repeat(2, 1fr); }
  .wa-float { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 16px; }
  .values-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .hero { padding: 88px 0 36px; }
  .hero h1 { font-size: 24px; }
  .hero-card { padding: 16px; border-radius: 16px; }
  .hero-card h3 { font-size: 16px; margin-bottom: 12px; }
  .form-group { margin-bottom: 10px; }
  .form-group label { font-size: 10px; margin-bottom: 4px; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .form-input { padding: 10px 12px; font-size: 13px; }
  textarea.form-input { min-height: 36px; }
  .booking-tabs { padding: 3px; margin-bottom: 12px; }
  .booking-tab { padding: 7px; font-size: 12px; }
  .vehicle-row { gap: 6px; margin: 10px 0; }
  .vehicle-choice { padding: 8px; font-size: 12px; }
  .vehicle-choice small { font-size: 10px; }
  .book-note { font-size: 11px; margin-top: 8px; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 12px; }
  .hero-stat .val { font-size: 20px; }
  .trust-item { font-size: 12px; }
  .reviews-stats { gap: 16px; padding: 16px; }
  .rev-stat .big { font-size: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-icon { width: 44px; height: 44px; font-size: 18px; }
  .section-title { font-size: 24px; }
  .btn { padding: 13px 24px; font-size: 13px; }
  .vehicle-row { grid-template-columns: 1fr 1fr; }
  .route-card { flex-direction: column; align-items: flex-start; }
  .route-right { text-align: left; display: flex; align-items: center; gap: 8px; }
  .tour-img { height: 180px; }
}