/* ============================================
   DR. SARA ESSAM — MIDNIGHT EXCELLENCE v2
   Ultra-Luxury Dark Theme
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-deep: #030303;
  --bg-primary: #070707;
  --bg-elevated: #0c0c0c;
  --bg-card: rgba(255, 255, 255, 0.015);
  --gold: #C9A84C;
  --gold-light: #E2C878;
  --gold-bright: #F5E6A3;
  --gold-dark: #8B7332;
  --gold-muted: rgba(201, 168, 76, 0.08);
  --electric-blue: #1A6FE2;
  --blue-glow: rgba(26, 111, 226, 0.08);
  --text-primary: #F0EDE6;
  --text-secondary: rgba(240, 237, 230, 0.72);
  --text-muted: rgba(240, 237, 230, 0.50);
  --text-gold: #D4B95E;
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-bg-hover: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-border-gold: rgba(201, 168, 76, 0.12);
  --gold-gradient: linear-gradient(135deg, #8B7332, #C9A84C, #E2C878, #C9A84C, #8B7332);
  --gold-text-gradient: linear-gradient(135deg, #C9A84C, #F5E6A3, #C9A84C);
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ar: 'IBM Plex Sans Arabic', 'Segoe UI', sans-serif;
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: all 0.5s var(--ease-smooth);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

.arabic {
  font-family: var(--font-ar);
  direction: rtl;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ── Canvas ── */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* ── Cursor Glow ── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 0 40px rgba(37, 211, 102, 0.1);
  transition: transform 0.3s var(--ease-luxury), box-shadow 0.3s ease;
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5), 0 0 60px rgba(37, 211, 102, 0.15);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5), 0 0 50px rgba(37, 211, 102, 0.12); }
}

/* ── Language Switcher ── */
.nav-lang {
  padding: 0.35rem 0.9rem !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 4px !important;
  font-size: 0.78rem !important;
  transition: var(--transition) !important;
}

.nav-lang:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.nav-lang::after { display: none !important; }

/* ── Ambient Glow Orbs ── */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.ambient-orb-1 {
  width: 500px; height: 500px;
  background: rgba(201, 168, 76, 0.03);
  top: -200px; right: -150px;
  animation: orbFloat 20s ease-in-out infinite;
}
.ambient-orb-2 {
  width: 400px; height: 400px;
  background: rgba(26, 111, 226, 0.03);
  bottom: 30%; left: -100px;
  animation: orbFloat 25s ease-in-out 5s infinite reverse;
}
.ambient-orb-3 {
  width: 350px; height: 350px;
  background: rgba(201, 168, 76, 0.02);
  top: 60%; right: -100px;
  animation: orbFloat 22s ease-in-out 10s infinite;
}

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

/* ════════════════════════════
   NAVBAR
   ════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 2.5rem;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.8rem 2.5rem;
  background: rgba(3, 3, 3, 0.9);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-luxury);
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.5rem !important;
  border: 1px solid rgba(201, 168, 76, 0.25) !important;
  border-radius: 6px !important;
  font-size: 0.78rem !important;
  color: var(--gold) !important;
  transition: var(--transition) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
}

.nav-cta:hover {
  background: rgba(201, 168, 76, 0.08) !important;
  border-color: var(--gold) !important;
}

.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 1px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ════════════════════════════
   HERO SECTION
   ════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 8rem 2.5rem 5rem;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--bg-deep), transparent);
  pointer-events: none;
  z-index: 3;
}

.hero-content {
  max-width: 1300px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  background: rgba(201, 168, 76, 0.03);
}

.hero-badge .dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.hero-title-ar {
  font-family: var(--font-ar);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  direction: rtl;
  color: var(--text-gold);
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.hero-title-en {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.hero-title-en .highlight {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, #C9A84C, #F5E6A3, #C9A84C, #F5E6A3, #C9A84C);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 6s ease-in-out infinite;
}

@keyframes textShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 0.6rem;
  max-width: 520px;
}

.hero-subtitle-ar {
  font-family: var(--font-ar);
  direction: rtl;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Buttons */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.2rem;
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;left: -100%;
  width: 100%;height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.cta-primary:hover::before { left: 100%; }

.cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3), 0 0 60px rgba(201, 168, 76, 0.08);
}

.cta-primary:active {
  transform: translateY(-1px) scale(0.99);
}

