/* ═══════════════════════════════════════════════════════════════
   MINE — IMMERSIVE DIGITAL EXPERIENCE
   Design System + Complete Styles
   ═══════════════════════════════════════════════════════════════ */

/* ═══════ RESET ═══════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ═══════ DESIGN TOKENS ═══════ */
:root {
  /* — Gold Palette — */
  --gold: #d4af37;
  --gold-bright: #f3e5ab;
  --gold-dim: #aa8c2c;
  --gold-glow: rgba(212, 175, 55, 0.18);
  --gold-glow-strong: rgba(212, 175, 55, 0.35);

  /* — Background Palette — */
  --bg: #0a1628;
  --bg-2: #101d33;
  --bg-3: #152238;
  --bg-4: #1e3352;
  --bg-card: rgba(15, 25, 45, 0.75);
  --bg-glass: rgba(255, 255, 255, 0.04);

  /* — Text Palette — */
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* — Borders — */
  --border: rgba(212, 175, 55, 0.10);
  --border-hover: rgba(212, 175, 55, 0.30);

  /* — Radii — */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-full: 999px;

  /* — Typography — */
  --font-ar: 'Cairo', 'Tajawal', sans-serif;
  --font-en: 'Montserrat', 'Cairo', sans-serif;
  --font: var(--font-ar);

  /* — Transitions — */
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* — Layout — */
  --container: 1200px;
  --section-pad: clamp(80px, 12vh, 140px);

  /* — Mood Colors (change per section via JS) — */
  --mood-primary: rgba(212, 175, 55, 0.08);
  --mood-accent: var(--gold);
  --mood-glow: rgba(212, 175, 55, 0.15);
  --mood-bg-shift: rgba(10, 22, 40, 0);

  /* — Cursor — */
  --cursor-size: 20px;
  --cursor-color: var(--gold);
}

html[dir="ltr"] {
  --font: var(--font-en);
}

/* ═══════ BASE ═══════ */
html {
  scroll-behavior: auto;
  /* GSAP handles smooth scroll */
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  min-height: 100dvh;
  overflow-x: hidden;
  line-height: 1.7;
  cursor: none;
  /* Custom cursor */
}

/* Show default cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  body {
    cursor: auto;
  }
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  border: none;
  cursor: none;
}

@media (hover: none) and (pointer: coarse) {
  button {
    cursor: auto;
  }
}

/* ═══════ SCROLLBAR ═══════ */
::-webkit-scrollbar {
  width: 0px;
}

/* Hidden — we have custom progress */
body {
  scrollbar-width: none;
}

/* ═══════ CONTAINER ═══════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* ═══════════════════════════════════════
   CUSTOM CURSOR ECOSYSTEM
   ═══════════════════════════════════════ */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--cursor-size);
  height: var(--cursor-size);
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    height 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s,
    background 0.3s,
    opacity 0.3s;
}

/* Cursor states */
.cursor-ring.cursor-hover {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold);
}

.cursor-ring.cursor-text {
  width: 80px;
  height: 80px;
  border-color: rgba(212, 175, 55, 0.2);
  mix-blend-mode: difference;
}

.cursor-ring.cursor-media {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.06);
  border-color: var(--gold-dim);
}

.cursor-trail {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  opacity: 0;
  transform: translate(-50%, -50%);
}

/* Hide custom cursor on mobile */
@media (hover: none) and (pointer: coarse) {

  .cursor-dot,
  .cursor-ring,
  .cursor-trail {
    display: none !important;
  }
}

/* ═══════════════════════════════════════
   PROGRESS INDICATOR
   ═══════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 10001;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-bright));
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--gold-glow-strong), 0 0 30px var(--gold-glow);
}

/* Side dots progress */
.scroll-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.5s;
}

html[dir="rtl"] .scroll-dots {
  right: auto;
  left: 24px;
}

.scroll-dots.visible {
  opacity: 1;
}

