/* ═══════════════════════════════════════════════════════════
   DR HANIN — Luxury UI Masterpiece Layer
   Premium $5K aesthetic: grain, glass, motion, depth
═══════════════════════════════════════════════════════════ */

:root {
  --lux-champagne: #F7F0EB;
  --lux-rose-gold: #C9A96E;
  --lux-rose-gold-light: #E8D5A3;
  --lux-espresso: #2C1810;
  --lux-mocha: #5C3A31;
  --lux-blush: #E8C4C0;
  --lux-glass: rgba(255, 252, 249, 0.72);
  --lux-glass-border: rgba(201, 169, 110, 0.28);
  --lux-shadow: 0 24px 80px rgba(44, 24, 16, 0.1);
  --lux-shadow-deep: 0 32px 100px rgba(44, 24, 16, 0.16);
  --lux-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --lux-radius: 24px;
  --lux-radius-pill: 999px;
}

/* ── GLOBAL TEXTURE & ATMOSPHERE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

body.has-custom-cursor { cursor: auto; }

/* ── PREMIUM LOADER ── */
#loader {
  background: linear-gradient(145deg, #1A0E0A 0%, #2C1810 40%, #3D2520 100%);
}
#loader .loader-logo {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: 0.45em;
  background: linear-gradient(135deg, var(--lux-rose-gold-light), var(--lux-rose-gold), var(--lux-rose-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
#loader .loader-line {
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.4);
}

/* ── NAV — GLASS LUXURY ── */
#navbar {
  transition: all 0.6s var(--lux-ease);
}
#navbar.scrolled {
  background: rgba(251, 245, 243, 0.88) !important;
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 8px 40px rgba(74, 50, 45, 0.08);
  border-bottom: 1px solid var(--lux-glass-border);
}
body[data-page="home"] #navbar {
  background: linear-gradient(180deg, rgba(251, 245, 243, 0.65) 0%, transparent 100%);
}
.nav-logo-text {
  background: linear-gradient(135deg, var(--brown-dark), var(--mocha));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-book-btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(92, 58, 49, 0.2);
}
.nav-book-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--lux-ease);
}
.nav-book-btn:hover::before { transform: translateX(120%); }

/* ── HERO V3 — CINEMATIC ── */
.hero-v3 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 42%);
  align-items: center;
  gap: 2rem;
  min-height: calc(100dvh - var(--sale-banner-h));
  padding: calc(var(--sale-banner-h) + 5.5rem) 4.5rem 3rem;
  overflow: hidden;
  direction: ltr;
}
.hero-v3-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/hero-bg.png') center / cover no-repeat;
  background-color: var(--lux-champagne);
  transform: scale(1.02);
  transition: transform 8s var(--lux-ease);
}
.hero-v3:hover .hero-v3-bg { transform: scale(1.06); }
.hero-v3-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(251, 245, 243, 0.95) 0%, transparent 70%),
    linear-gradient(105deg, rgba(251, 245, 243, 0.92) 0%, rgba(251, 245, 243, 0.55) 45%, transparent 68%);
  pointer-events: none;
}
html[dir="rtl"] .hero-v3-overlay {
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(251, 245, 243, 0.95) 0%, transparent 70%),
    linear-gradient(255deg, rgba(251, 245, 243, 0.92) 0%, rgba(251, 245, 243, 0.55) 45%, transparent 68%);
}
.hero-v3-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-v3-content {
  position: relative;
  z-index: 3;
  max-width: 560px;
}
html[dir="rtl"] .hero-v3-content {
  direction: rtl;
  text-align: right;
  margin-inline-start: auto;
}
html[dir="ltr"] .hero-v3-content {
  direction: ltr;
  text-align: left;
}
.hero-v3-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--lux-radius-pill);
  background: var(--lux-glass);
  border: 1px solid var(--lux-glass-border);
  backdrop-filter: blur(12px);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.12);
}
html[lang="ar"] .hero-v3-badge,
html[dir="rtl"] .hero-v3-badge {
  font-family: var(--font-ar);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: none;
}
.hero-v3-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: luxPulse 2s ease infinite;
}
@keyframes luxPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-v3-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--lux-espresso);
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}
html[lang="ar"] .hero-v3-h1,
html[dir="rtl"] .hero-v3-h1 {
  font-family: var(--font-ar-display);
  font-weight: 700;
  line-height: 1.4;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}
