/* =============================================
   اعتمرنا — Main Stylesheet
   ============================================= */

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

:root {
  --green:        #235347;
  --green-dark:   #1b4d3e;
  --green-light:  #2a6b45;
  --gold:         #c58940;
  --gold-light:   #d4a017;
  --teal:         #2d9d8f;
  --teal-light:   #3db8a9;
  --bg:           #f7f9f8;
  --bg-alt:       #eef5f1;
  --white:        #ffffff;
  --text:         #1a2e24;
  --text-muted:   #5a7a66;
  --border:       #d4e4dc;
  --shadow-sm:    0 2px 8px rgba(42,107,69,.08);
  --shadow-md:    0 8px 30px rgba(42,107,69,.12);
  --shadow-lg:    0 20px 60px rgba(42,107,69,.16);
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --transition:   .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
}

/* ---------- Utility ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn-lg { padding: 14px 30px; font-size: 16px; }
.btn-xl { padding: 16px 36px; font-size: 17px; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42,107,69,.35);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200,144,44,.35);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: #20b858;
  border-color: #20b858;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,.35);
}

.btn-white {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--bg);
  transform: translateY(-2px);
}

.btn-select-package { width: 100%; justify-content: center; margin-top: 16px; }

/* ---------- Section Headers ---------- */
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--green);
  border: 1px solid var(--border);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: .5px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.section-desc { color: var(--text-muted); font-size: 16px; max-width: 560px; margin: 0 auto; }
.section-desc-white { color: rgba(255,255,255,.85); }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all .4s ease;
  padding: 16px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-link {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  padding: 6px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.14);
  transition: all var(--transition);
  flex-shrink: 0;
}
.site-header.scrolled .logo-link {
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.logo-img { height: 50px; width: auto; display: block; transition: height var(--transition); }
.site-header.scrolled .logo-img { height: 42px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  color: var(--white);
  font-weight: 600;
  font-size: 14.5px;
  padding: 7px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition);
}
.nav-link:hover { background: rgba(255,255,255,.15); }
.site-header.scrolled .nav-link { color: var(--text); }
.site-header.scrolled .nav-link:hover { background: var(--bg-alt); color: var(--green); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 8px 20px;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.site-header.scrolled .nav-cta { color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { width: 26px; height: 2.5px; background: var(--white); border-radius: 4px; transition: all var(--transition); display: block; }
.site-header.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 45%, var(--teal) 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Geometric Islamic pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      60deg,
      rgba(255,255,255,.04) 0px,
      rgba(255,255,255,.04) 1px,
      transparent 1px,
      transparent 30px
    ),
    repeating-linear-gradient(
      -60deg,
      rgba(255,255,255,.04) 0px,
      rgba(255,255,255,.04) 1px,
      transparent 1px,
      transparent 30px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.03) 0px,
      rgba(255,255,255,.03) 1px,
      transparent 1px,
      transparent 30px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.25);
  padding: 7px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
  letter-spacing: .5px;
}

.hero-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title .highlight {
  color: var(--gold-light);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 3px;
  background: var(--gold-light);
  border-radius: 4px;
  opacity: .5;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl);
  padding: 20px 32px;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item { text-align: center; padding: 0 24px; }
.stat-number {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--white);
  display: inline-block;
  line-height: 1;
}
.stat-plus { font-size: 24px; font-weight: 900; color: var(--gold-light); }
.stat-label { display: block; font-size: 13px; color: rgba(255,255,255,.75); margin-top: 4px; font-weight: 600; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,.2); }

.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* =============================================
   PACKAGES
   ============================================= */
.packages-section { padding: 96px 0; background: var(--bg); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 2px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 4px;
  background: var(--border);
  transition: background var(--transition);
}
.package-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.package-card:hover::before { background: var(--green); }

.package-featured {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}
.package-featured::before { background: var(--green); }
.package-featured:hover { transform: scale(1.03) translateY(-6px); }

.package-premium::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.package-premium:hover { border-color: var(--gold); }
.package-premium:hover::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.badge-popular {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .5px;
}

