/* =========================
   DESIGN TOKENS
========================= */
:root {
  --gold:        #c9a840;
  --gold-soft:   #e8cc78;
  --gold-dim:    #8a7030;
  --gold-dark:   #6a5a28;
  --bg:          #050505;
  --bg-2:        #0a0805;
  --bg-3:        #0f0d08;
  --bg-card:     #111008;
  --white:       #ffffff;
  --text-muted:  rgba(255,255,255,0.72);
  --text-dim:    rgba(255,255,255,0.48);
  --border:      rgba(201,168,64,0.12);
  --border-hover:rgba(201,168,64,0.28);

  --font-serif:  'Cormorant Garamond', serif;
  --font-sans:   'Inter', sans-serif;
  --font-arabic: 'Amiri', serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;

  --transition: 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================
   RESET
========================= */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* =========================
   LOADER
========================= */
@keyframes loaderAutoHide {
  0%, 80%  { opacity: 1; visibility: visible; pointer-events: auto; }
  100%     { opacity: 0; visibility: hidden;  pointer-events: none; }
}
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  animation: loaderAutoHide 0.7s ease 2.8s forwards;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.loader-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.loader-logo { text-align: center; animation: loaderPulse 2s ease infinite; }
.loader-logo img { width: 160px; height: auto; margin: 0 auto 22px; }
.loader-logo h2 {
  font-family: var(--font-serif);
  font-size: 40px; color: var(--gold);
  font-weight: 600; letter-spacing: 3px;
}
.loader-line {
  width: 48px; height: 1px;
  background: var(--gold-dim);
  margin: 14px auto 0;
  position: relative; overflow: hidden;
}
.loader-line::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  animation: lineSlide 1.8s ease infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.98); }
  50%       { opacity: 1;   transform: scale(1); }
}
@keyframes lineSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 60px;
  z-index: 900;
  background: rgba(5,5,5,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition), padding var(--transition);
}
.navbar.scrolled {
  padding: 10px 60px;
  background: rgba(5,5,5,0.97);
  border-bottom-color: var(--border);
}
/* Logo — height-based so it scales correctly regardless of aspect ratio */
.logo img { height: 88px; width: auto; }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 13px; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-book-btn {
  padding: 10px 22px;
  border: 1px solid var(--border-hover);
  color: var(--gold) !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition) !important;
}
.nav-book-btn:hover {
  background: var(--gold) !important;
  color: #0a0805 !important;
}
.nav-book-btn::after { display: none !important; }

/* =========================
   HERO
========================= */
.luxury-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 160px 30px 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero-bg.png') center top / cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(5,5,5,0.3) 0%,
      rgba(5,5,5,0.45) 50%,
      rgba(5,5,5,0.82) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(201,168,64,0.1), transparent 55%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 860px; text-align: center;
  animation: fadeHero 1.4s ease both;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
  color: var(--gold);
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
}
.hero-tag::before, .hero-tag::after {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--gold-dim);
}
.luxury-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(68px, 10vw, 108px);
  line-height: 0.9;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -1px;
}
.hero-subtitle-ar {
  font-family: var(--font-arabic);
  font-size: clamp(22px, 3.5vw, 32px);
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 400;
  opacity: 0.85;
}
.luxury-hero p {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.95;
  color: var(--text-muted);
  max-width: 640px; margin: 0 auto 50px;
}
.hero-buttons {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.hero-btn {
  padding: 17px 38px;
  font-size: 12px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: 60px;
}
.primary-btn {
  background: var(--gold); color: #0a0805;
}
.primary-btn:hover {
  background: var(--gold-soft);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201,168,64,0.3);
}
.secondary-btn {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
}
.secondary-btn:hover {
  background: var(--white);
  color: #0a0805;
  transform: translateY(-3px);
  border-color: var(--white);
}

/* Hero trust pills */
.hero-trust-pills {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.hero-trust-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 16px;
  border: 1px solid rgba(201,168,64,0.25);
  border-radius: 50px;
  font-size: 11px; letter-spacing: 0.8px;
  color: rgba(255,255,255,0.78);
  background: rgba(201,168,64,0.06);
  white-space: nowrap;
}
.hero-trust-check {
  color: var(--gold);
  font-size: 12px; font-weight: 600;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; z-index: 2;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-dim);
  animation: scrollBounce 2.4s ease infinite;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@keyframes fadeHero {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================
   TRUST BAR
========================= */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  text-align: center;
  border-right: 1px solid var(--border);
  padding: 0 20px;
}
.trust-item:last-child { border-right: none; }
.trust-number {
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  height: 36px;
  margin-bottom: 10px;
}
.trust-label {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-dim);
}

