/* ============================================================
   YELLOW MOON — واجهة الموقع
   ============================================================ */

:root {
  --yellow: #fcd50f;
  --yellow-dim: rgba(252, 213, 15, 0.15);
  --yellow-glow: rgba(252, 213, 15, 0.35);
  --black: #000;
  --dark: #0a0a0a;
  --dark-2: #111;
  --dark-3: #1a1a1a;
  --dark-4: #222;
  --gray: #888;
  --gray-light: #aaa;
  --white: #fff;

  --font-display: 'Amiri', 'Cormorant Garamond', serif;
  --font-body: 'IBM Plex Sans Arabic', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
  --radius: 4px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; }
a { text-decoration: none; }
::selection { background: var(--yellow); color: #000; }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 3px; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 2px; }

.text-yellow { color: var(--yellow) !important; }
.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 70px 0; }
.mono { font-family: var(--font-mono); }

/* ── مؤشر الفأرة المخصص ─────────────────────────────────── */
#cursor-dot, #cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
}
#cursor-dot { width: 8px; height: 8px; background: var(--yellow); transition: width .3s, height .3s; }
#cursor-ring { width: 36px; height: 36px; border: 1.5px solid var(--yellow); opacity: .6; z-index: 99998; transition: width .3s, height .3s, opacity .3s; }
body.cursor-hover #cursor-dot { width: 14px; height: 14px; }
body.cursor-hover #cursor-ring { width: 52px; height: 52px; opacity: 1; }
@media (hover: none) { #cursor-dot, #cursor-ring { display: none; } }

/* ── حركة الظهور عند التمرير ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

.gold-line { display: inline-block; width: 60px; height: 2px; background: var(--yellow); margin-bottom: 18px; }

/* ── الشريط العلوي ──────────────────────────────────────── */
#mainNav {
  background: transparent;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  z-index: 1050;
}
#mainNav.scrolled {
  background: rgba(0, 0, 0, .96);
  backdrop-filter: blur(18px);
  padding: 10px 0;
  box-shadow: 0 2px 40px rgba(0, 0, 0, .7);
}

.navbar-brand { padding: 0; display: flex; align-items: center; }
.navbar-brand img {
  height: 46px; width: auto; display: block;
  filter: drop-shadow(0 0 22px rgba(252, 213, 15, .35));
  transition: height var(--transition);
}
#mainNav.scrolled .navbar-brand img { height: 38px; }

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, .8) !important;
  font-size: .88rem; font-weight: 500; letter-spacing: .02em;
  padding: 6px 16px !important; position: relative;
  transition: color var(--transition-fast);
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute; bottom: 0; right: 50%;
  width: 0; height: 1.5px; background: var(--yellow);
  transition: all var(--transition-fast); transform: translateX(50%);
}
.navbar-nav .nav-link:hover { color: var(--yellow) !important; }
.navbar-nav .nav-link:hover::after { width: 60%; }

.nav-cta {
  background: var(--yellow); color: var(--black) !important;
  padding: 9px 22px !important; border-radius: 2px; font-weight: 600;
  transition: all var(--transition-fast) !important;
}
.nav-cta:hover { background: #fff !important; color: var(--black) !important; }
.nav-cta::after { display: none !important; }

.navbar-toggler { border: 1px solid var(--yellow); border-radius: 2px; padding: 6px 10px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fcd50f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
@media (max-width: 991px) {
  .navbar-collapse { background: rgba(0, 0, 0, .98); margin-top: 12px; padding: 18px; border-top: 1px solid var(--yellow-dim); }
}

/* ── الواجهة الرئيسية ───────────────────────────────────── */
#hero { min-height: 100svh; position: relative; display: flex; align-items: center; overflow: hidden; }

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.7) 100%),
    linear-gradient(225deg, rgba(252,213,15,.08) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.88) 100%),
    var(--hero-img, linear-gradient(160deg, #1a1a1a, #000)) center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0; opacity: .4; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.hero-particles { position: absolute; inset: 0; overflow: hidden; z-index: 1; }
.particle {
  position: absolute; width: 2px; height: 2px; background: var(--yellow);
  border-radius: 50%; opacity: 0;
  animation: floatUp var(--dur, 8s) var(--delay, 0s) infinite ease-in;
}
@keyframes floatUp {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  10% { opacity: .8; } 90% { opacity: .4; }
  100% { opacity: 0; transform: translateY(-100vh) scale(.3); }
}

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow-dim); border: 1px solid var(--yellow-glow);
  color: var(--yellow); font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  padding: 7px 18px; border-radius: 2px; margin-bottom: 26px;
  animation: fadeInDown .8s ease both;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400; line-height: 1.15; letter-spacing: -.01em;
  animation: fadeInUp 1s .2s ease both;
}
.hero-headline em { font-style: normal; font-weight: 700; color: var(--yellow); display: block; }