.hero-v3-h1 em {
  font-style: italic;
  color: var(--rose);
  display: block;
}
.hero-v3-sub {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 480px;
  font-weight: 300;
}
html[lang="ar"] .hero-v3-sub,
html[dir="rtl"] .hero-v3-sub {
  font-family: var(--font-ar);
  font-size: 1.05rem;
}
.hero-v3-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}
html[dir="rtl"] .hero-v3-actions { flex-direction: row-reverse; }
.btn-lux {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: var(--lux-radius-pill);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.45s var(--lux-ease);
  position: relative;
  overflow: hidden;
}
html[lang="ar"] .btn-lux,
html[dir="rtl"] .btn-lux {
  font-family: var(--font-ar);
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: none;
}
.btn-lux--primary {
  background: linear-gradient(135deg, var(--lux-mocha), var(--lux-espresso));
  color: var(--lux-rose-gold-light);
  box-shadow: 0 8px 32px rgba(44, 24, 16, 0.25);
}
.btn-lux--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(44, 24, 16, 0.32);
}
.btn-lux--ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--lux-espresso);
  border: 1px solid rgba(44, 24, 16, 0.15);
  backdrop-filter: blur(8px);
}
.btn-lux--ghost:hover {
  background: #fff;
  border-color: var(--lux-espresso);
  transform: translateY(-2px);
}
html[dir="rtl"] .btn-lux svg { transform: scaleX(-1); }

.hero-v3-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
html[dir="rtl"] .hero-v3-stats { flex-direction: row-reverse; }
.hero-v3-stat {
  position: relative;
  padding-inline-start: 1rem;
}
.hero-v3-stat::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), transparent);
  border-radius: 2px;
}
.hero-v3-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--lux-espresso);
  line-height: 1;
}
.hero-v3-stat-val .count-up { display: inline; }
.hero-v3-stat-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 0.25rem;
}
html[lang="ar"] .hero-v3-stat-lbl,
html[dir="rtl"] .hero-v3-stat-lbl {
  font-family: var(--font-ar);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: none;
}

.hero-v3-visual {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 520px;
}
.hero-v3-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.35);
  pointer-events: none;
}
.hero-v3-ring--1 {
  width: min(480px, 95%);
  aspect-ratio: 1;
  bottom: 8%;
  animation: luxRingSpin 30s linear infinite;
}
.hero-v3-ring--2 {
  width: min(400px, 82%);
  aspect-ratio: 1;
  bottom: 12%;
  border-color: rgba(201, 169, 110, 0.18);
  animation: luxRingSpin 25s linear infinite reverse;
}
@keyframes luxRingSpin {
  to { transform: rotate(360deg); }
}
.hero-v3-portrait-wrap {
  position: relative;
  z-index: 2;
}
.hero-v3-portrait {
  max-height: min(580px, 74vh);
  width: auto;
  max-width: min(420px, 90%);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 50px rgba(44, 24, 16, 0.15));
}
.hero-v3-float-card {
  position: absolute;
  z-index: 4;
  padding: 0.85rem 1.15rem;
  background: var(--lux-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--lux-glass-border);
  border-radius: 16px;
  box-shadow: var(--lux-shadow);
  animation: luxFloat 6s ease-in-out infinite;
}
.hero-v3-float-card--cert {
  top: 18%;
  inset-inline-start: -8%;
  animation-delay: 0s;
}
.hero-v3-float-card--rating {
  bottom: 28%;
  inset-inline-end: -6%;
  animation-delay: 2s;
}
@keyframes luxFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-v3-float-label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.hero-v3-float-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--lux-espresso);
  font-weight: 600;
  margin-top: 0.15rem;
}
html[lang="ar"] .hero-v3-float-label,
html[dir="rtl"] .hero-v3-float-label {
  font-family: var(--font-ar);
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: none;
}

