/* ═══════════════════════════════════
   index.css — Homepage Only Styles
   ═══════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
  position: relative; overflow: hidden;
  background:
    url('https://images.unsplash.com/photo-1585036156171-384164a8c675?w=1800&q=85&fit=crop')
    center 50% / cover no-repeat;
}

/* Subtle dark vignette at edges + gentle cream centre — no washed-out look */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,25,0.72) 0%,
    rgba(10,10,25,0.60) 40%,
    rgba(10,10,25,0.70) 100%
  );
  pointer-events: none;
}

/* Everything inside hero sits above the overlay */
.hero > * { position: relative; z-index: 1; }

.hero-arabic {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.2rem, 3.5vw, 1.9rem); color: var(--gold);
  letter-spacing: 0.08em; margin-bottom: 22px;
  direction: rtl; opacity: 1; display: block;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  color: var(--white); margin-bottom: 18px;
  letter-spacing: -0.02em; line-height: 1.06;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem); color: rgba(255,255,255,0.88);
  max-width: 460px; margin: 0 auto 34px; font-weight: 300; line-height: 1.8;
}

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 36px;
}
.hero .badge { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); color: var(--white); backdrop-filter: blur(4px); }

.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px; margin-top: 44px;
}
.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px; transition: all 0.2s;
}
.why-card:hover { border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: var(--shadow); }
.why-icon { font-size: 1.4rem; margin-bottom: 11px; }
.why-card h3 { font-family: var(--serif); font-size: 1.05rem; margin-bottom: 7px; }
.why-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── STEPS ── */
.steps {
  display: flex; flex-direction: column;
  margin-top: 44px; position: relative;
}
.steps::before {
  content: ''; position: absolute; left: 17px; top: 36px; bottom: 36px;
  width: 1px; background: linear-gradient(to bottom, var(--gold), transparent);
}
.step { display: flex; gap: 18px; align-items: flex-start; padding: 18px 0; }
.step-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 0.88rem; color: var(--gold);
  flex-shrink: 0; z-index: 1;
}
.step-content h3 { font-family: var(--serif); font-size: 1.08rem; margin-bottom: 5px; }
.step-content p { font-size: 0.83rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px; margin-top: 44px;
}
.testimonial {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px;
}
.stars { color: var(--gold); font-size: 0.78rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial p { font-size: 0.84rem; color: var(--muted); line-height: 1.75; margin-bottom: 14px; font-style: italic; font-weight: 300; }
.testimonial-author { font-size: 0.78rem; font-weight: 500; color: var(--ink); }
.testimonial-location { font-size: 0.72rem; color: var(--muted); }

/* ── FAQ ── */
.faq-list { margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--border-lt); padding: 15px 0; }
.faq-q {
  font-family: var(--serif); font-size: 1rem; color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 14px; user-select: none;
}
.faq-q::after {
  content: '+'; font-size: 1.15rem; color: var(--gold); flex-shrink: 0;
  font-family: var(--sans); font-weight: 300; transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 0.84rem; color: var(--muted); line-height: 1.8;
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s;
  font-weight: 300;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 11px; }