.hero-sub {
  font-size: 1.02rem; color: rgba(255, 255, 255, .68); font-weight: 300;
  max-width: 520px; line-height: 2; margin-top: 20px;
  animation: fadeInUp 1s .4s ease both;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 40px; animation: fadeInUp 1s .6s ease both; }

.btn-primary-lum, .btn-ghost-lum {
  font-family: var(--font-body); font-size: .9rem; font-weight: 600;
  padding: 15px 34px; border-radius: 2px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all var(--transition-fast); border: 1px solid transparent;
}
.btn-primary-lum { background: var(--yellow); color: var(--black); position: relative; overflow: hidden; }
.btn-primary-lum::before {
  content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, .12);
  transform: translateX(100%); transition: transform var(--transition-fast);
}
.btn-primary-lum:hover::before { transform: translateX(0); }
.btn-primary-lum:hover { color: var(--black); transform: translateY(-2px); box-shadow: 0 12px 35px var(--yellow-glow); }
.btn-primary-lum span, .btn-primary-lum i { position: relative; z-index: 1; }
.btn-ghost-lum { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .3); font-weight: 500; }
.btn-ghost-lum:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }

.hero-stats { position: absolute; bottom: 50px; left: 0; z-index: 2; animation: fadeInLeft 1s .8s ease both; }
.stat-item { text-align: left; padding: 14px 36px; border-left: 2px solid var(--yellow); margin-bottom: 4px; }
.stat-num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--yellow); line-height: 1; }
.stat-label { font-size: .74rem; letter-spacing: .06em; color: rgba(255, 255, 255, .5); margin-top: 4px; }
@media (max-width: 991px) { .hero-stats { display: none; } }

.hero-scroll {
  position: absolute; bottom: 34px; right: 50%; transform: translateX(50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeIn 1s 1.2s ease both;
}
.hero-scroll span { font-size: .7rem; letter-spacing: .12em; color: rgba(255, 255, 255, .5); }
.scroll-line { width: 1px; height: 46px; background: linear-gradient(to bottom, rgba(255,255,255,.45), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { height: 46px; opacity: .5; } 50% { height: 60px; opacity: 1; } }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: none; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── الشريط المتحرك ─────────────────────────────────────── */
.marquee-wrapper { background: var(--yellow); padding: 13px 0; overflow: hidden; }
.marquee-track { display: flex; white-space: nowrap; width: max-content; animation: ticker 34s linear infinite; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 18px; padding: 0 30px;
  font-size: .82rem; font-weight: 600; color: var(--black);
}
.marquee-item i { font-size: .5rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(50%); } }

/* ── عناوين الأقسام ─────────────────────────────────────── */
.section-label { font-size: .78rem; font-weight: 600; letter-spacing: .08em; color: var(--yellow); margin-bottom: 12px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 400; line-height: 1.25; }
.section-title strong { font-weight: 700; color: var(--yellow); }
.section-desc { color: var(--gray-light); font-size: .97rem; line-height: 2; max-width: 540px; margin-top: 14px; }

/* ── المزايا ────────────────────────────────────────────── */
#features { background: var(--dark-2); }
.feature-card {
  background: var(--dark-3); border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--radius); padding: 36px 30px; height: 100%;
  position: relative; overflow: hidden; transition: all var(--transition);
}
.feature-card::before {
  content: ''; position: absolute; bottom: 0; right: 0; width: 100%; height: 2px;
  background: var(--yellow); transform: scaleX(0); transform-origin: right;
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--yellow-dim); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 54px; height: 54px; background: var(--yellow-dim); border: 1px solid var(--yellow-glow);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: all var(--transition-fast);
}
.feature-icon i { color: var(--yellow); font-size: 1.2rem; transition: color var(--transition-fast); }
.feature-card:hover .feature-icon { background: var(--yellow); }
.feature-card:hover .feature-icon i { color: var(--black); }
.feature-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.feature-text { color: var(--gray); font-size: .9rem; line-height: 1.9; }

/* ── المنتجات ───────────────────────────────────────────── */
#products { background: var(--dark); }