.scroll-dot-item {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.2);
  cursor: none;
  transition: var(--transition);
  position: relative;
}

.scroll-dot-item.active {
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow-strong);
  transform: scale(1.3);
}

.scroll-dot-item::after {
  content: attr(data-label);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

html[dir="rtl"] .scroll-dot-item::after {
  right: auto;
  left: 20px;
}

.scroll-dot-item:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .scroll-dots {
    display: none;
  }
}

/* ═══════════════════════════════════════
   COSMIC CANVAS (Living Background)
   ═══════════════════════════════════════ */
#cosmicCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Mood overlay — changes color per section */
.mood-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: var(--mood-bg-shift);
  transition: background 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Aurora effect */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  overflow: hidden;
}

.aurora-band {
  position: absolute;
  width: 200%;
  height: 40%;
  border-radius: 50%;
  filter: blur(80px);
  animation: auroraFlow 12s ease-in-out infinite alternate;
}

.aurora-band:nth-child(1) {
  top: -10%;
  left: -50%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  animation-delay: 0s;
}

.aurora-band:nth-child(2) {
  top: 20%;
  left: -30%;
  background: radial-gradient(ellipse, rgba(120, 80, 200, 0.06) 0%, transparent 70%);
  animation-delay: -4s;
  animation-duration: 15s;
}

.aurora-band:nth-child(3) {
  bottom: -10%;
  right: -40%;
  background: radial-gradient(ellipse, rgba(37, 211, 102, 0.04) 0%, transparent 70%);
  animation-delay: -8s;
  animation-duration: 18s;
}

@keyframes auroraFlow {
  0% {
    transform: translateX(-10%) rotate(-3deg) scale(1);
  }

  100% {
    transform: translateX(10%) rotate(3deg) scale(1.1);
  }
}

/* ═══════════════════════════════════════
   PRELOADER — Cinematic Particle Formation
   ═══════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  background: #050d1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-canvas {
  position: absolute;
  inset: 0;
}

.preloader-text {
  position: relative;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 8vw, 72px);
  font-weight: 900;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.preloader-text.visible {
  opacity: 1;
  transform: scale(1);
}

.preloader-sub {
  position: relative;
  z-index: 2;
  font-size: 13px;
  color: var(--gold-dim);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 16px;
  opacity: 0;
  transition: opacity 0.6s 0.3s;
}

.preloader-sub.visible {
  opacity: 0.7;
}

/* ═══════════════════════════════════════
   NAVBAR — Transparent + Magnetic
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 20px var(--gold-glow));
  transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
  height: 36px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Button — magnetic target */
.lang-btn {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.lang-btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}

.lang-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  transform: scale(1.05);
}

.lang-btn:hover::after {
  opacity: 0.3;
}

/* Nav CTA */
.nav-cta {
  display: none;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0a1628;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.nav-cta:hover::before {
  transform: translateX(100%);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
  fill: #0a1628;
}

@media (min-width: 768px) {
  .nav-cta {
    display: flex;
  }
}

/* ═══════════════════════════════════════
   HERO SECTION — Cinematic Entry
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0 60px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(120, 80, 200, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

/* Hero Logo */
.hero-logo {
  width: clamp(140px, 30vw, 240px);
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.3));
  opacity: 0;
  transform: scale(0.6) translateY(30px);
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
}

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

