/* FlashGo — black + electric yellow */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Tajawal:wght@400;500;700;800;900&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-2: #141414;
  --bg-3: #1c1c1c;
  --line: #2a2a2a;
  --line-2: #3a3a3a;
  --ink: #ffffff;
  --ink-2: #d4d4d4;
  --ink-3: #8a8a8a;
  --ink-4: #5a5a5a;
  --yellow: #FFD60A;
  --yellow-2: #F4C300;
  --yellow-3: #C99A00;
  --yellow-bg: rgba(255, 214, 10, 0.08);
  --yellow-border: rgba(255, 214, 10, 0.35);
  --whatsapp: #25D366;
  --whatsapp-2: #1da851;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  --shadow-glow: 0 0 0 1px rgba(255, 214, 10, 0.18), 0 30px 80px -30px rgba(255, 214, 10, 0.35);
  --shadow-card: 0 1px 0 rgba(255,255,255,0.03) inset, 0 20px 40px -20px rgba(0,0,0,0.6);

  --font-ar: 'Tajawal', 'Cairo', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ar);
  font-feature-settings: "ss01", "kern";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html { direction: rtl; }
body { overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

/* Latin numerals look right in tabular contexts */
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* Gridded background pattern, very subtle */
.grid-bg {
  background-image:
    linear-gradient(rgba(255, 214, 10, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 214, 10, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* Reusable */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--yellow-border);
  background: var(--yellow-bg);
  border-radius: var(--r-pill);
  color: var(--yellow);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.02em;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 214, 10, 0.18);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 214, 10, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(255, 214, 10, 0.05); }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 16px;
  transition: transform 120ms ease, background 200ms ease, box-shadow 200ms ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn-primary {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 12px 30px -10px rgba(255, 214, 10, 0.55);
}
.btn-primary:hover {
  background: #fff;
  box-shadow: 0 18px 40px -10px rgba(255, 214, 10, 0.7);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #052e1a;
}
.btn-whatsapp:hover { background: #2ee574; }

.btn-ghost {
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink);
  padding: 13px 21px;
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

/* Lightning shapes */
.bolt {
  display: inline-block;
  width: 1em; height: 1em;
  fill: var(--yellow);
}

/* Section spacing */
section { padding: 96px 0; position: relative; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.section-head {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; margin-bottom: 56px; text-align: center;
}
.section-head h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-head p {
  color: var(--ink-3);
  font-size: 18px;
  max-width: 640px;
}
.h-yellow { color: var(--yellow); }

/* Cards (yellow-bordered, like the flyer) */
.flash-card {
  border: 1px solid var(--yellow-border);
  background: linear-gradient(180deg, rgba(255, 214, 10, 0.03), rgba(255, 214, 10, 0));
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}
.flash-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255, 214, 10, 0.06), rgba(255, 214, 10, 0));
}

/* Yellow tab label like flyer's "خدماتنا" sticker */
.tab-label {
  position: absolute;
  top: -14px; right: 50%;
  transform: translateX(50%);
  background: var(--yellow);
  color: #000;
  font-weight: 900;
  padding: 6px 18px;
  border-radius: var(--r-pill);
  font-size: 14px;
  letter-spacing: 0.02em;
}
