/* ══════════════════════════════════════════════════════════
   ELECTRONIC CLICKS — Main Stylesheet
   Dark/Light mode + RTL Arabic support
   ══════════════════════════════════════════════════════════ */

/* ── Dark Mode (default) ── */
:root,
[data-theme="dark"] {
  --bg:          #0D0E13;
  --bg-2:        #141520;
  --bg-3:        #1C1E2A;
  --bg-4:        #252838;
  --text:        #E8E9EE;
  --text-muted:  #8A8FA8;
  --border:      rgba(196,154,40,0.15);
  --border-soft: rgba(255,255,255,0.06);
  --card-bg:     rgba(28,30,42,0.95);
  --input-bg:    #252838;
  --gold:        #C49A28;
  --gold-light:  #F0C040;
  --gold-dark:   #9A7820;
  --shadow:      0 8px 32px rgba(0,0,0,0.45);
  --shadow-gold: 0 8px 32px rgba(196,154,40,0.25);
  --navbar-bg:   rgba(13,14,19,0.92);
}

/* ── Light Mode ── */
[data-theme="light"] {
  --bg:          #F8F9FC;
  --bg-2:        #FFFFFF;
  --bg-3:        #FFFFFF;
  --bg-4:        #F0F2F8;
  --text:        #1A1A2E;
  --text-muted:  #5C6370;
  --border:      rgba(0,0,0,0.08);
  --border-soft: rgba(0,0,0,0.05);
  --card-bg:     #FFFFFF;
  --input-bg:    #F0F2F8;
  --gold:        #9A7820;
  --gold-light:  #C49A28;
  --gold-dark:   #7A6010;
  --shadow:      0 8px 32px rgba(0,0,0,0.10);
  --shadow-gold: 0 8px 28px rgba(154,120,32,0.20);
  --navbar-bg:   rgba(248,249,252,0.95);
}

/* ── Arabic Font ── */
html[lang="ar"] {
  --font-main: 'Cairo', sans-serif;
  --font-head: 'Cairo', sans-serif;
}
html[lang="en"] {
  --font-main: 'Inter', sans-serif;
  --font-head: 'Poppins', sans-serif;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; transition: background-color 0.3s, color 0.3s; }
body {
  font-family: var(--font-main, 'Inter', sans-serif);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color 0.3s, color 0.3s;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,154,40,0.10);
  color: var(--gold); border: 1px solid rgba(196,154,40,0.25);
  padding: 5px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-head, 'Poppins', sans-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 16px; color: var(--text);
}
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* RTL section header */
[dir="rtl"] .section-header { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1); cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0D0E13; box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(196,154,40,0.4); filter: brightness(1.08); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border-soft); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-white { background: var(--bg-2); color: var(--bg); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37,211,102,0.4); }
.btn-full { width: 100%; justify-content: center; border-radius: 12px; }