/* Hero Tagline — Text Scramble target */
.hero-tagline {
  font-size: clamp(18px, 3.5vw, 26px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  min-height: 1.5em;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.9;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
}

/* Scroll prompt */
.scroll-prompt {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.scroll-prompt-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

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

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  50.01% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ═══════════════════════════════════════
   SMART CONTACT CARD — 3D Tilt
   ═══════════════════════════════════════ */
.smart-card-section {
  position: relative;
  z-index: 3;
  padding: 0 0 20px;
  margin-top: 40px;
  perspective: 1000px;
}

.smart-card {
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(20, 35, 60, 0.92), rgba(10, 22, 40, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(212, 175, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s;
  opacity: 0;
  will-change: transform;
}

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

.smart-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Card tilt shine effect */
.smart-card .tilt-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%),
      rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.smart-card:hover .tilt-shine {
  opacity: 1;
}

.sc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.sc-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.sc-info {
  flex: 1;
}

.sc-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.sc-name span {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sc-role {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.sc-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  color: #25d366;
  letter-spacing: 0.05em;
}

.sc-badge .online-dot {
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Contact Actions Grid */
.sc-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.sc-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 6px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  color: var(--text);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.sc-action::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition);
  border-radius: 14px;
}

.sc-action:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.12);
}

.sc-action:hover::before {
  opacity: 1;
}

.sc-action:active {
  transform: translateY(-1px) scale(0.96);
}

.sc-action-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sc-action-icon svg {
  width: 16px;
  height: 16px;
}

.sc-action-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

/* Action Colors */
.sc-action.sc-wa .sc-action-icon {
  background: rgba(37, 211, 102, 0.15);
}

.sc-action.sc-wa .sc-action-icon svg {
  fill: #25d366;
}

.sc-action.sc-wa::before {
  background: rgba(37, 211, 102, 0.06);
}

.sc-action.sc-wa:hover .sc-action-label {
  color: #25d366;
}

.sc-action.sc-wa:hover .sc-action-icon {
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.3);
}

.sc-action.sc-call .sc-action-icon {
  background: rgba(0, 150, 255, 0.12);
}

.sc-action.sc-call .sc-action-icon svg {
  fill: #0096ff;
}

.sc-action.sc-call::before {
  background: rgba(0, 150, 255, 0.06);
}

.sc-action.sc-call:hover .sc-action-label {
  color: #0096ff;
}

.sc-action.sc-tg .sc-action-icon {
  background: rgba(0, 136, 204, 0.12);
}

.sc-action.sc-tg .sc-action-icon svg {
  fill: #0088cc;
}

.sc-action.sc-tg::before {
  background: rgba(0, 136, 204, 0.06);
}

.sc-action.sc-tg:hover .sc-action-label {
  color: #0088cc;
}

.sc-action.sc-ig .sc-action-icon {
  background: rgba(225, 48, 108, 0.1);
}

.sc-action.sc-ig .sc-action-icon svg {
  fill: #E1306C;
}

.sc-action.sc-ig::before {
  background: rgba(225, 48, 108, 0.06);
}

.sc-action.sc-ig:hover .sc-action-label {
  color: #E1306C;
}

.sc-action.sc-fb .sc-action-icon {
  background: rgba(24, 119, 242, 0.12);
}

.sc-action.sc-fb .sc-action-icon svg {
  fill: #1877F2;
}

.sc-action.sc-fb::before {
  background: rgba(24, 119, 242, 0.06);
}

.sc-action.sc-fb:hover .sc-action-label {
  color: #1877F2;
}

.sc-action.sc-yt .sc-action-icon {
  background: rgba(255, 0, 0, 0.1);
}

.sc-action.sc-yt .sc-action-icon svg {
  fill: #FF0000;
}

.sc-action.sc-yt::before {
  background: rgba(255, 0, 0, 0.06);
}

.sc-action.sc-yt:hover .sc-action-label {
  color: #FF0000;
}

.sc-action.sc-loc .sc-action-icon {
  background: rgba(234, 67, 53, 0.1);
}

.sc-action.sc-loc .sc-action-icon svg {
  fill: #ea4335;
}

.sc-action.sc-loc::before {
  background: rgba(234, 67, 53, 0.06);
}

.sc-action.sc-loc:hover .sc-action-label {
  color: #ea4335;
}

.sc-action.sc-in .sc-action-icon {
  background: rgba(10, 102, 194, 0.12);
}