/* ── TRUST BAR PREMIUM ── */
.trust-bar {
  background: linear-gradient(90deg, rgba(212, 163, 163, 0.42), rgba(232, 196, 192, 0.38), rgba(212, 163, 163, 0.42));
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}
.trust-icon {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.15);
}

/* ── SERVICE CARDS — IMAGE RICH ── */
.service-card-lux {
  flex: 0 0 min(260px, 78vw);
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--lux-radius);
  overflow: hidden;
  border: 1px solid rgba(232, 213, 196, 0.5);
  transition: all 0.5s var(--lux-ease);
  box-shadow: 0 8px 32px rgba(44, 24, 16, 0.06);
}
.service-card-lux:hover {
  transform: translateY(-8px);
  box-shadow: var(--lux-shadow-deep);
}
.service-card-lux-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-card-lux-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--lux-ease);
}
.service-card-lux:hover .service-card-lux-img img {
  transform: scale(1.08);
}
.service-card-lux-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(44, 24, 16, 0.25));
}
.service-card-lux-num {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
  z-index: 1;
}
.service-card-lux-body {
  padding: 1.35rem 1.25rem 1.25rem;
  text-align: center;
}
.service-card-lux-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--lux-espresso);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
html[lang="ar"] .service-card-lux-body h3,
html[dir="rtl"] .service-card-lux-body h3 {
  font-family: var(--font-ar-display);
}
.service-card-lux-body p {
  font-size: 0.74rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}
html[lang="ar"] .service-card-lux-body p,
html[dir="rtl"] .service-card-lux-body p {
  font-family: var(--font-ar);
  font-size: 0.82rem;
}
.service-card-lux-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s var(--lux-ease);
}
html[lang="ar"] .service-card-lux-link,
html[dir="rtl"] .service-card-lux-link {
  font-family: var(--font-ar);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
}
.service-card-lux-link:hover { gap: 0.65rem; color: var(--lux-espresso); }
html[dir="rtl"] .service-card-lux-link svg { transform: scaleX(-1); }

/* ── SECTION LUXURY HEADERS ── */
.lux-section {
  padding: 5.5rem 4rem;
  position: relative;
}
.lux-section--cream { background: var(--cream); }
.lux-section--white { background: #fff; }
.lux-section--gradient {
  background: linear-gradient(180deg, #FAF6F3 0%, #F5EBE8 50%, #FAF6F3 100%);
}
.lux-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.lux-eyebrow::before,
.lux-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.lux-eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.lux-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--lux-espresso);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
html[lang="ar"] .lux-heading,
html[dir="rtl"] .lux-heading {
  font-family: var(--font-ar-display);
  font-weight: 700;
}
.lux-heading em { font-style: italic; color: var(--rose); }
.lux-desc {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-weight: 300;
}
html[lang="ar"] .lux-desc,
html[dir="rtl"] .lux-desc {
  font-family: var(--font-ar);
  font-size: 0.95rem;
}

/* ── BA CARDS — PHOTO RICH ── */
.ba-card-lux {
  border-radius: var(--lux-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 40px rgba(44, 24, 16, 0.08);
  transition: all 0.5s var(--lux-ease);
}
.ba-card-lux:hover {
  transform: translateY(-6px);
  box-shadow: var(--lux-shadow-deep);
}
.ba-card-lux-visual {
  height: 280px;
  position: relative;
  display: flex;
  overflow: hidden;
}
.ba-card-lux-side {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.ba-card-lux-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--lux-ease);
}
.ba-card-lux:hover .ba-card-lux-side img { transform: scale(1.05); }
.ba-card-lux-side--before img { filter: grayscale(30%) brightness(0.92); }
.ba-card-lux-label {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  padding: 0.3rem 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--lux-radius-pill);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lux-espresso);
  z-index: 2;
}
.ba-card-lux-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #fff;
  z-index: 3;
  box-shadow: 0 0 12px rgba(0,0,0,0.15);
}
.ba-card-lux-divider::after {
  content: '◈';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: var(--gold);
  font-size: 0.9rem;
  padding: 0.35rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}
