/* ========================================================
   🏛️ ETERNAL EGYPT TOURS — Premium Design System
   Egyptian Luxury Theme with RTL Arabic Support
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,700;0,900;1,500&family=Tajawal:wght@500;700;800&display=swap');

/* ─── Design Tokens ────────────────────────────────────── */
:root {
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #996515;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --black-primary: #080808;
  --black-secondary: #111111;
  --black-card: #161616;
  --sand-bg: #FBF8F1;
  --sand-warm: #F5ECD7;
  --papyrus: #F4E4C1;
  --nile-blue: #1A5276;
  --red-sea: #00B4D8;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --text-light: #cccccc;
  --white: #ffffff;

  --font-en-heading: 'Playfair Display', Georgia, serif;
  --font-en-body: 'Inter', -apple-system, sans-serif;
  --font-ar-heading: 'Tajawal', sans-serif;
  --font-ar-body: 'Cairo', sans-serif;

  --transition-fast: 0.2s ease;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-xl: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 32px rgba(212,175,55,0.25);
}

/* ─── Global Reset ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--sand-bg);
  color: var(--text-dark);
  font-family: var(--font-en-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-en-heading);
  color: var(--black-primary);
  line-height: 1.2;
}
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-ar-heading);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ─── Utilities ────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold-text { color: var(--gold-primary); }

/* ─── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  letter-spacing: 0.3px;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(212,175,55,0.45);
}

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

.btn-white {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-white:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

.btn-lg { padding: 18px 48px; font-size: 18px; }
.btn-sm { padding: 10px 24px; font-size: 14px; }

/* ─── Navigation ───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  transition: var(--transition);
}

.navbar.scrolled {
  height: 60px;
  background: rgba(8,8,8,0.98);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--font-en-heading);
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .gold-text { color: var(--gold-primary); }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: var(--transition-fast);
}

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

.lang-switcher {
  background-color: transparent;
  color: var(--gold-primary);
  border: 1.5px solid var(--gold-primary);
  padding: 6px 32px 6px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-ar-body);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}
.lang-switcher:hover, .lang-switcher:focus {
  background-color: var(--gold-primary);
  color: var(--black-primary);
  outline: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23080808' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}
.lang-switcher option {
  background-color: #111;
  color: var(--white);
  font-weight: 500;
}
html[dir="rtl"] .lang-switcher {
  padding: 6px 16px 6px 32px;
  background-position: left 12px center;
}

/* Mobile hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition);
}

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}
html[dir="rtl"] .hero-overlay {
  background: linear-gradient(225deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50px;
  color: var(--gold-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero h1 .gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 520px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  color: var(--gold-primary);
  opacity: 0.15;
  font-size: 24px;
  animation: floatParticle 20s linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* ─── Section Styles ───────────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head .section-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50px;
  color: var(--gold-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Services ─────────────────────────────────────────── */
.services {
  padding: 120px 0;
  background: var(--sand-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  padding: 40px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.2);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.15);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ─── Destinations ─────────────────────────────────────── */
.destinations {
  padding: 120px 0;
  background: var(--white);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.dest-card:hover img { transform: scale(1.1); }

.dest-card .dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}
.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 70%); }

.dest-card h3 { color: var(--white); font-size: 22px; }
.dest-card p { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 4px; }

.dest-card:first-child { grid-row: span 2; }

/* ─── Trips ────────────────────────────────────────────── */
.trips {
  padding: 120px 0;
  background: var(--black-primary);
  position: relative;
}
.trips::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='%23D4AF37' stroke-width='0.3' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.trips .section-head h2 { color: var(--white); }
.trips .section-head p { color: rgba(255,255,255,0.6); }
.trips .section-head .section-badge {
  background: rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.3);
}

.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.trip-card {
  background: var(--black-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}
.trip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212,175,55,0.15);
  border-color: rgba(212,175,55,0.2);
}

.trip-img {
  height: 260px;
  position: relative;
  overflow: hidden;
}
.trip-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.trip-card:hover .trip-img img { transform: scale(1.08); }

.trip-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
html[dir="rtl"] .trip-price { right: auto; left: 16px; }

.trip-body { padding: 28px; }

.trip-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.trip-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-primary);
  font-size: 14px;
  font-weight: 600;
}

.trip-body h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 12px;
  transition: var(--transition-fast);
}
.trip-card:hover .trip-body h3 { color: var(--gold-primary); }