/* ── Animations ── */
.animate-in {
  opacity: 0; transform: translateY(28px);
  animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0; transition: all 0.35s ease;
}
.navbar.scrolled {
  background: var(--navbar-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0; box-shadow: var(--shadow);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 42px; width: auto; object-fit: contain; }
.logo-svg { width: 50px; height: 34px; }
.logo-text {
  font-family: var(--font-head, 'Poppins', sans-serif);
  font-size: 1rem; color: var(--text); line-height: 1.2;
}
.logo-text strong { color: var(--gold); display: block; font-size: 1.05rem; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 7px 13px; border-radius: 8px; font-size: 0.86rem;
  font-weight: 500; color: var(--text-muted); transition: all 0.25s; position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%;
  transform: translateX(-50%); width: 0; height: 2px;
  background: var(--gold); border-radius: 1px; transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 55%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: #0D0E13 !important; font-weight: 700; margin-left: 8px; padding: 9px 18px;
}
[dir="rtl"] .nav-cta { margin-left: 0; margin-right: 8px; }
.nav-cta::after { display: none; }
.nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* Nav Controls */
.nav-controls { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.lang-toggle, .theme-toggle {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--bg-3); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; cursor: pointer;
}
.lang-toggle:hover, .theme-toggle:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(196,154,40,0.08);
}
.lang-label { font-size: 0.85rem; font-weight: 700; }
.nav-wa {
  width: 38px; height: 38px; border-radius: 10px;
  background: #25D366; border: none;
  color: #fff; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.nav-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37,211,102,0.4); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; border-radius: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between;
  padding: 120px 80px 80px;
  background: radial-gradient(ellipse at 20% 50%, rgba(196,154,40,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(196,154,40,0.04) 0%, transparent 50%),
              var(--bg);
}
[data-theme="light"] .hero {
  background: radial-gradient(ellipse at 20% 50%, rgba(196,154,40,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(196,154,40,0.04) 0%, transparent 50%),
              var(--bg);
}
.hero-particles { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(196,154,40,0.15);
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,154,40,0.10); border: 1px solid rgba(196,154,40,0.3);
  color: var(--gold); padding: 6px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-head, 'Poppins', sans-serif);
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900;
  line-height: 1.1; color: var(--text); margin-bottom: 24px;
}
.hero-subtitle { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 36px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; align-items: center;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 28px; width: fit-content;
}
.stat { text-align: center; padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-num { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat-label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Visual */
.hero-visual { position: relative; z-index: 2; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.hero-card-stack { position: relative; width: 440px; height: 440px; }
.hero-circle-main {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 190px; height: 190px; border-radius: 50%;
  background: var(--bg-3); border: 2px solid rgba(196,154,40,0.35);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(196,154,40,0.18); z-index: 3;
}
.circle-inner { text-align: center; }
.hero-logo-svg { width: 80px; height: 55px; }
.orbit { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; border: 1px dashed rgba(196,154,40,0.15); }
.orbit-1 { width: 280px; height: 280px; animation: spin 18s linear infinite; }
.orbit-2 { width: 390px; height: 390px; animation: spin 30s linear infinite reverse; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.floating-card {
  position: absolute; z-index: 4;
  background: var(--card-bg); border: 1px solid rgba(196,154,40,0.25);
  border-radius: 14px; padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600; color: var(--text);
  backdrop-filter: blur(10px); box-shadow: var(--shadow); white-space: nowrap;
}
.floating-card i { color: var(--gold); font-size: 1.1rem; }
.card-1 { top: 10%; left: -5%; animation: floatCard 4s ease-in-out infinite; }
.card-2 { top: 20%; right: 0; animation: floatCard 5s ease-in-out infinite 0.8s; }
.card-3 { bottom: 20%; left: -8%; animation: floatCard 4.5s ease-in-out infinite 1.5s; }
.card-4 { bottom: 10%; right: -2%; animation: floatCard 5.5s ease-in-out infinite 0.3s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.75rem; z-index: 5;
}
.scroll-mouse { width: 22px; height: 36px; border: 2px solid var(--text-muted); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-dot { width: 4px; height: 8px; background: var(--gold); border-radius: 2px; animation: scrollAnim 1.8s ease-in-out infinite; }
@keyframes scrollAnim { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about { background: var(--bg-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.about-img-wrap { position: relative; padding: 30px; }
.about-shape { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(196,154,40,0.06), transparent); }
.about-shape.shape-1 { width: 300px; height: 300px; top: -40px; left: -40px; }
.about-shape.shape-2 { width: 200px; height: 200px; bottom: -20px; right: -20px; }
.about-img-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 22px; padding: 36px; box-shadow: var(--shadow);
}
.about-icon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ai-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px 12px; border-radius: 14px;
  background: rgba(196,154,40,0.05); border: 1px solid var(--border);
  transition: all 0.3s;
}
.ai-item:hover { background: rgba(196,154,40,0.12); border-color: rgba(196,154,40,0.3); transform: translateY(-3px); }
.ai-item i { font-size: 1.6rem; color: var(--gold); }
.ai-item span { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); }
.about-award {
  position: absolute; bottom: -10px; right: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  color: #0D0E13; box-shadow: var(--shadow-gold);
}
.about-award i { font-size: 1.4rem; }
.about-award strong { display: block; font-size: 0.85rem; font-weight: 700; }
.about-award span { display: block; font-size: 0.72rem; opacity: 0.8; }
.about-desc { font-size: 1rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.about-director {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px; margin: 28px 0;
}
.director-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0D0E13; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; flex-shrink: 0;
}
.about-director strong { display: block; font-size: 1rem; color: var(--text); font-weight: 700; }
.about-director span { display: block; font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.director-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(196,154,40,0.1); color: var(--gold); border-radius: 4px; padding: 3px 10px; font-size: 0.73rem; font-weight: 600; margin-top: 6px; }
.about-bullets { display: flex; flex-direction: column; gap: 10px; }
.bullet-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text-muted); }
.bullet-item i { color: var(--gold); flex-shrink: 0; }
.mv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.mv-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 22px; padding: 36px 28px; transition: all 0.3s;
}
.mv-card:hover { border-color: rgba(196,154,40,0.35); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.mv-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(196,154,40,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.mv-icon i { font-size: 1.5rem; color: var(--gold); }
.mv-card h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.mv-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services { background: var(--bg); }
.services-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(196,154,40,0.05) 0%, transparent 65%); pointer-events: none; }
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.service-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 22px; padding: 36px; transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.service-card:hover { border-color: rgba(196,154,40,0.3); transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 64px; height: 64px; border-radius: 16px; background: rgba(196,154,40,0.08); border: 1px solid rgba(196,154,40,0.18); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: all 0.3s; }
.service-card:hover .service-icon { background: rgba(196,154,40,0.18); }
.service-icon i { font-size: 1.7rem; color: var(--gold); }
.service-card h3 { font-family: var(--font-head); font-size: 1.12rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-list li { display: flex; align-items: center; gap: 8px; font-size: 0.87rem; color: var(--text-muted); }
.service-list li i { color: var(--gold); font-size: 0.65rem; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 0.88rem; font-weight: 600; transition: gap 0.25s; }
.service-link:hover { gap: 10px; }

/* ══════════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════════ */
.products { background: var(--bg-2); }
.product-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 48px; }
.tab-btn { padding: 10px 22px; border-radius: 50px; background: var(--bg-3); border: 1px solid var(--border); color: var(--text-muted); font-size: 0.87rem; font-weight: 600; transition: all 0.25s; }
.tab-btn:hover { color: var(--text); border-color: rgba(196,154,40,0.3); }
.tab-btn.active { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #0D0E13; border-color: transparent; box-shadow: var(--shadow-gold); }
.product-panels { }
.product-panel { display: none; }
.product-panel.active { display: block; }
.product-panel-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.product-badge { display: inline-block; padding: 5px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.product-badge.erp { background: rgba(99,102,241,0.12); color: #818CF8; border: 1px solid rgba(99,102,241,0.2); }
.product-badge.salon { background: rgba(244,114,182,0.12); color: #F472B6; border: 1px solid rgba(244,114,182,0.2); }
.product-badge.school { background: rgba(34,197,94,0.12); color: #4ADE80; border: 1px solid rgba(34,197,94,0.2); }
.product-badge.restaurant { background: rgba(249,115,22,0.12); color: #FB923C; border: 1px solid rgba(249,115,22,0.2); }
.product-badge.laundry { background: rgba(14,165,233,0.12); color: #38BDF8; border: 1px solid rgba(14,165,233,0.2); }
.product-badge.prep { background: rgba(196,154,40,0.12); color: var(--gold); border: 1px solid rgba(196,154,40,0.2); }
.product-info h3 { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--text); margin-bottom: 14px; }
.product-info > p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.product-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.pf-item { display: flex; align-items: flex-start; gap: 14px; }
.pf-item > i { color: var(--gold); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.pf-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); }
.pf-item span { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 1px; }

/* Mockups */
.product-mockup { background: var(--bg-3); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.mockup-header { display: flex; align-items: center; gap: 6px; background: var(--bg-4); padding: 12px 18px; border-bottom: 1px solid var(--border); }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #FF5F57; } .dot.yellow { background: #FEBC2E; } .dot.green { background: #28C840; }
.mockup-title { font-size: 0.78rem; color: var(--text-muted); margin-left: 8px; font-weight: 500; }
.mockup-body { padding: 20px; }
.mock-stats { display: flex; gap: 12px; margin-bottom: 16px; }
.mock-stat { flex: 1; background: var(--bg-4); border-radius: 10px; padding: 14px 12px; text-align: center; }
.ms-val { display: block; font-size: 1.15rem; font-weight: 800; color: var(--gold); }
.ms-lab { display: block; font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; }
.mock-chart { background: var(--bg-4); border-radius: 10px; padding: 16px; margin-bottom: 14px; }
.bar-chart { display: flex; align-items: flex-end; gap: 8px; height: 80px; }
.bar { flex: 1; background: rgba(196,154,40,0.2); border-radius: 4px 4px 0 0; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 2px; }
.bar.active { background: linear-gradient(to top, var(--gold), var(--gold-light)); }
.bar span { font-size: 0.6rem; color: var(--text-muted); }
.mock-modules { display: flex; flex-wrap: wrap; gap: 8px; }
.mod-chip { padding: 5px 12px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; background: rgba(196,154,40,0.08); color: var(--gold); border: 1px solid var(--border); display: flex; align-items: center; gap: 5px; }
.cal-header { display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 14px; }
.cal-header span { color: var(--text); font-weight: 700; }
.cal-header i { color: var(--gold); cursor: pointer; }
.cal-slots { display: flex; flex-direction: column; gap: 8px; }
.cal-slot { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 10px; background: var(--bg-4); }
.cal-slot.booked { border-left: 3px solid var(--gold); }
.cal-slot.free { border-left: 3px solid #4ADE80; }
.slot-time { font-size: 0.75rem; color: var(--text-muted); width: 36px; flex-shrink: 0; }
.slot-name { flex: 1; font-size: 0.82rem; font-weight: 600; color: var(--text); }
.slot-srv { font-size: 0.72rem; color: var(--gold); }
.school-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 14px; }
.school-stat-card { background: var(--bg-4); border-radius: 10px; padding: 14px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.school-stat-card i { color: var(--gold); font-size: 1.1rem; }
.ssv { font-size: 1.2rem; font-weight: 800; color: var(--text); }
.ssl { font-size: 0.68rem; color: var(--text-muted); }
.school-notice { background: rgba(196,154,40,0.08); border: 1px solid rgba(196,154,40,0.2); border-radius: 8px; padding: 10px 14px; font-size: 0.76rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.school-notice i { color: var(--gold); flex-shrink: 0; }
.orders-list { display: flex; flex-direction: column; gap: 8px; }
.order-row { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; background: var(--bg-4); font-size: 0.8rem; }
.order-id { width: 44px; font-weight: 700; color: var(--text-muted); flex-shrink: 0; }
.order-type { flex: 1; font-weight: 600; color: var(--text); }
.order-items { color: var(--text-muted); font-size: 0.72rem; }
.order-status { padding: 3px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.new-badge { background: rgba(99,102,241,0.18); color: #818CF8; }
.cooking-badge { background: rgba(249,115,22,0.18); color: #FB923C; }
.ready-badge { background: rgba(34,197,94,0.18); color: #4ADE80; }
.done-badge { background: rgba(100,100,100,0.18); color: #888; }
.laundry-summary { display: flex; gap: 10px; margin-bottom: 14px; }
.ls-card { flex: 1; background: var(--bg-4); border-radius: 10px; padding: 14px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.ls-card i { color: var(--gold); font-size: 1.1rem; }
.ls-num { font-size: 1.3rem; font-weight: 800; color: var(--text); }
.ls-lab { font-size: 0.65rem; color: var(--text-muted); }
.laundry-order { background: var(--bg-4); border-radius: 8px; padding: 10px 14px; font-size: 0.76rem; color: var(--text-muted); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.laundry-order i { color: var(--gold); }
.prep-score { display: flex; align-items: center; gap: 24px; }
.score-circle { position: relative; width: 110px; height: 110px; flex-shrink: 0; }
.score-circle svg { width: 100%; height: 100%; }
.score-val { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 1.4rem; font-weight: 800; color: var(--gold); text-align: center; line-height: 1; }
.score-val span { display: block; font-size: 0.65rem; color: var(--text-muted); font-weight: 500; }
.score-breakdown { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.sb-row { display: flex; align-items: center; gap: 8px; font-size: 0.73rem; }
.sb-row span:first-child { width: 56px; color: var(--text-muted); flex-shrink: 0; }
.sb-row span:last-child { width: 24px; color: var(--gold); font-weight: 700; flex-shrink: 0; text-align: right; }
.sb-bar { flex: 1; height: 6px; background: rgba(196,154,40,0.15); border-radius: 3px; overflow: hidden; }
.sb-bar div { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 3px; }

/* ══════════════════════════════════════════════
   MARKETING
══════════════════════════════════════════════ */
.marketing { background: var(--bg); }
.marketing-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(196,154,40,0.04) 0%, transparent 60%); pointer-events: none; }
.marketing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 60px; }
.marketing-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: 22px; padding: 32px 24px; transition: all 0.3s; opacity: 0; transform: translateY(24px); }
.marketing-card.visible { opacity: 1; transform: translateY(0); }
.marketing-card:hover { border-color: rgba(196,154,40,0.3); transform: translateY(-4px); box-shadow: var(--shadow); }
.mk-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(196,154,40,0.08); border: 1px solid rgba(196,154,40,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: all 0.3s; }
.marketing-card:hover .mk-icon { background: rgba(196,154,40,0.18); }
.mk-icon i { font-size: 1.4rem; color: var(--gold); }
.marketing-card h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.marketing-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }
.smm-process { background: var(--bg-3); border: 1px solid var(--border); border-radius: 22px; padding: 48px; }
.smm-process h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--text); text-align: center; margin-bottom: 40px; }
.process-steps { display: flex; align-items: flex-start; gap: 16px; overflow-x: auto; padding-bottom: 8px; }
.process-step { flex: 1; min-width: 160px; }
.ps-num { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: rgba(196,154,40,0.25); margin-bottom: 12px; line-height: 1; }
.process-step h5 { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.ps-arrow { color: var(--gold); opacity: 0.35; margin-top: 32px; font-size: 0.9rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   CLIENTS
══════════════════════════════════════════════ */
.clients { background: var(--bg-2); }
.clients-marquee-wrap { overflow: hidden; margin-bottom: 48px; }
.clients-marquee { display: flex; }
.marquee-track { display: flex; gap: 16px; flex-shrink: 0; animation: marqueeAnim 35s linear infinite; }
@keyframes marqueeAnim { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
[dir="rtl"] .marquee-track { animation: marqueeAnimRtl 35s linear infinite; }
@keyframes marqueeAnimRtl { 0% { transform: translateX(0); } 100% { transform: translateX(100%); } }
.clients-marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.client-logo-item { flex-shrink: 0; height: 64px; padding: 0 24px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 14px; display: flex; align-items: center; transition: all 0.25s; white-space: nowrap; }
.client-logo-item:hover { border-color: rgba(196,154,40,0.3); background: rgba(196,154,40,0.05); }
.client-logo-item span { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.clients-cta { text-align: center; }
.clients-cta p { font-size: 1rem; color: var(--text-muted); margin-bottom: 20px; }
.clients-cta strong { color: var(--gold); }

/* ══════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════ */
.cta-banner { position: relative; overflow: hidden; padding: 80px 0; background: var(--bg-3); }
.cta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(196,154,40,0.10) 0%, rgba(196,154,40,0.03) 50%, transparent 100%); pointer-events: none; }
.cta-content { text-align: center; position: relative; z-index: 2; }
.cta-content h2 { font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 800; color: var(--text); margin-bottom: 16px; }
.cta-content p { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: 22px; padding: 36px; margin-bottom: 20px; }
.ci-item { display: flex; align-items: flex-start; gap: 16px; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--border); }
.ci-item:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.ci-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(196,154,40,0.08); border: 1px solid rgba(196,154,40,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon i { color: var(--gold); font-size: 1rem; }
.ci-item strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.ci-item a, .ci-item span { display: block; font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.ci-item a:hover { color: var(--gold); }

/* WhatsApp CTA Card */
.wa-cta-card {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(37,211,102,0.05));
  border: 1px solid rgba(37,211,102,0.25); border-radius: 14px;
  padding: 18px 20px; margin-bottom: 20px; transition: all 0.3s;
}
.wa-cta-card:hover { border-color: #25D366; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.15); }
.wa-cta-icon { width: 46px; height: 46px; border-radius: 12px; background: #25D366; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-cta-icon i { color: #fff; font-size: 1.4rem; }
.wa-cta-card strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--text); }
.wa-cta-card span { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.wa-cta-arrow { margin-left: auto; color: var(--text-muted); font-size: 0.8rem; }
[dir="rtl"] .wa-cta-arrow { margin-left: 0; margin-right: auto; transform: rotate(180deg); }

.social-links { display: flex; gap: 12px; }
.social-btn { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 1rem; transition: all 0.25s; }
.social-btn:hover { background: rgba(196,154,40,0.08); border-color: rgba(196,154,40,0.3); color: var(--gold); }

/* Form */
.contact-form-wrap { background: var(--bg-3); border: 1px solid var(--border); border-radius: 22px; padding: 40px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--input-bg); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 13px 16px;
  color: var(--text); font-family: var(--font-main, 'Inter', sans-serif);
  font-size: 0.9rem; transition: border-color 0.25s, box-shadow 0.25s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,154,40,0.08); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); opacity: 0.7; }
.form-group select option { background: var(--bg-3); }
[dir="rtl"] .form-group input, [dir="rtl"] .form-group select, [dir="rtl"] .form-group textarea { text-align: right; }
.form-alert { padding: 14px 18px; border-radius: 10px; font-size: 0.88rem; font-weight: 500; }
.form-alert.success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); color: #4ADE80; }
.form-alert.error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); color: #F87171; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-note i { color: var(--gold); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer { background: var(--bg-2); }
.footer-top { padding: 72px 0 56px; border-bottom: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.9rem; transition: all 0.25s; }
.footer-socials a:hover { background: rgba(196,154,40,0.08); color: var(--gold); border-color: rgba(196,154,40,0.3); }
.footer-col h5 { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.83rem; color: var(--text-muted); }
.footer-contact-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.78rem; }
.footer-contact-list li a:hover { color: var(--gold); }
.footer-bottom { padding: 20px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════════ */
/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  border-radius: 50px; padding: 14px 18px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all 0.3s; text-decoration: none;
  font-weight: 600; font-size: 0.9rem;
  overflow: hidden; max-width: 62px;
}
.whatsapp-float:hover { max-width: 220px; box-shadow: 0 10px 36px rgba(37,211,102,0.5); transform: translateY(-2px); }
.whatsapp-float i { font-size: 1.4rem; flex-shrink: 0; }
.wa-float-tooltip { white-space: nowrap; overflow: hidden; transition: all 0.3s; opacity: 0; }
.whatsapp-float:hover .wa-float-tooltip { opacity: 1; }
[dir="rtl"] .whatsapp-float { left: auto; right: 28px; }

/* Back to Top */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0D0E13; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold); transition: all 0.3s;
  opacity: 0; pointer-events: none; transform: translateY(10px);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); filter: brightness(1.1); }
[dir="rtl"] .back-to-top { right: auto; left: 28px; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { flex-direction: column; padding: 120px 40px 100px; text-align: center; min-height: auto; gap: 60px; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .mv-grid { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .product-panel-inner { grid-template-columns: 1fr; }
  .product-visual { display: none; }
  .marketing-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links {
    display: none; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg); flex-direction: column;
    align-items: center; justify-content: center;
    gap: 16px; z-index: 998; padding-top: 80px;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.2rem; }
  .hamburger { display: flex; }
  .hero { padding: 100px 24px 80px; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 12px; padding: 16px; }
  .stat-divider { width: 80px; height: 1px; }
  .form-row { grid-template-columns: 1fr; }
  .marketing-grid { grid-template-columns: 1fr; }
  .product-tabs { gap: 8px; }
  .tab-btn { padding: 8px 14px; font-size: 0.8rem; }
  .smm-process { padding: 24px 20px; }
  .process-steps { flex-direction: column; gap: 20px; }
  .ps-arrow { transform: rotate(90deg); align-self: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-scroll-indicator { display: none; }
  .nav-controls { gap: 6px; }
  .contact-form-wrap { padding: 24px; }
  .whatsapp-float { bottom: 88px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { width: 100%; }
  .lang-toggle, .theme-toggle, .nav-wa { width: 34px; height: 34px; }
}

/* ══════════════════════════════════════════════
   RTL OVERRIDES
══════════════════════════════════════════════ */
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-actions { flex-direction: row-reverse; }
[dir="rtl"] .hero-stats { flex-direction: row-reverse; }
[dir="rtl"] .about-content { text-align: right; }
[dir="rtl"] .about-director { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .about-bullets { align-items: flex-end; }
[dir="rtl"] .bullet-item { flex-direction: row-reverse; }
[dir="rtl"] .service-card { text-align: right; }
[dir="rtl"] .service-card::before { transform-origin: right; }
[dir="rtl"] .service-list li { flex-direction: row-reverse; }
[dir="rtl"] .service-link { flex-direction: row-reverse; }
[dir="rtl"] .pf-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .mv-card { text-align: right; }
[dir="rtl"] .product-info { text-align: right; }
[dir="rtl"] .marketing-card { text-align: right; }
[dir="rtl"] .process-steps { flex-direction: row-reverse; }
[dir="rtl"] .ps-arrow { transform: rotate(180deg); }
[dir="rtl"] .ci-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .contact-info { text-align: right; }
[dir="rtl"] .social-links { flex-direction: row-reverse; }
[dir="rtl"] .footer-col { text-align: right; }
[dir="rtl"] .footer-brand { text-align: right; }
[dir="rtl"] .footer-contact-list li { flex-direction: row-reverse; }
[dir="rtl"] .footer-socials { flex-direction: row-reverse; }
[dir="rtl"] .footer-bottom .container { flex-direction: row-reverse; }
[dir="rtl"] .about-award { right: auto; left: 0; }
[dir="rtl"] .smm-process h3 { text-align: center; }
[dir="rtl"] @media (max-width: 768px) { .ps-arrow { transform: rotate(-90deg); } }