.package-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
  transition: all var(--transition);
}
.package-featured .package-icon { background: #eaf3ee; color: var(--green); }
.package-premium .package-icon { background: #fef5e8; color: var(--gold); }
.package-card:hover .package-icon { background: var(--green); color: var(--white); }
.package-premium:hover .package-icon { background: var(--gold); color: var(--white); }

.package-name { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.package-sub { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.package-header { margin-bottom: 20px; }

.package-price-box { margin-bottom: 22px; }
.price-from { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.price-main { display: flex; align-items: baseline; gap: 4px; margin-top: 2px; }
.price-val { font-size: 40px; font-weight: 900; color: var(--green); line-height: 1; }
.package-premium .price-val { color: var(--gold); }
.price-currency { font-size: 16px; font-weight: 700; color: var(--text-muted); }

.package-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.package-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text); font-weight: 500;
}
.package-features li svg { color: var(--teal); flex-shrink: 0; }
.feature-no { color: var(--text-muted) !important; }
.feature-no svg { color: #e06060 !important; }

.package-days {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--text-muted); font-weight: 600;
  background: var(--bg);
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 4px;
}

/* =============================================
   BOOKING WIZARD
   ============================================= */
.booking-section { padding: 96px 0; background: var(--bg-alt); }

.booking-progress { margin-bottom: 48px; }
.progress-track {
  height: 6px;
  background: var(--border);
  border-radius: 50px;
  margin-bottom: 20px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--teal));
  border-radius: 50px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}
.progress-steps { display: flex; justify-content: space-between; }
.progress-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex: 1;
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  transition: color var(--transition);
}
.step-circle {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  transition: all var(--transition);
}
.progress-step.active .step-circle { background: var(--green); color: var(--white); }
.progress-step.active { color: var(--green); }
.progress-step.done .step-circle { background: var(--teal); color: var(--white); }

.wizard-step { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.step-title { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 28px; }

/* Wizard Step 1 */
.wizard-packages { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.wizard-option input { display: none; }
.wizard-option-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.wizard-option-inner:hover { border-color: var(--green); background: #f7fbf9; }
.wizard-option input:checked + .wizard-option-inner {
  border-color: var(--green);
  background: #edf6f1;
}
.wo-badge {
  position: absolute;
  top: -10px; right: 16px;
  background: var(--green);
  color: var(--white);
  font-size: 11px; font-weight: 800;
  padding: 2px 10px; border-radius: 50px;
}
.wo-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.wo-text { flex: 1; }
.wo-text strong { display: block; font-size: 16px; font-weight: 800; color: var(--text); }
.wo-text span { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.wo-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  transition: all var(--transition);
}
.wizard-option input:checked + .wizard-option-inner .wo-check {
  background: var(--green);
  color: var(--white);
}

/* Step 2 */
.date-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.date-field label {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; color: var(--text);
  margin-bottom: 8px;
}
.form-input {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: 'Cairo', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--text); background: var(--bg);
  outline: none; transition: border-color var(--transition);
  direction: rtl;
}
.form-input:focus { border-color: var(--green); background: var(--white); }
textarea.form-input { resize: none; }
select.form-input { cursor: pointer; }

.route-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #edf6f1; color: var(--green);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 9px 16px; font-size: 13.5px; font-weight: 700;
  margin-bottom: 24px;
}

/* Step 3 */
.persons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.person-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.person-card:hover, .person-card.selected {
  border-color: var(--green);
  background: #edf6f1;
}
.person-card.selected { box-shadow: 0 0 0 3px rgba(42,107,69,.12); }
.person-card.selected .person-icon { background: var(--green); color: var(--white); }
.person-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin: 0 auto 8px;
}
.person-count { font-weight: 800; font-size: 14px; color: var(--text); margin-bottom: 4px; }
.person-price-label { font-size: 12px; color: var(--teal); font-weight: 700; }
.person-badge {
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--green); color: var(--white);
  font-size: 10px; font-weight: 800;
  padding: 3px; text-align: center;
}

.price-summary {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 14.5px;
  border-bottom: 1px solid var(--border);
}
.summary-row:last-child { border-bottom: none; }
.total-row { font-weight: 800; font-size: 16px; }
.price-highlight { color: var(--green); font-weight: 900; font-size: 20px; }

/* Step 4 */
.confirm-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px; }
.booking-summary-box, .booking-form-box {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}
.booking-summary-box h4, .booking-form-box h4 {
  font-size: 17px; font-weight: 800; color: var(--text);
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.sd-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.sd-row:last-child { border-bottom: none; }
.sd-row span { color: var(--text-muted); }
.total-sd { margin-top: 8px; padding-top: 12px; border-top: 2px solid var(--border); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 7px; }

/* Step Nav */
.step-nav { display: flex; gap: 12px; justify-content: flex-end; margin-top: 24px; flex-wrap: wrap; }

/* Success Screen */
.success-screen {
  text-align: center; padding: 40px 20px;
}
.success-icon {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
  animation: pop .5s cubic-bezier(.4,0,.2,1);
}
@keyframes pop {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.success-screen h2 { font-size: 30px; font-weight: 900; color: var(--text); margin-bottom: 12px; }
.success-screen p { color: var(--text-muted); font-size: 16px; max-width: 480px; margin: 0 auto 20px; line-height: 1.8; }
.success-number { font-weight: 800; color: var(--green); font-size: 16px; margin-bottom: 28px; }

/* =============================================
   WHY US
   ============================================= */
.why-us { padding: 96px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.why-card:hover { border-color: var(--border); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
  width: 68px; height: 68px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: transform var(--transition);
  font-size: 28px;
  background: rgba(35, 83, 71, 0.12);
  color: var(--green);
}
.why-card:hover .why-icon { transform: scale(1.1); }
.why-card h3 { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works { padding: 96px 0; background: var(--bg); }
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 52px;
}
.steps-timeline::before {
  content: '';
  position: absolute;
  top: 28px; right: 12.5%; left: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  z-index: 0;
}
.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--white);
  font-size: 20px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(42,107,69,.3);
}
.step-content { padding: 0 12px; }
.step-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(35, 83, 71, 0.1);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin: 0 auto 10px;
}
.step-content h4 { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.step-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.cta-center { text-align: center; }

/* =============================================
   REVIEWS
   ============================================= */
.reviews-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  position: relative;
}
.reviews-section .section-title { color: var(--white); }
.reviews-section .section-tag { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.2); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  color: var(--white);
}
.review-card:hover { background: rgba(255,255,255,.16); transform: translateY(-4px); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-info strong { display: block; font-size: 15px; font-weight: 800; }
.reviewer-info span { font-size: 12px; color: rgba(255,255,255,.6); }
.review-stars { color: var(--gold-light); font-size: 13px; display: flex; gap: 3px; flex-shrink: 0; }
.review-stars i { line-height: 1; }
.review-card p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.85); }