/* =========================
   SECTION SHARED HEADER
========================= */
.section-header {
  text-align: center; margin-bottom: 72px;
}
.section-kicker {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 700; margin-bottom: 18px;
  line-height: 1.05;
}
.section-header p {
  color: var(--text-muted);
  font-size: 17px; max-width: 560px; margin: 0 auto;
  line-height: 1.85;
}

/* =========================
   SERVICES
========================= */
.services-preview {
  padding: 120px 60px;
  background: var(--bg-2);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  padding: 44px 40px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,64,0.06), transparent 60%);
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-8px); border-color: var(--border-hover); }
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: var(--font-serif);
  font-size: 64px; color: rgba(201,168,64,0.1);
  font-weight: 700; line-height: 1;
  margin-bottom: 12px;
}
.service-content h3 {
  font-family: var(--font-serif);
  font-size: 34px; margin-bottom: 14px; font-weight: 700;
}
.service-content p {
  color: var(--text-muted);
  line-height: 1.85; margin-bottom: 24px;
  font-size: 15px;
}
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500;
  transition: gap var(--transition);
}
.service-link:hover { gap: 14px; }

/* =========================
   MARQUEE
========================= */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--bg-3);
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-serif);
  font-size: 15px; color: var(--text-dim);
  padding: 0 24px; font-style: italic;
}
.marquee-track span.dot {
  color: var(--gold-dim); font-style: normal; padding: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================
   WHY CHOOSE RAWAJ
========================= */
.why-section {
  padding: 120px 60px;
  background: var(--bg-3);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
}
.why-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 24px;
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 700;
  margin-bottom: 14px; line-height: 1.2;
}
.why-card p {
  color: var(--text-muted);
  font-size: 14px; line-height: 1.85;
}
.why-card-cta {
  background: linear-gradient(135deg, rgba(201,168,64,0.12), rgba(201,168,64,0.04));
  border-color: var(--border-hover);
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  gap: 16px;
}
.why-cta-ar {
  font-family: var(--font-arabic);
  font-size: 56px; color: rgba(201,168,64,0.2);
  line-height: 1; font-weight: 700;
}
.why-card-cta p {
  font-family: var(--font-serif);
  font-size: 22px !important;
  font-style: italic; color: var(--white) !important;
  line-height: 1.3;
}
.why-btn {
  display: inline-flex; align-items: center;
  padding: 13px 28px;
  background: var(--gold); color: #0a0805;
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}
.why-btn:hover { background: var(--gold-soft); transform: translateY(-2px); }

/* =========================
   FEATURED TREATMENTS
========================= */
.treatments-section {
  padding: 120px 60px;
  background: var(--bg);
}
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.treatment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
  display: flex; flex-direction: column; gap: 14px;
}
.treatment-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
}
.treatment-featured {
  border-color: rgba(201,168,64,0.3);
  background: linear-gradient(160deg, rgba(201,168,64,0.07), var(--bg-card) 60%);
}
.treatment-badge {
  position: absolute; top: -1px; right: 24px;
  background: var(--gold); color: #0a0805;
  font-size: 9px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 14px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.treatment-name h3 {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 700; line-height: 1.1;
}
.treatment-ar {
  font-family: var(--font-arabic);
  font-size: 16px; color: var(--gold);
  opacity: 0.75; display: block; margin-top: 4px;
}
.treatment-card p {
  color: var(--text-muted);
  font-size: 14px; line-height: 1.8;
  flex: 1;
}
.treatment-price {
  font-size: 13px; color: var(--text-dim);
  letter-spacing: 0.5px;
}
.treatment-price strong { color: var(--gold); font-weight: 500; }
.treatment-btn {
  display: inline-flex; align-items: center;
  padding: 11px 22px;
  border: 1px solid var(--border-hover);
  color: var(--gold);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 50px;
  transition: background var(--transition), color var(--transition);
  align-self: flex-start;
}
.treatment-btn:hover {
  background: var(--gold); color: #0a0805; border-color: var(--gold);
}
.treatment-explore {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-3);
  border-style: dashed;
}
.treatment-explore-inner {
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.treatment-explore-ar {
  font-family: var(--font-serif);
  font-size: 64px; color: var(--gold);
  font-weight: 700; line-height: 1;
}
.treatment-explore-inner p {
  font-size: 14px; color: var(--text-muted);
}
.treatment-explore .treatment-btn {
  background: var(--gold); color: #0a0805;
  border-color: var(--gold);
}
.treatment-explore .treatment-btn:hover {
  background: var(--gold-soft); border-color: var(--gold-soft);
}

/* =========================
   HOW IT WORKS
========================= */
.how-section {
  padding: 120px 60px;
  background: var(--bg-2);
}
.how-steps {
  max-width: 780px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
/* Continuous vertical gold line running through all steps */
.how-steps::before {
  content: '';
  position: absolute;
  left: 72px; /* centre of the gap between num col (64px) and content */
  top: 8px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent 95%);
  pointer-events: none;
}
.how-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 48px;  /* wider gap = clear air between dot and heading */
  align-items: start;
  position: relative;
}
.how-step-num {
  font-family: var(--font-serif);
  font-size: 44px; color: var(--gold);
  font-weight: 700; line-height: 1;
  padding-top: 2px;
  text-align: right;
  position: relative; z-index: 1;
}
/* Gold dot centred on the line, 72px from left */
.how-step-dot {
  position: absolute;
  left: 67px; /* 72px centre - 5px half-dot */
  top: 10px;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 3px rgba(201,168,64,0.15);
}
/* Hide the old separate line element */
.how-step-line { display: none; }
.how-step-line-last { display: none; }
.how-step-content {
  padding: 0 0 52px 0;
}
.how-step-content h3 {
  font-family: var(--font-serif);
  font-size: 30px; font-weight: 700;
  margin-bottom: 10px; line-height: 1.1;
}
.how-step-content p {
  color: var(--text-muted);
  font-size: 15px; line-height: 1.85;
  margin-bottom: 0; max-width: 520px;
}
.how-link {
  color: var(--gold);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500;
  transition: letter-spacing var(--transition);
  display: inline-block; margin-top: 14px;
}
.how-link:hover { letter-spacing: 3px; }