.cat-pills { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 26px; }
.cat-pill {
  background: var(--dark-3); border: 1px solid rgba(255, 255, 255, .08);
  color: var(--gray-light); font-family: var(--font-body); font-size: .82rem; font-weight: 500;
  padding: 8px 20px; border-radius: 2px; cursor: pointer; transition: all var(--transition-fast);
}
.cat-pill:hover, .cat-pill.active { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

.search-line {
  display: flex; align-items: center; gap: 10px; margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, .1); border-radius: 2px;
  background: var(--dark-3); padding: 4px 16px;
}
.search-line i { color: var(--yellow); }
.search-line input {
  flex: 1; background: none; border: 0; color: var(--white);
  font-family: var(--font-body); font-size: .95rem; padding: 11px 0; outline: none;
}
.search-line input::placeholder { color: #5c5c5c; }

.products-grid { margin-top: 46px; }

.product-card {
  background: var(--dark-3); border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius); overflow: hidden; height: 100%;
  display: flex; flex-direction: column; transition: all var(--transition); cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px); border-color: var(--yellow-glow);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 0 1px var(--yellow-dim);
}
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s cubic-bezier(.25,.46,.45,.94); }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-img-empty { width: 100%; height: 100%; background: repeating-linear-gradient(45deg, #141414, #141414 12px, #101010 12px, #101010 24px); }

.product-img-overlay {
  position: absolute; inset: 0; background: rgba(0, 0, 0, .5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition-fast);
}
.product-card:hover .product-img-overlay { opacity: 1; }
.overlay-icon {
  width: 54px; height: 54px; background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: scale(.7); transition: transform var(--transition-fast);
}
.product-card:hover .overlay-icon { transform: scale(1); }
.overlay-icon i { color: var(--black); font-size: 1.2rem; }

.product-badge {
  position: absolute; top: 14px; right: 14px; z-index: 1;
  background: var(--yellow); color: var(--black);
  font-size: .68rem; font-weight: 700; padding: 4px 11px; border-radius: 2px;
}
.product-shots {
  position: absolute; bottom: 14px; right: 14px; z-index: 1;
  background: rgba(0, 0, 0, .65); backdrop-filter: blur(6px);
  color: #ddd; font-family: var(--font-mono); font-size: .68rem;
  padding: 4px 10px; border-radius: 2px;
}

.product-body { padding: 22px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 14px; }
.product-category { font-size: .72rem; font-weight: 600; letter-spacing: .06em; color: var(--yellow); margin-bottom: 6px; }
.product-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; line-height: 1.5; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.product-code { font-family: var(--font-mono); font-size: .78rem; color: var(--gray-light); letter-spacing: .04em; }
.product-meta { font-size: .8rem; color: var(--gray); }
.btn-view-product {
  width: 38px; height: 38px; min-width: 38px; background: var(--dark-4);
  border: 1px solid rgba(255, 255, 255, .1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-light); font-size: .85rem; transition: all var(--transition-fast);
}
.product-card:hover .btn-view-product { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

.no-results { text-align: center; color: var(--gray); padding: 70px 0; }
.no-results i { font-size: 2.4rem; color: var(--dark-4); display: block; margin-bottom: 14px; }

/* ── صفحة تفاصيل المنتج ─────────────────────────────────── */
.detail {
  position: fixed; inset: 0; z-index: 9990; background: var(--dark);
  opacity: 0; visibility: hidden; transform: translateY(2%);
  transition: opacity .45s var(--transition), transform .45s cubic-bezier(.25,.46,.45,.94), visibility .45s;
  overscroll-behavior: contain;
}
.detail.open { opacity: 1; visibility: visible; transform: none; }
.detail-scroll { height: 100%; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.detail-close {
  position: fixed; z-index: 3; left: 20px; top: max(18px, env(safe-area-inset-top));
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(20, 20, 20, .9); backdrop-filter: blur(10px); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-fast);
}
.detail-close:hover { background: var(--yellow); color: #000; border-color: var(--yellow); transform: rotate(90deg); }

.dt-head { padding-top: 90px; }
.dt-name { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; line-height: 1.3; }
.dt-desc { color: var(--gray-light); font-size: 1rem; line-height: 2.1; white-space: pre-line; margin-top: 14px; }

.dt-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.dt-shot { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.07); background: var(--dark-3); aspect-ratio: 4/3; position: relative; padding: 0; }
.dt-shot:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
.dt-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--transition); }
.dt-shot:hover img { transform: scale(1.05); }
.dt-shot::after {
  content: '\F4A1'; font-family: 'bootstrap-icons'; position: absolute; bottom: 12px; left: 12px;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.6); border-radius: 50%; color: var(--yellow); font-size: .9rem;
  opacity: 0; transition: opacity var(--transition-fast);
}
.dt-shot:hover::after { opacity: 1; }