.trip-body p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Stats Bar ────────────────────────────────────────── */
.stats-bar {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='white' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item h3 {
  font-size: 48px;
  color: var(--white);
  font-weight: 900;
}
.stat-item p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-top: 8px;
  font-weight: 500;
}

/* ─── Testimonials ─────────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  background: var(--sand-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(212,175,55,0.2);
  transform: translateY(-4px);
}

.testimonial-stars { color: var(--gold-primary); font-size: 18px; margin-bottom: 16px; }
.testimonial-card blockquote {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}
.testimonial-info strong { display: block; font-size: 15px; }
.testimonial-info span { color: var(--text-muted); font-size: 13px; }

/* ─── CTA Banner ───────────────────────────────────────── */
.cta-banner {
  padding: 100px 0;
  background: var(--black-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ─── Footer ───────────────────────────────────────────── */
footer {
  background: #050505;
  color: var(--white);
  padding: 80px 0 0;
  border-top: 2px solid var(--gold-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: var(--gold-primary);
  font-size: 18px;
  margin-bottom: 20px;
}
.footer-col p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  padding: 4px 0;
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--gold-primary); padding-left: 6px; }
html[dir="rtl"] .footer-links a:hover { padding-left: 0; padding-right: 6px; }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-links a {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--text-light);
  font-size: 18px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-links a:hover {
  background: var(--gold-primary);
  color: var(--black-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.35);
  font-size: 14px;
}

/* ─── Scroll Animations ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .dest-card:first-child { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0;
    width: 100%;
    background: rgba(8,8,8,0.98);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(212,175,55,0.15);
  }
  .mobile-toggle { display: flex; }

  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .trips-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─── Pricing Page Styles ──────────────────────────────── */
.pricing-hero {
  padding: 140px 0 80px;
  background: var(--black-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  top: 20%; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.pricing-hero h1 { color: var(--white); font-size: 48px; margin-bottom: 16px; position: relative; }
.pricing-hero p { color: rgba(255,255,255,0.6); font-size: 18px; position: relative; }

.pricing-section {
  padding: 80px 0;
  background: var(--sand-bg);
}

.pricing-wizard {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.15);
}

.wizard-step {
  display: none;
  padding: 48px;
  animation: fadeInStep 0.5s ease;
}
.wizard-step.active { display: block; }

@keyframes fadeInStep {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.wizard-step h2 {
  font-size: 28px;
  margin-bottom: 8px;
}
.wizard-step .step-desc {
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Progress Bar */
.wizard-progress {
  display: flex;
  padding: 0 48px;
  padding-top: 36px;
  gap: 8px;
}
.wizard-progress .step-dot {
  flex: 1;
  height: 5px;
  background: #e0e0e0;
  border-radius: 10px;
  transition: var(--transition);
}
.wizard-progress .step-dot.done { background: var(--gold-primary); }
.wizard-progress .step-dot.current { background: linear-gradient(90deg, var(--gold-primary), var(--gold-light)); }

/* Option cards for pricing */
.option-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.option-card {
  padding: 24px;
  border: 2px solid #eee;
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.option-card:hover { border-color: var(--gold-primary); transform: translateY(-4px); }
.option-card.selected {
  border-color: var(--gold-primary);
  background: rgba(212,175,55,0.05);
  box-shadow: var(--shadow-gold);
}
.option-card .opt-icon { font-size: 36px; margin-bottom: 12px; }
.option-card h4 { font-size: 18px; margin-bottom: 4px; }
.option-card p { font-size: 13px; color: var(--text-muted); }

/* Slider */
.range-slider-wrap {
  margin: 24px 0;
}
.range-slider-wrap input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold-primary) 0%, #eee 0%);
  outline: none;
}
.range-slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold-primary);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  border: 3px solid var(--white);
}
.range-value {
  text-align: center;
  font-size: 48px;
  font-family: var(--font-en-heading);
  color: var(--gold-primary);
  font-weight: 900;
  margin: 16px 0;
}

/* Addons */
.addon-grid { display: grid; gap: 12px; }
.addon-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1.5px solid #eee;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}
.addon-item:hover { border-color: var(--gold-primary); }
.addon-item.checked { border-color: var(--gold-primary); background: rgba(212,175,55,0.04); }
.addon-check {
  width: 24px; height: 24px;
  border-radius: 6px;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.addon-item.checked .addon-check {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--white);
}
.addon-info { flex: 1; }
.addon-info strong { display: block; font-size: 15px; }
.addon-info span { font-size: 13px; color: var(--text-muted); }
.addon-price { font-weight: 700; color: var(--gold-dark); white-space: nowrap; }

/* Price Summary */
.price-summary {
  background: var(--black-primary);
  border-radius: var(--radius);
  padding: 36px;
  color: var(--white);
  margin-top: 24px;
}
.price-summary h3 { color: var(--gold-primary); margin-bottom: 20px; }
.price-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 15px;
}
.price-line span:first-child { color: rgba(255,255,255,0.6); }
.price-line span:last-child { font-weight: 600; }
.price-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid var(--gold-primary);
  font-size: 24px;
  font-weight: 700;
}
.price-total span:last-child { color: var(--gold-primary); }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  gap: 16px;
}