.sc-action.sc-in .sc-action-icon svg {
  fill: #0a66c2;
}

.sc-action.sc-in::before {
  background: rgba(10, 102, 194, 0.06);
}

.sc-action.sc-in:hover .sc-action-label {
  color: #0a66c2;
}

/* CTA Row */
.sc-cta-row {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.sc-cta-pkg {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(120, 80, 200, 0.1));
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #a78bfa;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.sc-cta-pkg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(167, 139, 250, 0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.sc-cta-pkg:hover::before {
  transform: translateX(100%);
}

.sc-cta-pkg:hover {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.22), rgba(120, 80, 200, 0.18));
  border-color: rgba(167, 139, 250, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(120, 80, 200, 0.2);
}

.sc-cta-pkg svg {
  width: 18px;
  height: 18px;
  fill: #a78bfa;
}

.sc-cta-web {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  transition: var(--transition);
}

.sc-cta-web:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.sc-cta-web svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

/* ═══════════════════════════════════════
   STATS SECTION — Snap Point
   ═══════════════════════════════════════ */
.stats {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  position: relative;
  padding: 20px 8px;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-hover), transparent);
}

html[dir="rtl"] .stat-item:not(:last-child)::after {
  left: 0;
  right: auto;
}

.stat-number {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(20px);
}

.stat-label {
  font-size: clamp(11px, 1.5vw, 14px);
  color: var(--text-muted);
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
}

/* Stat glow halo */
.stat-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s;
}

.stat-item.active::before {
  opacity: 1;
}

/* ═══════════════════════════════════════
   ABOUT SECTION — Horizontal Scroll
   ═══════════════════════════════════════ */
.about {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.about-scroll-container {
  display: flex;
  width: 200vw;
  min-height: 100vh;
}

.about-panel {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--section-pad) 0;
}

.about-panel .container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateX(-40px);
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.6) 100%);
  pointer-events: none;
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text {
  opacity: 0;
  transform: translateX(40px);
}

.about-text h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.about-text h2 span {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* Formula Chips — Split Text targets */
.about-formula {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.formula-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px) rotate(-5deg);
}

.formula-chip .chip-icon {
  font-size: 14px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.about-link:hover {
  gap: 14px;
}

.about-link svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  transition: var(--transition);
}

html[dir="rtl"] .about-link svg {
  transform: rotate(180deg);
}

/* About Panel 2 — Philosophy */
.about-philosophy {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-philosophy .philosophy-quote {
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0;
}

.about-philosophy .philosophy-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  opacity: 0;
}

/* ═══════════════════════════════════════
   SERVICES — 3D Cards
   ═══════════════════════════════════════ */
.services {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, rgba(15, 25, 45, 0.5) 0%, transparent 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold-dim);
}

.section-heading {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 200px;
  margin: 0 auto 32px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.section-divider .gem {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--gold-glow-strong);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  perspective: 1000px;
}

/* 3D Service Card */
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.15s ease-out, box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(40px) rotateX(10deg);
  will-change: transform;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--gold-glow);
}

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

/* Card shine */
.service-card .card-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%),
      rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover .card-shine {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: scale(1.1) translateZ(20px);
}

.service-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.services-cta {
  text-align: center;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(20px);
}

/* ═══════════════════════════════════════
   BUTTONS — Physics Hover
   ═══════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0a1628;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(212, 175, 55, 0.45);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  fill: #0a1628;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.btn-outline:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-outline svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.45);
}

.btn-wa svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* ═══════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════ */
.contact {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 12px;
  color: var(--text);
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.contact-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-glow) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.contact-btn:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), 0 0 20px var(--gold-glow);
}

.contact-btn:hover::before {
  opacity: 1;
}

.contact-btn:active {
  transform: translateY(-1px) scale(0.97);
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  transition: var(--transition);
}

.contact-btn:hover .contact-icon-wrap {
  background: rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 16px var(--gold-glow);
  transform: scale(1.1);
}

