/* ============================================================
   AURORA SPA — Footer
   ============================================================ */

.site-footer {
  position: relative;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.site-footer .orb { z-index: 0; }

/* ---------- Big CTA band above the footer ---------- */
.footer-cta {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  text-align: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/interior-fresha.webp') center/cover no-repeat;
  filter: blur(3px) brightness(.32) saturate(1.15);
  transform: scale(1.12);
  z-index: 0;
}
.footer-cta > * { position: relative; z-index: 1; }
.footer-cta h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.footer-cta p { color: rgba(255,255,255,.74); max-width: 52ch; margin: 1.1rem auto 2rem; }

/* Marquee of service names */
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 1.4rem;
  border-block: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marquee 34s linear infinite;
}
html[dir="rtl"] .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.9rem);
  color: var(--text-soft);
  white-space: nowrap;
}
.marquee-item::after {
  content: '✦';
  font-size: .6em;
  color: var(--gold);
}

/* ---------- Main footer grid ---------- */
.footer-main {
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
}

.f-col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
html[lang="ar"] .f-col h4 { letter-spacing: 0; text-transform: none; font-size: .95rem; font-weight: 700; }

.f-brand img {
  height: 34px;
  width: auto;
  filter: var(--logo-filter);
  margin-bottom: 1.3rem;
}
.f-brand p { color: var(--text-soft); font-size: var(--fs-sm); max-width: 34ch; line-height: 1.85; }

.f-list { display: flex; flex-direction: column; gap: .72rem; }
.f-list a, .f-list li {
  font-size: var(--fs-sm);
  color: var(--text-soft);
  transition: color var(--t-fast) var(--ease-soft), transform var(--t-fast) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.f-list a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-fast) var(--ease);
}
.f-list a:hover { color: var(--gold); }
.f-list a:hover::before { width: 14px; }

.f-contact li { align-items: flex-start; line-height: 1.7; }
.f-contact svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: .38rem; color: var(--gold); }

/* ---------- Socials ---------- */
.socials { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.3rem; }
.social-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--text-soft);
  transition: all var(--t-fast) var(--ease);
}
.social-btn svg { width: 17px; height: 17px; fill: currentColor; }
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #12160f;
  transform: translateY(-4px) rotate(-8deg);
}

/* ---------- Map embed ---------- */
.f-map {
  margin-top: 1.1rem;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  filter: var(--img-tint);
  aspect-ratio: 16/10;
}
.f-map iframe { width: 100%; height: 100%; border: 0; display: block; }
html[data-theme="dark"] .f-map { filter: invert(.9) hue-rotate(180deg) brightness(.95) contrast(.9); }

/* ---------- Bottom bar ---------- */
.footer-bottom {
  position: relative;
  z-index: 1;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--fs-xs);
  color: var(--text-faint);
  letter-spacing: .05em;
}
.footer-bottom a:hover { color: var(--gold); }
.f-legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .f-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .f-legal { justify-content: center; }
}