/* ─── Admin Page Styles ────────────────────────────────── */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--black-primary);
  padding: 24px;
  border-right: 1px solid rgba(212,175,55,0.15);
}
.admin-sidebar .logo { margin-bottom: 40px; font-size: 18px; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
  transition: var(--transition-fast);
  font-size: 15px;
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(212,175,55,0.1);
  color: var(--gold-primary);
}

.admin-main {
  padding: 32px;
  background: #f5f5f5;
  overflow-y: auto;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.admin-header h1 { font-size: 28px; }

.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th, .admin-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
html[dir="rtl"] .admin-table th,
html[dir="rtl"] .admin-table td { text-align: right; }
.admin-table th {
  background: #fafafa;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}
.admin-table tr:hover { background: rgba(212,175,55,0.03); }

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition-fast);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.form-group textarea { min-height: 100px; resize: vertical; }

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

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 700px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.modal-header h2 { font-size: 22px; }
.modal-close {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition-fast);
}
.modal-close:hover { background: #e0e0e0; }

/* Toast notif */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  z-index: 3000;
  animation: toastIn 0.4s ease, toastOut 0.4s ease 2.6s forwards;
  box-shadow: var(--shadow-lg);
}
html[dir="rtl"] .toast { right: auto; left: 30px; }
.toast.success { background: #2ecc71; }
.toast.error { background: #e74c3c; }
@keyframes toastIn { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; transform: translateY(-20px); } }

/* Login form */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-primary);
}
.login-box {
  background: var(--black-secondary);
  padding: 48px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212,175,55,0.2);
  width: 400px;
  max-width: 90%;
}
.login-box h2 { color: var(--gold-primary); text-align: center; margin-bottom: 8px; }
.login-box .login-sub { color: rgba(255,255,255,0.5); text-align: center; font-size: 14px; margin-bottom: 32px; }
.login-box .form-group label { color: rgba(255,255,255,0.7); }
.login-box .form-group input {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
}
.login-box .form-group input:focus {
  border-color: var(--gold-primary);
  background: rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .form-row { grid-template-columns: 1fr; }
  
  /* Mobile UI Optimizations */
  .hero { min-height: 100svh; height: auto; }
  .pricing-hero { padding: 100px 20px 60px; }
  .pricing-hero h1 { font-size: 36px; }
  
  .wizard-step { padding: 24px 20px; }
  .wizard-progress { padding: 24px 20px 0; }
  
  .wizard-nav { flex-direction: column; gap: 12px; align-items: stretch; }
  .wizard-nav .btn { width: 100%; margin: 0; }
  .wizard-nav div { width: 100%; display: flex; flex-direction: column; gap: 12px; }
  
  .stats-bar, .services, .destinations, .trips, .testimonials, .cta-banner { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 28px; }
  
  .modal-content { padding: 24px; width: 95%; }
  .login-box { padding: 32px 24px; }
  
  .addon-item { flex-wrap: wrap; }
  .addon-info { width: 100%; margin-top: 8px; margin-bottom: 8px; }
}

/* Touch Interaction Active States */
.btn:active, .option-card:active, .trip-card:active, .addon-item:active {
  transform: scale(0.96) !important;
  transition: transform 0.1s ease;
}

/* Sticky Mobile WhatsApp Button */
.sticky-whatsapp {
  display: none; /* hidden on desktop by default */
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.sticky-whatsapp:hover, .sticky-whatsapp:active {
  transform: scale(1.1);
  color: white;
}
html[dir="rtl"] .sticky-whatsapp { right: auto; left: 24px; }

@media (max-width: 768px) {
  .sticky-whatsapp { display: flex; }
  body { padding-bottom: 80px; } /* Prevent footer from overlapping trailing content on mobile */
}