.ba-card-lux-info {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(180deg, #fff, var(--cream));
}
.ba-card-lux-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--lux-espresso);
  margin-bottom: 0.35rem;
}
.ba-card-lux-info p {
  font-size: 0.68rem;
  color: var(--text-mid);
  letter-spacing: 0.08em;
}

/* ── WHY CARDS PREMIUM ── */
.why-card-lux {
  background: #fff;
  border-radius: var(--lux-radius);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(232, 213, 196, 0.45);
  transition: all 0.45s var(--lux-ease);
  position: relative;
  overflow: hidden;
}
.why-card-lux::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--lux-ease);
}
html[dir="rtl"] .why-card-lux::before { transform-origin: right; }
.why-card-lux:hover::before { transform: scaleX(1); }
.why-card-lux:hover {
  transform: translateY(-6px);
  box-shadow: var(--lux-shadow);
}
.why-card-lux-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(242, 196, 206, 0.35), rgba(201, 169, 110, 0.2));
  border: 1px solid rgba(201, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.15rem;
}
.why-card-lux h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--lux-espresso);
  margin-bottom: 0.6rem;
}
html[lang="ar"] .why-card-lux h3,
html[dir="rtl"] .why-card-lux h3 {
  font-family: var(--font-ar-display);
}
.why-card-lux p {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}
html[lang="ar"] .why-card-lux p,
html[dir="rtl"] .why-card-lux p {
  font-family: var(--font-ar);
}

/* ── TESTIMONIALS PREMIUM ── */
.testimonials-lux--flower-wall {
  overflow: hidden;
  padding: 5rem 0;
}
.testimonials-lux-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: testimScrollLux 40s linear infinite;
}
.testimonials-lux-track:hover { animation-play-state: paused; }
@keyframes testimScrollLux {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
html[dir="rtl"] .testimonials-lux-track {
  animation-name: testimScrollLuxRtl;
}
@keyframes testimScrollLuxRtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}
.testimonial-lux {
  flex-shrink: 0;
  width: 340px;
  padding: 2rem;
  background: #fff;
  border-radius: var(--lux-radius);
  border: 1px solid rgba(232, 213, 196, 0.5);
  box-shadow: 0 8px 32px rgba(44, 24, 16, 0.05);
  transition: all 0.4s var(--lux-ease);
  position: relative;
}
.testimonial-lux::before {
  content: '"';
  position: absolute;
  top: 1rem;
  inset-inline-end: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: rgba(201, 169, 110, 0.15);
  line-height: 1;
}
.testimonial-lux:hover {
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: var(--lux-shadow);
  transform: translateY(-4px);
}
.testimonial-lux-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.8rem;
}
.testimonial-lux-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--lux-espresso);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
html[lang="ar"] .testimonial-lux-text,
html[dir="rtl"] .testimonial-lux-text {
  font-family: var(--font-ar);
  font-style: normal;
}
.testimonial-lux-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-lux-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: #fff;
}
.testimonial-lux-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lux-espresso);
}
.testimonial-lux-treat {
  font-size: 0.6rem;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  margin-top: 0.1rem;
}
html[lang="ar"] .testimonial-lux-treat,
html[dir="rtl"] .testimonial-lux-treat {
  font-family: var(--font-ar);
  letter-spacing: 0;
}