/* CTA breathing glow */
@keyframes ctaBreath {
  0%, 100% { box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15); }
  50% { box-shadow: 0 4px 30px rgba(201, 168, 76, 0.3), 0 0 50px rgba(201, 168, 76, 0.08); }
}

.cta-banner .cta-primary {
  animation: ctaBreath 3s ease-in-out infinite;
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.cta-outline:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.03);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  width: 400px;
  height: 520px;
  border-radius: 240px 240px 32px 32px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.05),
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(201, 168, 76, 0.06);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.1) saturate(0.9);
}

.hero-image-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 55%);
  z-index: -1;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

.hero-float-badge {
  position: absolute;
  padding: 0.7rem 1.1rem;
  background: rgba(7, 7, 7, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-secondary);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.hero-float-badge .badge-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.15rem;
}

.hero-float-badge.badge-1 {
  top: 12%;
  right: -30px;
  animation: floatBadgeA 7s ease-in-out infinite;
}

.hero-float-badge.badge-2 {
  bottom: 18%;
  left: -40px;
  animation: floatBadgeB 8s ease-in-out 2s infinite;
}

@keyframes floatBadgeA {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(0.5deg); }
  50% { transform: translateY(-12px) rotate(0deg); }
  75% { transform: translateY(-4px) rotate(-0.5deg); }
}

@keyframes floatBadgeB {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(-0.8deg); }
  66% { transform: translateY(-5px) rotate(0.5deg); }
}

/* ════════════════════════════
   SECTION COMMON
   ════════════════════════════ */
.section {
  position: relative;
  z-index: 2;
  padding: 7rem 2.5rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--gold-gradient);
  margin: 0 auto 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  letter-spacing: -0.3px;
}

.section-title em {
  font-style: italic;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title-ar {
  font-family: var(--font-ar);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-gold);
  direction: rtl;
  margin-bottom: 1.2rem;
  opacity: 0.8;
}

.section-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Horizontal divider between sections ── */
.section-border {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.1), transparent);
  position: relative;
  z-index: 2;
}

/* ════════════════════════════
   ABOUT SECTION (NEW)
   ════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border-gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 60px rgba(201, 168, 76, 0.04);
  transition: transform 0.6s var(--ease-luxury), box-shadow 0.6s ease;
}

.about-image-frame:hover {
  transform: scale(1.02) rotate(-0.5deg);
  box-shadow: 0 35px 90px rgba(0,0,0,0.5), 0 0 80px rgba(201, 168, 76, 0.08);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) contrast(1.08) saturate(0.88);
  transition: filter 0.6s ease, transform 0.6s var(--ease-luxury);
}

.about-image-frame:hover img {
  filter: brightness(0.95) contrast(1.05) saturate(0.95);
  transform: scale(1.04);
}

.about-content {
  position: relative;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

.about-text {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about-text-ar {
  font-family: var(--font-ar);
  direction: rtl;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.about-credentials {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.credential {
  text-align: center;
}

.credential-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.credential-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

/* ════════════════════════════
   STATS BANNER (NEW)
   ════════════════════════════ */
.stats-section {
  padding: 4rem 2.5rem;
  background: rgba(201, 168, 76, 0.02);
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.stat-label-ar {
  font-family: var(--font-ar);
  direction: rtl;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}

/* ════════════════════════════
   FEATURE CARDS
   ════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.2) 0%, transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
  transform: translateY(-4px);
  background: var(--glass-bg-hover);
  border-color: rgba(201, 168, 76, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(201, 168, 76, 0.04) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.feature-card:hover .feature-card-glow { opacity: 1; }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  background: var(--gold-muted);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.feature-card .card-title-ar {
  font-family: var(--font-ar);
  font-size: 0.9rem;
  color: var(--text-gold);
  direction: rtl;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.feature-card p.card-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ════════════════════════════
   JOURNEY PROCESS (NEW)
   ════════════════════════════ */
.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.journey-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.15), transparent);
  z-index: 0;
}

.journey-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--bg-deep);
  border: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.06);
}

.journey-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.journey-step .step-ar {
  font-family: var(--font-ar);
  font-size: 0.85rem;
  color: var(--text-gold);
  direction: rtl;
  margin-bottom: 0.8rem;
  opacity: 0.7;
}

.journey-step p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ════════════════════════════
   LIGHTNESS CALCULATOR
   ════════════════════════════ */
.calculator-section { position: relative; }

.calculator-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 60%);
  pointer-events: none;
  transition: all 1s ease;
}