/* =============================================
   FAQ
   ============================================= */
.faq-section { padding: 96px 0; background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--green); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px;
  background: none; border: none; cursor: pointer;
  font-family: 'Cairo', sans-serif; font-size: 16px; font-weight: 700; color: var(--text);
  text-align: right; transition: background var(--transition);
}
.faq-question:hover { background: var(--bg); }
.faq-item.open .faq-question { background: #edf6f1; color: var(--green); }
.faq-icon { flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(-180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
  padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 20px; }
.faq-answer p { font-size: 14.5px; color: var(--text-muted); line-height: 1.8; }

/* =============================================
   CONTACT CTA
   ============================================= */
.contact-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--green) 100%);
  position: relative;
  overflow: hidden;
}
.cta-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,144,44,.12) 0%, transparent 50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 900; color: var(--white); margin-bottom: 10px; }
.cta-text p { font-size: 16px; color: rgba(255,255,255,.85); margin-bottom: 24px; }
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.contact-chip i { font-size: 18px; flex-shrink: 0; }
.contact-chip-label { white-space: nowrap; }
.contact-chip-value {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.95;
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  margin-right: 2px;
  white-space: nowrap;
}
.contact-chip-phone {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: var(--white);
}
.contact-chip-phone:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  color: var(--white);
}
.contact-chip-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.contact-chip-whatsapp:hover {
  background: #20b858;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  color: var(--white);
}
.cta-buttons { display: flex; flex-direction: column; gap: 12px; align-items: center; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--green-dark); padding: 64px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  display: block;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 18px; }
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.footer-whatsapp i { font-size: 20px; flex-shrink: 0; }
.footer-wa-num {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.95;
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  margin-right: 2px;
}
.footer-whatsapp:hover {
  background: #20b858;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  color: var(--white);
}
.footer-links h4 { font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 18px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; font-weight: 500; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,.2);
}
.footer-bottom-inner { display: flex; align-items: center; justify-content: center; text-align: center; }
.m2-copyright { font-size: 13px; margin: 0; }
.m2-copyright a { color: #ffffff; text-decoration: none; transition: opacity var(--transition); }
.m2-copyright a:hover { opacity: 0.85; }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  left: auto;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  text-decoration: none;
  transition: all var(--transition);
  font-size: 28px;
}
.float-whatsapp:hover { transform: scale(1.12); background: #20b858; }
.float-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  background: var(--text); color: var(--white);
  font-family: 'Cairo', sans-serif; font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 6px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.float-whatsapp:hover .float-tooltip { opacity: 1; }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .package-featured { transform: none; }
  .package-featured:hover { transform: translateY(-6px); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-timeline::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .confirm-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed; top: 0; left: -100%; right: auto;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 28px 40px;
    gap: 6px;
    box-shadow: 4px 0 30px rgba(0,0,0,.12);
    transition: left .35s cubic-bezier(.4,0,.2,1);
    z-index: 999;
  }
  .main-nav.open { left: 0; }
  .main-nav .nav-link { color: var(--text) !important; width: 100%; }
  .hamburger { display: flex; z-index: 1001; }

  .packages-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 0; }
  .stat-item { padding: 0 14px; }
  .stat-divider { height: 30px; }
  .date-grid { grid-template-columns: 1fr; }
  .persons-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .steps-timeline { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .contact-details { justify-content: center; }
  .wizard-step { padding: 28px 20px; }
  .hero-stats { padding: 16px 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { flex: 1; min-width: 100px; padding: 8px; }
  .steps-timeline { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .step-nav { justify-content: center; flex-direction: column; }
  .step-nav .btn { width: 100%; justify-content: center; }
}