/* ── IG GRID — PHOTO RICH ── */
.ig-grid-lux {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.6rem;
  margin-top: 2.5rem;
}
.ig-cell-lux {
  position: relative;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.45s var(--lux-ease);
}
.ig-cell-lux:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: 20px;
}
.ig-cell-lux:hover {
  transform: scale(1.04);
  z-index: 2;
  box-shadow: var(--lux-shadow);
}
.ig-cell-lux img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--lux-ease);
}
.ig-cell-lux:hover img { transform: scale(1.1); }
.ig-cell-lux-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(44, 24, 16, 0.55));
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.4s var(--lux-ease);
}
.ig-cell-lux:hover .ig-cell-lux-overlay { opacity: 1; }
.ig-cell-lux-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: #fff;
}
.ig-follow-lux {
  text-align: center;
  margin-top: 2.5rem;
}
.ig-handle-lux {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--lux-espresso);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.ig-handle-lux:hover { color: var(--rose); }

/* ── CTA SECTION ── */
.cta-lux {
  position: relative;
  padding: 5rem 4rem;
  background: linear-gradient(135deg, var(--lux-espresso) 0%, #3D2520 50%, var(--lux-mocha) 100%);
  overflow: hidden;
  text-align: center;
}
.cta-lux::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(201, 169, 110, 0.12), transparent),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(212, 131, 154, 0.08), transparent);
  pointer-events: none;
}
.cta-lux-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-lux-orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(201, 169, 110, 0.15);
  top: -100px;
  right: -50px;
}
.cta-lux-orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(212, 131, 154, 0.12);
  bottom: -80px;
  left: 10%;
}
.cta-lux-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-lux .lux-eyebrow { color: var(--lux-rose-gold-light); }
.cta-lux .lux-eyebrow::before,
.cta-lux .lux-eyebrow::after { background: linear-gradient(90deg, transparent, var(--lux-rose-gold-light)); }
.cta-lux .lux-eyebrow::after { background: linear-gradient(90deg, var(--lux-rose-gold-light), transparent); }
.cta-lux h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--lux-rose-gold-light);
  margin-bottom: 1rem;
  line-height: 1.25;
}
html[lang="ar"] .cta-lux h2,
html[dir="rtl"] .cta-lux h2 {
  font-family: var(--font-ar-display);
}
.cta-lux h2 em { font-style: italic; color: var(--blush); }
.cta-lux p {
  font-size: 0.9rem;
  color: rgba(232, 213, 163, 0.75);
  line-height: 1.85;
  margin-bottom: 2rem;
  font-weight: 300;
}
html[lang="ar"] .cta-lux p,
html[dir="rtl"] .cta-lux p {
  font-family: var(--font-ar);
}
.cta-lux-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-lux--gold {
  background: linear-gradient(135deg, var(--gold), var(--lux-rose-gold-light), var(--gold));
  color: var(--lux-espresso);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.35);
}
.btn-lux--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201, 169, 110, 0.45);
}
.btn-lux--outline-light {
  background: transparent;
  color: var(--lux-rose-gold-light);
  border: 1px solid rgba(232, 213, 163, 0.4);
}
.btn-lux--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--lux-rose-gold-light);
}

/* ── PAGE HERO PREMIUM ── */
.page-hero-lux {
  position: relative;
  padding: calc(var(--sale-banner-h) + 8rem) 4rem 4.5rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #FAF3F1 0%, #F0DDD8 50%, #F5EBE8 100%);
}
.page-hero-lux-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: url('/assets/hero-bg.png') center / cover no-repeat;
}
.page-hero-lux::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-lux h1 {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--lux-espresso);
  margin-bottom: 0.85rem;
  font-weight: 500;
}
html[lang="ar"] .page-hero-lux h1,
html[dir="rtl"] .page-hero-lux h1 {
  font-family: var(--font-ar-display);
  font-weight: 700;
}
.page-hero-lux p {
  position: relative;
  font-size: 0.92rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}
html[lang="ar"] .page-hero-lux p,
html[dir="rtl"] .page-hero-lux p {
  font-family: var(--font-ar);
}