.calculator-glow.active {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, rgba(26, 111, 226, 0.03) 40%, transparent 60%);
}

.calculator-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  border: 1px solid var(--glass-border);
  position: relative;
}

.calculator-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.2) 0%, transparent 30%, transparent 70%, rgba(201, 168, 76, 0.08) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.calc-dial-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.calc-dial {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 1.5rem;
}

.calc-dial svg { width: 100%; height: 100%; transform: rotate(-90deg); }

.calc-dial-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 6;
}

.calc-dial-progress {
  fill: none;
  stroke: url(#goldGradient);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 565.48;
  stroke-dashoffset: 565.48;
  transition: stroke-dashoffset 0.6s var(--ease-luxury);
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.3));
}

.calc-dial-value {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.calc-dial-value .value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.calc-dial-value .unit {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.calc-slider-group {
  width: 100%;
  margin-bottom: 1.5rem;
}

.calc-slider-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.calc-slider-label .label-ar {
  font-family: var(--font-ar);
  direction: rtl;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
  border: 3px solid var(--bg-deep);
  transition: var(--transition);
}

.calc-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.6);
}

.calc-slider::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
  border: 3px solid var(--bg-deep);
}

.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.calc-result-item {
  text-align: center;
  padding: 1.2rem 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--glass-border);
}

.calc-result-item .result-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.calc-result-item .result-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ════════════════════════════
   BEFORE & AFTER (NEW)
   ════════════════════════════ */
.transformations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.transformation-card {
  padding: 2rem;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: var(--transition);
}

.transformation-card:hover {
  border-color: rgba(201, 168, 76, 0.12);
  transform: translateY(-3px);
}

.transformation-stat {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.transformation-unit {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.transformation-bar {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.04);
  border-radius: 2px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.transformation-bar-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 2px;
  transition: width 1.5s var(--ease-luxury);
  width: 0;
}

.transformation-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.transformation-detail {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ════════════════════════════
   TESTIMONIALS
   ════════════════════════════ */
.testimonials-section { overflow: hidden; }

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollTestimonials 50s linear infinite;
  width: max-content;
}

.testimonials-track:hover { animation-play-state: paused; }

.testimonial-card {
  flex-shrink: 0;
  width: 400px;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.12);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-size: 0.8rem;
}

.testimonial-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.8rem;
  font-style: italic;
}

.testimonial-text.arabic {
  font-family: var(--font-ar);
  direction: rtl;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-muted);
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.testimonial-author-info .name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.testimonial-author-info .role {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════
   FAQ (NEW)
   ════════════════════════════ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-luxury), padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ════════════════════════════
   GEO MAP SECTION
   ════════════════════════════ */
.geo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.geo-map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--glass-border);
}

.geo-map-wrapper svg { width: 100%; height: 100%; }

.geo-pin { animation: pinBounce 3s ease-in-out infinite; }
.geo-pin-glow { animation: pinGlow 3s ease-in-out infinite; }

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes pinGlow {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

.geo-info { padding: 1rem 0; }

.geo-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(201, 168, 76, 0.03);
}

.geo-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.geo-title-ar {
  font-family: var(--font-ar);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-gold);
  direction: rtl;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.geo-details { list-style: none; }

.geo-details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-secondary);
}

.geo-details li:last-child { border-bottom: none; }

.geo-details .detail-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-muted);
  border: 1px solid rgba(201, 168, 76, 0.08);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ════════════════════════════
   CTA BANNER (NEW)
   ════════════════════════════ */
.cta-banner {
  position: relative;
  z-index: 2;
  padding: 6rem 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-deep), rgba(201, 168, 76, 0.03), var(--bg-deep));
}