.dt-panel { background: var(--dark-2); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-lg); padding: 24px; }
.dt-panel + .dt-panel { margin-top: 16px; }
.dt-panel h4 { font-size: .78rem; font-weight: 600; letter-spacing: .1em; color: var(--yellow); margin-bottom: 16px; }
.size-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px dashed rgba(255,255,255,.08); }
.size-row:last-child { border-bottom: 0; padding-bottom: 0; }
.size-row b { font-weight: 500; font-size: .95rem; }
.size-row span { font-family: var(--font-mono); font-size: .82rem; color: var(--gray-light); direction: ltr; }
.dt-code { font-family: var(--font-mono); font-size: 1.1rem; color: var(--yellow); letter-spacing: .06em; }

@media (min-width: 992px) { .dt-side { position: sticky; top: 100px; } }

/* ── معرض الصور المكبّر ─────────────────────────────────── */
#lightbox {
  position: fixed; inset: 0; background: rgba(0, 0, 0, .97); z-index: 9999;
  display: grid; grid-template-rows: 1fr auto;
  opacity: 0; pointer-events: none; transition: opacity .35s ease; touch-action: none;
}
#lightbox.open { opacity: 1; pointer-events: all; }
.lb-stage { position: relative; display: grid; place-items: center; overflow: hidden; padding: max(70px, env(safe-area-inset-top)) 14px 10px; }
.lb-stage img {
  max-width: 100%; max-height: 100%; object-fit: contain; border-radius: var(--radius);
  transform-origin: center; will-change: transform; user-select: none; -webkit-user-drag: none;
  transition: transform .32s cubic-bezier(.25,.46,.45,.94), opacity .25s;
}
.lb-btn {
  position: absolute; z-index: 4; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .08);
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-fast);
}
.lb-btn:hover { background: var(--yellow); color: #000; border-color: var(--yellow); }
.lb-close { top: max(16px, env(safe-area-inset-top)); left: 16px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); }
.lb-prev { right: 16px; }
.lb-next { left: 16px; }
.lb-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 20px calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .8rem; color: var(--gray-light);
}
.lb-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: #fff; }
.lb-count { font-family: var(--font-mono); }
@media (max-width: 767px) { .lb-prev, .lb-next { display: none; } .lb-hint { display: none; } }

/* ── من نحن ─────────────────────────────────────────────── */
#about { background: var(--dark-2); overflow: hidden; }
.about-img-block { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.about-img-inset {
  position: absolute; bottom: -30px; left: -30px; width: 55%; aspect-ratio: 1/1;
  object-fit: cover; border-radius: var(--radius-lg); border: 6px solid var(--dark-2);
}
.about-badge {
  position: absolute; top: 28px; right: -18px; background: var(--yellow); color: var(--black);
  padding: 18px 22px; border-radius: var(--radius); font-family: var(--font-display);
  font-size: .9rem; font-weight: 700; line-height: 1.4; text-align: center;
  box-shadow: 0 16px 40px rgba(252, 213, 15, .25);
}
.about-badge strong { display: block; font-size: 2rem; }

.about-list { margin-top: 26px; }
.about-list-item { display: flex; align-items: flex-start; gap: 14px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.about-list-item:last-child { border-bottom: 0; }
.about-check {
  width: 26px; height: 26px; min-width: 26px; background: var(--yellow-dim);
  border: 1px solid var(--yellow-glow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); font-size: .7rem; margin-top: 4px;
}
.about-list-text strong { display: block; font-size: .96rem; font-weight: 600; margin-bottom: 2px; }
.about-list-text span { font-size: .88rem; color: var(--gray); }

/* ── آراء الزبائن ───────────────────────────────────────── */
#voices { background: var(--dark); }
.voices-rail {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 2px 20px; scrollbar-width: none; margin-top: 36px;
}
.voices-rail::-webkit-scrollbar { display: none; }
.voice {
  flex: 0 0 min(86vw, 340px); scroll-snap-align: start;
  background: var(--dark-3); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg); padding: 20px;
  display: flex; flex-direction: column; gap: 13px;
  transition: all var(--transition);
}
.voice:hover { border-color: var(--yellow-glow); transform: translateY(-5px); }
.voice-shot { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; padding: 0; border: 0; background: none; }
.voice-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--transition); }
.voice-shot:hover img { transform: scale(1.06); }
.stars { display: flex; gap: 3px; color: #2e2e2e; font-size: .95rem; }
.stars i.on { color: var(--yellow); }
.voice-text { font-size: .95rem; color: #c9c9c9; flex: 1; line-height: 1.9; }
.voice-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.06); font-size: .86rem; }
.voice-foot b { font-weight: 600; }
.voice-foot span { font-family: var(--font-mono); font-size: .72rem; color: var(--yellow); }

