/* ═══════════════════════════════════════════════
   HOME PAGE STYLES
═══════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  gap: 2rem;
}

.hero > * { position: relative; z-index: 1; }

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(26,58,92,0.8) 0%, transparent 50%),
              linear-gradient(135deg, var(--navy) 0%, #0A1825 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
  top: -200px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,58,92,0.6), transparent 70%);
  bottom: -100px; left: 100px;
  animation: orbFloat 16s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.05), transparent 70%);
  top: 50%; left: 40%;
  animation: orbFloat 20s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero__content {
  padding: 4rem 0 4rem clamp(1.5rem, 5vw, 5rem);
  animation: heroIn 1.2s ease both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: heroIn 1s ease 0.1s both;
}

.dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

.hero__title {
  margin-bottom: 1.5rem;
  animation: heroIn 1s ease 0.2s both;
}

.hero__title .line {
  display: block;
  color: var(--white);
}

.hero__subtitle {
  max-width: 500px;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  animation: heroIn 1s ease 0.3s both;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: heroIn 1s ease 0.4s both;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: heroIn 1s ease 0.5s both;
}

.trust-item { text-align: center; }

.trust-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.trust-num sup { font-size: 1rem; }

.trust-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* ── HERO VISUAL ── */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem clamp(1.5rem, 5vw, 5rem) 4rem 0;
  animation: heroIn 1.2s ease 0.3s both;
}

.glasses-showcase {
  position: relative;
  width: min(480px, 100%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glasses-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  animation: ringRotate 20s linear infinite;
}

.glasses-ring--outer {
  inset: 0;
  animation-duration: 30s;
}

.glasses-ring--mid {
  inset: 15%;
  border-style: dashed;
  border-color: rgba(201,168,76,0.08);
  animation-direction: reverse;
  animation-duration: 20s;
}

.glasses-ring--inner {
  inset: 30%;
  border-color: rgba(201,168,76,0.15);
  animation-duration: 15s;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.glasses-icon {
  position: relative;
  z-index: 1;
  width: 60%;
  color: var(--gold);
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.3));
  animation: glassesPulse 4s ease-in-out infinite;
}

@keyframes glassesPulse {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(201,168,76,0.25)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 60px rgba(201,168,76,0.5)); transform: scale(1.03); }
}

.glasses-particles { position: absolute; inset: 0; pointer-events: none; }

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.p1 { top: 15%; left: 20%; animation: particleFloat 6s ease-in-out infinite; opacity: 0.6; }
.p2 { top: 25%; right: 18%; animation: particleFloat 8s ease-in-out 1s infinite; opacity: 0.4; width: 6px; height: 6px; }
.p3 { bottom: 20%; left: 15%; animation: particleFloat 7s ease-in-out 2s infinite; opacity: 0.5; }
.p4 { bottom: 30%; right: 22%; animation: particleFloat 9s ease-in-out 0.5s infinite; opacity: 0.3; width: 3px; height: 3px; }
.p5 { top: 50%; left: 8%; animation: particleFloat 5s ease-in-out 1.5s infinite; opacity: 0.6; }
.p6 { top: 60%; right: 8%; animation: particleFloat 11s ease-in-out 3s infinite; opacity: 0.4; width: 5px; height: 5px; }

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-18px) scale(1.3); opacity: 1; }
}

/* ── SCROLL INDICATOR ── */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  animation: heroIn 1.5s ease 1s both;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── SERVICES ── */
.services { background: var(--navy); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--navy);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: background var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover { background: var(--navy-mid); }
.service-card:hover::before { opacity: 1; }

.service-card--highlight {
  background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(201,168,76,0.02));
  border: none;
  position: relative;
}

.service-card--highlight::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  transition: transform var(--transition);
}
.service-card:hover .service-card__icon { transform: scale(1.1); }

.service-card__content { flex: 1; }
.service-card__content h3 { font-size: 1.25rem; margin-bottom: 0.65rem; }
.service-card__content p { font-size: 0.9rem; line-height: 1.65; }
.service-card__meta { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }

.service-card__link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  align-self: flex-start;
  transition: all var(--transition);
  flex-shrink: 0;
}
.service-card:hover .service-card__link {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ── WHY CHOOSE ── */
.why { background: var(--navy-mid); position: relative; overflow: hidden; }

.why__bg { position: absolute; inset: 0; pointer-events: none; }
.why__shape {
  position: absolute;
  right: -20%;
  top: 50%;
  transform: translateY(-50%);
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04), transparent 70%);
}

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why__left p {
  margin: 1.5rem 0 2rem;
  max-width: 440px;
}

.why__arabic {
  margin-top: 2rem;
  padding: 1.25rem;
  border-left: 2px solid var(--gold);
  background: rgba(201,168,76,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.arabic-text {
  font-family: var(--font-arabic);
  font-size: 1.1rem;
  color: var(--white);
  text-align: right;
  direction: rtl;
  margin-bottom: 0.3rem;
}

.why__arabic span { font-size: 0.8rem; color: var(--grey); }

.why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature__text h3 { font-size: 1rem; margin-bottom: 0.35rem; font-family: var(--font-body); font-weight: 600; }
.feature__text p { font-size: 0.875rem; line-height: 1.55; }

/* ── PROCESS ── */
.process { background: var(--navy); }

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 3rem;
}

.step {
  flex: 1;
  padding: 2rem 1.5rem;
  position: relative;
  text-align: center;
}

.step__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.step:hover .step__number { color: rgba(201,168,76,0.4); }

.step__content h3 { font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 500; }
.step__content p { font-size: 0.875rem; line-height: 1.6; }

.step__connector {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--border-light), var(--border));
  margin-top: 3rem;
  flex-shrink: 0;
  display: none;
}

.process__cta { text-align: center; }

/* ── FAQ PREVIEW ── */
.faq-preview { background: var(--navy-mid); }

.faq-preview__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.faq-preview__left { position: sticky; top: calc(var(--nav-h) + 2rem); }
.faq-preview__left .section-title { margin-bottom: 2rem; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #0A1825 0%, var(--navy-light) 50%, #0A1825 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.cta-band__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-band__orb {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08), transparent 70%);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.cta-band__text h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.cta-band__text p { margin-top: 0.75rem; max-width: 480px; }

.cta-band__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── RESPONSIVE HOME ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__visual { display: none; }
  .hero__content { padding: 5rem 1.5rem 3rem; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__inner { grid-template-columns: 1fr; gap: 3rem; }
  .why__features { grid-template-columns: 1fr 1fr; }
  .faq-preview__inner { grid-template-columns: 1fr; gap: 2rem; }
  .faq-preview__left { position: static; }
  .cta-band__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .services__grid { grid-template-columns: 1fr; }
  .process__steps { flex-direction: column; align-items: center; }
  .why__features { grid-template-columns: 1fr; }
  .hero__trust { flex-wrap: wrap; gap: 1rem; }
}