/* =========================
   WHY FOUR (replaces testimonials)
========================= */
.why-four-section {
  padding: 120px 60px;
  background: var(--bg-3);
}
.why-four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.why-four-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
  overflow: hidden;
}
.why-four-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(201,168,64,0.05), transparent 60%);
  opacity: 0; transition: opacity var(--transition);
}
.why-four-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
}
.why-four-card:hover::before { opacity: 1; }
.why-four-icon {
  width: 48px; height: 48px;
  color: var(--gold); margin-bottom: 20px;
}
.why-four-icon svg { width: 100%; height: 100%; }
.why-four-num {
  font-family: var(--font-serif);
  font-size: 48px; color: rgba(201,168,64,0.08);
  font-weight: 700; line-height: 1;
  position: absolute; top: 24px; right: 28px;
}
.why-four-card h3 {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 700;
  margin-bottom: 12px; line-height: 1.2;
}
.why-four-card p {
  color: var(--text-muted);
  font-size: 14px; line-height: 1.85;
}

/* =========================
   ABOUT
========================= */
.about-section {
  padding: 120px 60px;
  background: var(--bg);
}
.about-container {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 55fr 45fr;
  gap: 80px; align-items: center;
}
.about-label {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}
.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 700; margin-bottom: 28px; line-height: 1.05;
}
.about-content p {
  color: var(--text-muted);
  line-height: 2; font-size: 16px; margin-bottom: 22px;
}
.about-divider {
  width: 48px; height: 1px;
  background: var(--gold-dim); margin: 28px 0;
}
.about-detail {
  font-size: 13px; color: var(--text-dim);
  letter-spacing: 1px;
}
.about-image { position: relative; }
.about-image img {
  width: 100%; border-radius: var(--radius-lg);
  filter: brightness(0.88) contrast(1.05);
}
.about-image::before {
  content: '';
  position: absolute; inset: -16px -16px auto auto;
  width: 60%; height: 60%;
  border-top: 1px solid var(--gold-dim);
  border-right: 1px solid var(--gold-dim);
  border-radius: 0 var(--radius-md) 0 0;
  pointer-events: none;
}
.about-image::after {
  content: '';
  position: absolute; inset: auto auto -16px -16px;
  width: 60%; height: 60%;
  border-bottom: 1px solid var(--gold-dim);
  border-left: 1px solid var(--gold-dim);
  border-radius: 0 0 0 var(--radius-md);
  pointer-events: none;
}