.contact-icon-wrap svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.contact-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.contact-btn:hover .contact-label {
  color: var(--gold);
}

/* WhatsApp color */
.contact-btn.wa .contact-icon-wrap {
  background: rgba(37, 211, 102, 0.12);
}

.contact-btn.wa .contact-icon-wrap svg {
  fill: #25d366;
}

.contact-btn.wa:hover .contact-icon-wrap {
  background: rgba(37, 211, 102, 0.22);
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.25);
}

.contact-btn.wa:hover .contact-label {
  color: #25d366;
}

/* Social row */
.social-row {
  margin-top: 20px;
}

.social-row-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  transition: var(--transition);
  flex: 1;
}

.social-link-btn:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-link-btn .sl-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.social-link-btn .sl-icon svg {
  width: 100%;
  height: 100%;
}

.social-link-btn .sl-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link-btn:hover .sl-name {
  color: var(--text);
}

.social-link-btn.fb .sl-icon svg {
  fill: #1877F2;
}

.social-link-btn.ig .sl-icon svg {
  fill: #E1306C;
}

.social-link-btn.yt .sl-icon svg {
  fill: #FF0000;
}

.social-link-btn.fb:hover {
  border-color: rgba(24, 119, 242, 0.35);
}

.social-link-btn.ig:hover {
  border-color: rgba(225, 48, 108, 0.35);
}

.social-link-btn.yt:hover {
  border-color: rgba(255, 0, 0, 0.35);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(30px);
}

.form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  resize: none;
}

.form-input:focus {
  border-color: var(--border-hover);
  background: rgba(212, 175, 55, 0.04);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.form-input::placeholder {
  color: var(--text-dim);
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #1a5c30, #128C7E);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px;
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  margin-top: 8px;
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.15);
}

.submit-btn:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 36px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0) scale(0.98);
}

.submit-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   CTA BANNER — Snap Point
   ═══════════════════════════════════════ */
.cta-banner {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
  text-align: center;
}

.cta-banner-inner {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-4));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 8vw, 72px) clamp(24px, 5vw, 60px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.95);
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Generative gradient overlay */
.cta-banner-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--gradient-angle, 135deg),
      rgba(212, 175, 55, 0.05),
      rgba(120, 80, 200, 0.03),
      rgba(37, 211, 102, 0.02));
  pointer-events: none;
  animation: gradientRotate 10s linear infinite;
}

@keyframes gradientRotate {
  0% {
    --gradient-angle: 0deg;
  }

  100% {
    --gradient-angle: 360deg;
  }
}

@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 135deg;
  inherits: false;
}

.cta-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  position: relative;
}

.cta-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  position: relative;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-stamp {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-stamp img {
  height: 30px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(0.3);
}

.footer-stamp-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-tagline {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-dim);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}

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

/* ═══════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 3s ease-in-out infinite;
}

html[dir="rtl"] .whatsapp-float {
  right: 24px;
  left: auto;
}

html[dir="ltr"] .whatsapp-float {
  left: 24px;
  right: auto;
}

html:not([dir]) .whatsapp-float {
  right: 24px;
}

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

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

/* ═══════════════════════════════════════
   SCROLL TO TOP
   ═══════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

html[dir="rtl"] .scroll-top {
  left: 24px;
  right: auto;
}

html[dir="ltr"] .scroll-top {
  right: 24px;
  left: auto;
}

html:not([dir]) .scroll-top {
  left: 24px;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  transition: var(--transition);
}

.scroll-top:hover svg {
  stroke: #0a1628;
}

/* ═══════════════════════════════════════
   GLOBAL RIPPLE
   ═══════════════════════════════════════ */
.global-ripple {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 99996;
  transform: scale(0);
  opacity: 1;
}

/* ═══════════════════════════════════════
   IDLE BREATHING
   ═══════════════════════════════════════ */