/* ── ABOUT COMPACT PREMIUM ── */
.about-compact-lux {
  padding: 3rem 4rem 4.5rem;
  background: #fff;
}
.about-compact-lux-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.25rem;
  background: linear-gradient(135deg, rgba(251, 245, 243, 0.9), rgba(245, 235, 232, 0.8));
  border-radius: var(--lux-radius);
  border: 1px solid var(--lux-glass-border);
  box-shadow: var(--lux-shadow);
  position: relative;
  overflow: hidden;
}
.about-compact-lux-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  inset-inline-end: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.12), transparent);
}
.about-compact-lux-photo {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid rgba(201, 169, 110, 0.45);
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.12);
}
.about-compact-lux-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--lux-espresso);
  margin-bottom: 0.4rem;
}
html[lang="ar"] .about-compact-lux-text h2 {
  font-family: var(--font-ar-display);
}
.about-compact-lux-text p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}
html[lang="ar"] .about-compact-lux-text p {
  font-family: var(--font-ar);
}

/* ── FOOTER PREMIUM ── */
footer {
  background: linear-gradient(180deg, #1A0E0A 0%, #120A08 100%);
}
.footer-brand .logo {
  background: linear-gradient(135deg, var(--lux-rose-gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.social-btn {
  transition: all 0.4s var(--lux-ease);
}
.social-btn:hover {
  background: rgba(201, 169, 110, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201, 169, 110, 0.2);
}

/* ── SCROLL REVEAL ENHANCED ── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s var(--lux-ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MARQUEE PREMIUM ── */
.marquee-strip {
  background: linear-gradient(90deg, var(--lux-espresso), #3D2520, var(--lux-espresso));
  border-block: 1px solid rgba(201, 169, 110, 0.15);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-v3 { padding: calc(var(--sale-banner-h) + 5rem) 2.5rem 2.5rem; }
  .lux-section { padding: 4.5rem 2.5rem; }
  .cta-lux { padding: 4rem 2.5rem; }
  .page-hero-lux { padding: calc(var(--sale-banner-h) + 7rem) 2.5rem 3.5rem; }
}

@media (max-width: 900px) {
  .hero-v3 {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: calc(var(--sale-banner-h) + 5rem) 1.5rem 2.5rem;
    text-align: center;
  }
  .hero-v3-content {
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }
  html[dir="rtl"] .hero-v3-content,
  html[dir="ltr"] .hero-v3-content { text-align: center; }
  .hero-v3-actions {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }
  html[dir="rtl"] .hero-v3-actions { flex-direction: column; align-items: stretch; }
  .hero-v3-stats { justify-content: center; }
  html[dir="rtl"] .hero-v3-stats { justify-content: center; }
  .hero-v3-visual {
    min-height: auto;
    max-width: min(280px, 75vw);
    margin: 0 auto;
  }
  .hero-v3-portrait { max-height: min(320px, 40svh); }
  .hero-v3-float-card--cert { top: 5%; inset-inline-start: 0; }
  .hero-v3-float-card--rating { bottom: 10%; inset-inline-end: 0; }
  .hero-v3-float-card { padding: 0.65rem 0.9rem; font-size: 0.85rem; }
  .ig-grid-lux { grid-template-columns: repeat(3, 1fr); }
  .ig-cell-lux:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .ba-grid { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr 1fr !important; }
  .lux-section { padding: 3.5rem 1.25rem; }
  .about-compact-lux { padding: 2.5rem 1.25rem; }
  .about-compact-lux-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.5rem;
  }
  .cta-lux { padding: 3.5rem 1.25rem; }
  .page-hero-lux { padding: calc(var(--sale-banner-h) + 6.5rem) 1.25rem 3rem; }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr !important; }
  .ig-grid-lux { grid-template-columns: repeat(2, 1fr); }
  .ig-cell-lux:nth-child(1) { grid-column: span 2; }
  .hero-v3-h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .testimonial-lux { width: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-v3-bg,
  .hero-v3-ring,
  .hero-v3-float-card,
  .testimonials-lux-track,
  .reveal { animation: none !important; transition: none !important; }
}