.cta-banner-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.cta-banner h2 em {
  font-style: italic;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-banner .cta-ar {
  font-family: var(--font-ar);
  font-size: 1.3rem;
  direction: rtl;
  color: var(--text-gold);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.cta-banner p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* ════════════════════════════
   FOOTER
   ════════════════════════════ */
.footer {
  position: relative;
  z-index: 2;
  padding: 3rem 2.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-text {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-socials a:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.2);
  background: var(--gold-muted);
}

/* ════════════════════════════
   REVEAL ANIMATION
   ════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: all 0.9s var(--ease-luxury);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ════════════════════════════
   RESPONSIVE
   ════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-text { order: 2; }
  .hero-image-wrapper { order: 1; }
  .hero-subtitle { margin: 0 auto 0.6rem; }
  .hero-cta-group { justify-content: center; }
  .hero-image-frame { width: 300px; height: 400px; }
  .hero-title-en { font-size: 3rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .geo-container { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr 1fr; }
  .journey-steps::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .transformations-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%; height: 100vh;
    background: rgba(3, 3, 3, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.4s var(--ease-luxury);
    border-left: 1px solid var(--glass-border);
  }
  .nav-links.active { right: 0; }
  .nav-toggle { display: flex; }
  .hero-title-ar { font-size: 1.6rem; }
  .hero-title-en { font-size: 2.4rem; }
  .section { padding: 5rem 1.5rem; }
  .section-title { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr; gap: 2rem; }
  .calculator-card { padding: 2rem 1.5rem; }
  .calc-dial { width: 170px; height: 170px; }
  .testimonial-card { width: 320px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .transformations-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-title-en { font-size: 1.9rem; }
  .hero-title-ar { font-size: 1.4rem; }
  .hero-image-frame { width: 240px; height: 320px; }
  .cta-primary, .cta-outline { padding: 0.8rem 1.5rem; font-size: 0.8rem; }
  .calc-results { grid-template-columns: 1fr; }
  .stat-value { font-size: 2.2rem; }
  .about-credentials { flex-wrap: wrap; gap: 1.5rem; }
  .cta-banner h2 { font-size: 1.8rem; }
}

/* ════════════════════════════
   ENHANCED MICRO-ANIMATIONS
   ════════════════════════════ */

/* Section Label shimmer on hover */
.section-label {
  transition: letter-spacing 0.4s ease, color 0.3s ease;
}
.section-label:hover {
  letter-spacing: 6px;
  color: var(--gold-light);
}

/* Gold divider widening animation on section enter */
@keyframes dividerExpand {
  from { width: 0; opacity: 0; }
  to { width: 40px; opacity: 1; }
}

/* Feature card icon bounce on hover */
.feature-card:hover .feature-icon {
  animation: iconBounce 0.5s var(--ease-luxury);
}

@keyframes iconBounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.25); }
  60% { transform: scale(0.95); }
  100% { transform: scale(1.05); }
}

/* Journey step number warm glow on hover */
.journey-step:hover .step-number {
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.25), 0 0 60px rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: scale(1.1);
}

.step-number {
  transition: all 0.4s var(--ease-luxury);
}

/* Transformation stat counter glow */
.transformation-stat {
  transition: text-shadow 0.4s ease;
}
.transformation-card:hover .transformation-stat {
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
}

/* Testimonial card gentle sway on hover */
.testimonial-card {
  transition: transform 0.5s var(--ease-luxury), box-shadow 0.5s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px) rotate(-0.5deg) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 168, 76, 0.06);
}

/* FAQ question hover gold accent */
.faq-question:hover {
  padding-left: 1.2rem;
  border-left: 2px solid var(--gold);
}

.faq-question {
  transition: all 0.3s var(--ease-luxury);
}

/* Stat items hover lift */
.stat-item {
  transition: transform 0.4s var(--ease-luxury);
  border-radius: 12px;
}
.stat-item:hover {
  transform: translateY(-6px);
  background: rgba(201, 168, 76, 0.03);
}

/* Geo pin pulse animation */
.geo-pin-glow {
  animation: geoPinPulse 2.5s ease-in-out infinite;
}

@keyframes geoPinPulse {
  0%, 100% { r: 20; opacity: 0.3; fill: rgba(201, 168, 76, 0.1); }
  50% { r: 28; opacity: 0.6; fill: rgba(201, 168, 76, 0.2); }
}

/* Smooth page entrance */
body {
  animation: pageEntrance 1s ease-out;
}

@keyframes pageEntrance {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* CTA outline button sparkle */
.cta-outline {
  position: relative;
  overflow: hidden;
}

.cta-outline::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-outline:hover::before {
  width: 300px;
  height: 300px;
}

/* Footer social links bounce */
.footer-socials a {
  transition: transform 0.3s var(--ease-luxury), color 0.3s ease, opacity 0.3s ease;
}
.footer-socials a:hover {
  transform: translateY(-4px) scale(1.15);
  color: var(--gold);
}

/* Gold text subtle animation for credentials */
.credential-value {
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}
.credential:hover .credential-value {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

/* Warm welcome text float for hero subtitle */
.hero-subtitle {
  animation: subtleFloat 8s ease-in-out infinite;
}

@keyframes subtleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