body.idle .aurora-band {
  animation-duration: 20s;
}

body.idle #cosmicCanvas {
  transition: opacity 2s;
  opacity: 0.3;
}

/* ═══════════════════════════════════════
   SVG Defs
   ═══════════════════════════════════════ */
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .about-scroll-container {
    width: auto;
    flex-direction: column;
  }

  .about-panel {
    width: auto;
    min-height: auto;
    padding: var(--section-pad) 0;
  }

  .hero {
    padding: 80px 0 40px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .social-links {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .smart-card-section {
    padding: 0 16px 20px;
  }

  .smart-card {
    padding: 22px 18px 20px;
  }

  .sc-actions {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .sc-action {
    padding: 10px 4px 8px;
  }

  .sc-action-icon {
    width: 28px;
    height: 28px;
  }

  .sc-action-icon svg {
    width: 14px;
    height: 14px;
  }

  .sc-action-label {
    font-size: 9px;
  }

  .sc-cta-row {
    flex-direction: column;
  }

  .sc-badge {
    font-size: 9px;
    padding: 3px 8px;
  }
}

@media (max-width: 360px) {
  .contact-btn {
    padding: 16px 8px;
  }

  .contact-label {
    font-size: 11px;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ═══════════════════════════════════════
   REDUCED MOTION — Accessibility
   ═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   MERGED DYNAMIC COMPONENTS STYLES
   ═══════════════════════════════════════ */

/* ——————— FORMULA & PHILOSOPHY SECTION ——————— */
.intro-section {
  background: radial-gradient(circle at top, var(--bg-2) 0%, var(--bg) 100%);
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.intro-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-text,
.intro-text-ar {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.intro-text-ar {
  font-family: var(--font-ar);
  border-right: 3px solid var(--gold);
  padding-right: 16px;
}

html[dir="ltr"] .intro-text-ar {
  border-right: none;
  border-left: 3px solid var(--gold);
  padding-right: 0;
  padding-left: 16px;
}

.formula-header {
  margin-bottom: 32px;
}

.formula-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.formula-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.formula-subtitle {
  color: var(--text-dim);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.formula-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 576px) {
  .formula-grid {
    grid-template-columns: 1fr;
  }
}

.formula-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.formula-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 10px 30px var(--gold-glow);
}

.formula-card-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.formula-card-letters {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.formula-letter {
  font-size: 2rem;
  color: var(--gold-bright);
  font-weight: 900;
}

.formula-card-words {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.formula-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ——————— ABOUT PANEL 2 STYLES ——————— */
.about-philosophy {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.philosophy-quote {
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.philosophy-quote br {
  display: block;
}

.philosophy-sub {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

.belief-box {
  margin-top: 2rem;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  max-width: 500px;
  text-align: center;
}

.belief-box h4 {
  color: var(--gold);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.belief-quote {
  font-weight: 700;
  font-style: italic;
  color: var(--text);
  margin-bottom: 4px;
}

.belief-quote-ar {
  font-family: var(--font-ar);
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 8px;
}

/* ——————— ACRONYM COMPONENT ——————— */
.acronym-container {
  margin-top: 3rem;
  padding: 3rem 2rem 2rem;
  background: radial-gradient(circle at center, rgba(16, 29, 51, 0.8) 0%, rgba(10, 22, 40, 0.95) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  text-align: center;
  overflow: visible;
  position: relative;
  transform: translateZ(0);
}

[lang="ar"] .acronym-container {
  direction: ltr !important;
}

.acronym-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: nowrap;
  direction: ltr !important;
  width: 100%;
  overflow-x: visible;
  perspective: 1000px;
}

.acronym-letter-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float3D 6s ease-in-out infinite;
  animation-delay: calc(var(--anim-order) * 0.2s);
  transform-style: preserve-3d;
  flex-shrink: 0;
}

.letter {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  text-shadow:
    1px 1px 0 var(--gold-dim),
    2px 2px 0 var(--gold-dim),
    3px 3px 0 rgba(212, 175, 55, 0.5),
    4px 4px 15px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  cursor: default;
}

.acronym-letter-block:hover .letter,
.acronym-letter-block.auto-active .letter {
  transform: translateY(-8px) scale(1.08);
  text-shadow:
    1px 1px 0 var(--gold),
    2px 2px 0 var(--gold),
    3px 3px 0 var(--gold-bright),
    4px 4px 0 rgba(212, 175, 55, 0.7),
    8px 8px 20px rgba(0, 0, 0, 0.8);
}

.acronym-letter-block.auto-active .letter {
  animation: letterPulse 0.4s ease-out;
}

.letter-tooltip {
  position: absolute;
  bottom: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: rgba(16, 29, 51, 0.95);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  min-width: 130px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.letter-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: rgba(16, 29, 51, 0.95);
}

.acronym-letter-block:hover .letter-tooltip,
.acronym-letter-block.auto-active .letter-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
  animation: tooltipBounce 0.3s ease-out;
}

.letter-tooltip strong {
  display: block;
  color: var(--gold-bright);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.letter-tooltip span {
  display: block;
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

.acronym-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1px;
}

@keyframes tooltipBounce {
  0% {
    transform: translateX(-50%) scale(0.5) translateY(10px);
    opacity: 0;
  }

  60% {
    transform: translateX(-50%) scale(1.1) translateY(-5px);
  }

  100% {
    transform: translateX(-50%) scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes letterPulse {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.15);
  }

  100% {
    transform: translateY(-8px) scale(1.08);
  }
}

@keyframes float3D {

  0%,
  100% {
    transform: translateY(0) rotateY(0deg);
  }

  50% {
    transform: translateY(-8px) rotateY(8deg);
  }
}

@media (max-width: 768px) {
  .acronym-brand {
    gap: 0.75rem;
  }

  .acronym-container {
    padding: 2rem 1rem 1.5rem;
  }
}

/* ——————— PROJECTS SECTION ——————— */
.projects {
  background: radial-gradient(circle at bottom, var(--bg-2) 0%, var(--bg) 100%);
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 40px var(--gold-glow);
}

.project-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  cursor: pointer;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay-icon {
  width: 64px;
  height: 64px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  transition: var(--transition);
}

.project-card:hover .project-overlay-icon {
  transform: scale(1.1);
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 20px var(--gold-glow-strong);
}

.project-overlay-icon svg {
  width: 28px;
  height: 28px;
}

.project-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-category {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}

.project-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.project-tech span {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 6px;
}

.project-card:hover .project-tech span {
  border-color: var(--border-hover);
  color: var(--gold-bright);
}

.project-buttons {
  display: flex;
  gap: 12px;
}

.project-buttons .btn-secondary {
  width: 100%;
}

/* ——————— PRODUCTS SECTION ——————— */
.products {
  background: radial-gradient(circle at top, var(--bg-2) 0%, var(--bg) 100%);
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 40px var(--gold-glow);
}

.product-card.auto-active {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px var(--gold-glow-strong);
}

.product-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-image:hover .product-image-overlay {
  opacity: 1;
}

.product-image-overlay svg {
  width: 40px;
  height: 40px;
}

.product-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-prices {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.product-price,
.product-discount-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.product-original-price {
  font-size: 0.95rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.discount-badge {
  background: linear-gradient(135deg, #f5576c, #e1306c);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.product-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-buttons {
  display: flex;
  gap: 12px;
}

.product-buttons .btn,
.product-buttons a {
  flex: 1;
  text-align: center;
}

.product-buttons .btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.product-buttons .btn-whatsapp:hover {
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

/* ——————— NEWS SECTION ——————— */
.news {
  background: radial-gradient(circle at bottom, var(--bg-2) 0%, var(--bg) 100%);
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  position: relative;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
  z-index: 10;
}

.news-card:hover::before {
  transform: scaleX(1);
}

.news-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 40px var(--gold-glow);
}

.news-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.08);
}

.news-category {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #000;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

html[dir="rtl"] .news-category {
  right: auto;
  left: 16px;
}

.news-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-meta svg {
  color: var(--gold);
  width: 14px;
  height: 14px;
}

.news-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.news-actions {
  display: flex;
  gap: 12px;
}

.news-actions button {
  width: 100%;
}

/* ——————— PREMIUM COUNTDOWN BANNER ——————— */
.offer-banner-container {
  margin-bottom: 40px;
}

.global-offer-banner.premium-banner {
  background: linear-gradient(135deg, rgba(16, 29, 51, 0.8) 0%, rgba(10, 22, 40, 0.95) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--gold-glow), inset 0 0 30px var(--gold-glow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  backdrop-filter: blur(10px);
}

.premium-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: shine 4s infinite;
  pointer-events: none;
}

.banner-header {
  flex: 1;
  text-align: left;
}

html[dir="rtl"] .banner-header {
  text-align: right;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: #000;
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px var(--gold-glow-strong);
}

.banner-badge svg {
  width: 12px;
  height: 12px;
}

.banner-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.banner-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.banner-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.countdown-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.countdown-grid {
  display: flex;
  gap: 12px;
}

.countdown-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.countdown-box:hover {
  border-color: var(--gold);
}

.c-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1.1;
  margin-bottom: 4px;
}

.c-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.offer-expired {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 600;
  padding: 20px;
  text-align: center;
  width: 100%;
}

@media (max-width: 768px) {
  .global-offer-banner.premium-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
  }

  .banner-header {
    text-align: center;
  }

  html[dir="rtl"] .banner-header {
    text-align: center;
  }
}

/* ——————— MODAL SYSTEMS ——————— */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, 0.85);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 50px var(--gold-glow);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.01);
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-bright);
}

.modal-close-btn {
  background: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
  padding: 0 4px;
}

.modal-close-btn:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.01);
}

/* Service Modal Details Specifics */
.service-modal-header {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.service-modal-icon {
  font-size: 3rem;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.service-modal-intro {
  flex-grow: 1;
}

.service-modal-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.service-modal-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-glow);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-bright);
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 500;
}

.service-modal-highlight .highlight-badge {
  color: var(--gold);
  font-weight: bold;
}

.service-subservices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

@media (max-width: 576px) {
  .service-subservices-grid {
    grid-template-columns: 1fr;
  }
}

.service-subservice {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.subservice-title {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}

.subservice-list,
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.subservice-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 14px;
  line-height: 1.5;
}

html[dir="rtl"] .subservice-list li {
  padding-left: 0;
  padding-right: 14px;
}

.subservice-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

html[dir="rtl"] .subservice-list li::before {
  left: auto;
  right: 0;
}

.service-benefits {
  margin-top: 24px;
  padding: 18px;
  background: rgba(212, 175, 55, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius);
}

.benefits-title {
  font-size: 1.1rem;
  color: var(--gold-bright);
  margin-bottom: 12px;
  font-weight: 700;
}

.benefits-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.benefit-icon {
  color: var(--gold);
}

/* Product Modal details */
.product-details-section {
  margin-bottom: 20px;
}

.details-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.product-notes-wrapper {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note-section-title {
  font-size: 0.85rem;
  color: var(--gold-dim);
  margin-bottom: 4px;
}

.note-section-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ——————— NAVIGATION MENU & HAMBURGER STYLES ——————— */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  padding: 6px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-bright);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburger Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  html[dir="rtl"] .nav-menu {
    right: auto;
    left: -100%;
    border-left: none;
    border-right: 1px solid var(--border);
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-menu.active {
    right: 0;
  }

  html[dir="rtl"] .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.1rem;
  }
}