/* ── تواصل ──────────────────────────────────────────────── */
#contact { background: var(--dark-2); }
.contact-card {
  background: var(--dark-3); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg); padding: 38px 26px; height: 100%;
  text-align: center; transition: all var(--transition);
}
.contact-card:hover { border-color: var(--yellow-glow); transform: translateY(-4px); }
.contact-icon {
  width: 62px; height: 62px; background: var(--yellow-dim); border: 1px solid var(--yellow-glow);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.35rem; color: var(--yellow);
}
.contact-title { font-size: .78rem; font-weight: 600; letter-spacing: .08em; color: var(--gray); margin-bottom: 8px; }
.contact-value { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--white); display: block; transition: color var(--transition-fast); }
a.contact-value:hover { color: var(--yellow); }
.contact-sub { font-size: .85rem; color: var(--gray); }

.whatsapp-cta {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: var(--radius-lg); padding: 46px 32px; text-align: center;
  margin-top: 40px; position: relative; overflow: hidden;
}
.whatsapp-cta::before {
  content: '\F618'; font-family: 'bootstrap-icons'; position: absolute;
  left: -20px; top: -30px; font-size: 12rem; opacity: .07; color: #fff;
}
.whatsapp-cta h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; position: relative; }
.whatsapp-cta p { color: rgba(255, 255, 255, .85); font-size: .95rem; margin-top: 8px; position: relative; }
.btn-whatsapp {
  background: #fff; color: #128c7e; font-weight: 700; font-size: .92rem;
  padding: 15px 38px; border-radius: 2px; margin-top: 20px;
  display: inline-flex; align-items: center; gap: 10px; position: relative;
  transition: all var(--transition-fast);
}
.btn-whatsapp:hover { background: var(--yellow); color: var(--black); transform: translateY(-2px); }

.social-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.social-link {
  width: 46px; height: 46px; background: var(--dark-3); border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gray-light); font-size: 1.05rem; transition: all var(--transition-fast);
}
.social-link:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); transform: translateY(-3px); }

/* ── التذييل ────────────────────────────────────────────── */
footer { background: var(--black); padding: 54px 0 26px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-logo { height: 54px; width: auto; filter: drop-shadow(0 0 24px rgba(252,213,15,.3)); }
.footer-desc { color: var(--gray); font-size: .9rem; line-height: 1.9; margin-top: 16px; max-width: 320px; }
.footer-heading { font-size: .8rem; font-weight: 600; letter-spacing: .08em; color: var(--yellow); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: var(--gray); font-size: .9rem; display: inline-flex; align-items: center; gap: 8px; transition: color var(--transition-fast); }
.footer-links a i { font-size: .8rem; color: var(--yellow); }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); margin-top: 36px; padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-copy { color: var(--gray); font-size: .84rem; }
.footer-copy span { color: var(--yellow); }

/* ── زر العودة للأعلى ───────────────────────────────────── */
#backTop {
  position: fixed; bottom: 30px; left: 24px; width: 48px; height: 48px;
  background: var(--yellow); border: 0; border-radius: 50%; color: var(--black);
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  z-index: 900; opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: all var(--transition-fast); box-shadow: 0 8px 24px var(--yellow-glow);
}
#backTop.visible { opacity: 1; transform: none; pointer-events: all; }
#backTop:hover { background: #fff; }

/* ── هاتف ───────────────────────────────────────────────── */
@media (max-width: 767px) {
  .section-pad { padding: 70px 0; }
  .section-pad-sm { padding: 50px 0; }
  .about-img-inset { display: none; }
  .about-badge { right: 10px; }
  .contact-card { padding: 28px 20px; }
  .hero-actions .btn-primary-lum, .hero-actions .btn-ghost-lum { flex: 1 1 100%; justify-content: center; }
  .dt-gallery { gap: 8px; }
  .dt-head { padding-top: 78px; }
  .whatsapp-cta h3 { font-size: 1.5rem; }
  #backTop { bottom: 20px; left: 16px; width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .1s !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