/* =========================
   SOCIAL SECTION
========================= */
.social-section {
  padding: 120px 60px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.social-inner { max-width: 1080px; margin: 0 auto; }
.social-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.social-platform-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color var(--transition), transform var(--transition);
}
.social-platform-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
}
.social-platform-icon {
  width: 40px; height: 40px;
  color: var(--gold); margin-bottom: 8px;
}
.social-platform-icon svg { width: 100%; height: 100%; }
.social-platform-name {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 700;
}
.social-platform-handle {
  font-size: 13px; color: var(--text-dim);
  letter-spacing: 0.5px;
}
.social-platform-cta {
  margin-top: 8px;
  color: var(--gold);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500;
}
.social-cta-bar {
  text-align: center; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.social-cta-text {
  font-size: 15px; color: var(--text-muted);
  max-width: 560px; margin: 0 auto;
  line-height: 1.8;
}

/* =========================
   FOOTER (EXPANDED)
========================= */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.footer::before {
  content: 'رواج';
  position: absolute; bottom: -60px; right: -20px;
  font-family: var(--font-arabic);
  font-size: 240px; font-weight: 700;
  color: rgba(201,168,64,0.03);
  pointer-events: none; line-height: 1;
  white-space: nowrap;
}
.footer-top {
  /* Single-row 5-column grid — all columns start at same horizontal axis via align-items:start */
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  gap: 48px;
  padding: 72px 60px 60px;
  max-width: 1280px; margin: 0 auto;
  align-items: start;
}
.footer-brand {
  display: flex; flex-direction: column;
  /* No extra top padding — logo is the first element, same as col-title is first in other cols */
}
.footer-logo-img {
  height: 90px; width: auto;
  margin-bottom: 14px; /* matches approximate col-title height + its margin-bottom */
  flex-shrink: 0;
}
.footer-brand-en {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 700;
  color: var(--white); letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px; color: var(--text-dim);
  line-height: 1.5; margin-bottom: 8px;
}
.footer-brand-creds {
  display: flex; flex-direction: column; gap: 5px;
}
.footer-brand-creds span {
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.3px;
}
.footer-brand-creds span::first-letter { color: var(--gold); }
/* Footer cols span the remaining 4 columns */
.footer-cols {
  display: contents; /* each .footer-col sits directly in the grid */
}
.footer-col { }
.footer-col-title {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-size: 13px; color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-hours { gap: 10px !important; }
.footer-hours li {
  display: flex; flex-direction: column;
  gap: 2px;
  font-size: 12px; color: var(--text-muted);
}
.footer-hours li span:first-child {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); opacity: 0.7; font-weight: 400;
}
.footer-hours li span:last-child {
  color: var(--text-muted);
  font-size: 13px;
  white-space: nowrap;
}
.footer-contact-details {
  margin-top: 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.footer-contact-item {
  display: flex; flex-direction: column; gap: 2px;
  transition: color var(--transition);
}
.footer-contact-item:hover .footer-contact-value { color: var(--gold); }
.footer-contact-label {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}
.footer-contact-value {
  font-size: 12px; color: var(--text-muted);
  transition: color var(--transition);
}
.footer-divider {
  height: 1px; background: var(--border);
  margin: 0 60px;
}
.footer-bottom-row {
  padding: 22px 60px;
  max-width: 1280px; margin: 0 auto;
}
.footer-bottom-copy {
  font-size: 11px; color: var(--text-dim); letter-spacing: 0.5px;
  text-align: center;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
  position: fixed; right: 26px; bottom: 26px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  z-index: 800;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 30px; height: 30px; }

/* =========================
   STICKY BOOKING BAR
========================= */
.sticky-booking {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 700;
  background: rgba(8,6,2,0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
  padding: 14px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-booking.visible { transform: translateY(0); }
.sticky-booking-text {
  font-family: var(--font-serif);
  font-size: 18px; color: var(--white);
  font-style: italic;
}
.sticky-booking-text span { color: var(--gold); }
.sticky-booking-btns { display: flex; gap: 12px; flex-shrink: 0; }
.sticky-btn {
  padding: 11px 24px;
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 50px;
  transition: var(--transition);
}
.sticky-btn-primary { background: var(--gold); color: #0a0805; }
.sticky-btn-primary:hover { background: var(--gold-soft); }
.sticky-btn-secondary { border: 1px solid var(--border-hover); color: var(--white); }
.sticky-btn-secondary:hover { background: rgba(201,168,64,0.1); }

/* =========================
   SCROLL REVEAL
   Sections are visible by default (no JS dependency).
   JS adds .js-loaded to <html> to opt in to animations.
========================= */
.reveal { opacity: 1; transform: none; }
.js-loaded .reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.js-loaded .reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js-loaded .reveal,
  .js-loaded .reveal.visible { opacity: 1; transform: none; transition: none; }
}

/* =========================
   MOBILE RESPONSIVE
   Tested breakpoints:
   — 320px (iPhone SE)
   — 375px (iPhone 12/13/14 mini)
   — 390px (iPhone 14/15/16)
   — 414px (iPhone 14 Plus)
   — 430px (iPhone 15 Pro Max)
   — 360px–412px (Samsung Galaxy range)
========================= */


/* Tablet — 900px */
@media (max-width: 900px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); padding: 28px 30px; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .trust-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-four-grid { grid-template-columns: repeat(2, 1fr); }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .social-platforms { grid-template-columns: 1fr; }

  /* Footer: brand + cols stack to 2 rows */
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }

  .about-container { grid-template-columns: 1fr; gap: 50px; }
  .about-image { order: -1; }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  /* Navbar */
  .navbar { padding: 12px 20px; }
  .navbar.scrolled { padding: 8px 20px; }
  .logo img { height: 58px; width: auto; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 11px; letter-spacing: 1px; }
  .nav-book-btn { display: none; }

  /* Hero */
  .luxury-hero { padding: 120px 20px 90px; }
  .luxury-hero h1 { font-size: clamp(46px, 11vw, 62px); }
  .hero-subtitle-ar { font-size: 18px; }
  .luxury-hero p { font-size: 15px; margin-bottom: 32px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-btn { width: 100%; max-width: 320px; text-align: center; padding: 16px 28px; }
  .hero-trust-pills { gap: 8px; margin-top: 20px; }
  .hero-trust-pill { font-size: 10px; padding: 6px 12px; }
  .hero-scroll { display: none; }

  /* Trust bar */
  .trust-bar { padding: 20px 16px; gap: 12px; }
  .trust-number { height: 28px; }
  .trust-number svg { width: 22px; height: 22px; }
  .trust-label { font-size: 9px; }

  /* Section header */
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: clamp(34px, 8vw, 46px); }
  .section-header p { font-size: 15px; }

  /* Services */
  .services-preview { padding: 80px 20px; }
  .service-card { padding: 28px 22px; }
  .service-num { font-size: 44px; }
  .service-content h3 { font-size: 26px; }

  /* Why section (6-card) */
  .why-section { padding: 80px 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { padding: 28px 22px; }
  .why-card h3 { font-size: 20px; }

  /* Why four (4-card) */
  .why-four-section { padding: 80px 20px; }
  .why-four-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-four-card { padding: 28px 22px; }
  .why-four-card h3 { font-size: 20px; }

  /* Treatments */
  .treatments-section { padding: 80px 20px; }
  .treatments-grid { grid-template-columns: 1fr; gap: 14px; }
  .treatment-card { padding: 28px 22px; }
  .treatment-name h3 { font-size: 22px; }
  .treatment-explore { min-height: 140px; }

  /* How it works */
  .how-section { padding: 80px 20px; }
  .how-steps::before { left: 54px; }
  .how-step { grid-template-columns: 48px 1fr; gap: 0 36px; }
  .how-step-num { font-size: 32px; }
  .how-step-dot { left: 49px; }
  .how-step-content { padding-bottom: 32px; }
  .how-step-content h3 { font-size: 22px; }

  /* About */
  .about-section { padding: 80px 20px; }
  .about-content h2 { font-size: 38px; }
  .about-content p { font-size: 15px; }

  /* Social */
  .social-section { padding: 80px 20px; }
  .social-platforms { gap: 12px; }
  .social-platform-card { padding: 26px 20px; }
  .social-platform-name { font-size: 22px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; padding: 48px 20px 32px; }
  .footer-brand { grid-column: auto; }
  .footer-logo-img { height: 65px; width: auto; }
  .footer-brand-en { font-size: 18px; }
  .footer-divider { margin: 0 20px; }
  .footer-bottom-row { padding: 18px 20px; text-align: center; }

  /* Fixed elements */
  .sticky-booking { padding: 12px 16px; flex-direction: column; gap: 8px; }
  .sticky-booking-text { font-size: 14px; }
  .sticky-booking-btns { width: 100%; }
  .sticky-btn { flex: 1; text-align: center; padding: 12px 12px; font-size: 10px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: 1fr; }
  .why-four-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.nav-book-btn) { font-size: 10px; }
  .hero-trust-pills { flex-direction: column; align-items: center; }
}

/* Very small — 360px (Samsung Galaxy S range) */
@media (max-width: 360px) {
  .navbar { padding: 10px 14px; }
  .logo img { height: 50px; width: auto; }
  .nav-links { gap: 10px; }
  .loader-logo img { width: 110px; }
  .luxury-hero { padding: 110px 14px 80px; }
  .luxury-hero h1 { font-size: 42px; letter-spacing: 0; }
  .hero-btn { padding: 14px 18px; font-size: 11px; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
}
