/* =============================================
   كهربتي - Main Design System
   Colors: Navy #1a2756 | Orange #f97316 | Yellow #fbbf24 | Cyan #22d3ee
   ============================================= */

/* ── Google Fonts Preload ── */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&family=Rajdhani:wght@600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --color-primary:       #1a2756;
  --color-primary-light: #243580;
  --color-primary-dark:  #0f1a3d;
  --color-accent:        #f97316;
  --color-accent-dark:   #ea580c;
  --color-electric:      #fbbf24;
  --color-cyan:          #22d3ee;
  --color-dark:          #080c1a;
  --color-darker:        #040610;
  --color-surface:       #0f172a;
  --color-surface-2:     #1e293b;
  --color-surface-3:     #243045;
  --color-text:          #f8fafc;
  --color-text-muted:    #94a3b8;
  --color-text-dim:      #64748b;
  --color-border:        rgba(249,115,22,0.15);
  --color-border-cyan:   rgba(34,211,238,0.12);

  --font-ar: 'Tajawal', 'Segoe UI', sans-serif;
  --font-en: 'Rajdhani', sans-serif;

  --shadow-glow:       0 0 40px rgba(249,115,22,0.25);
  --shadow-glow-sm:    0 0 20px rgba(249,115,22,0.2);
  --shadow-glow-cyan:  0 0 40px rgba(34,211,238,0.25);
  --shadow-card:       0 8px 32px rgba(0,0,0,0.4);
  --shadow-card-hover: 0 20px 60px rgba(0,0,0,0.5);

  --radius:    16px;
  --radius-sm: 8px;
  --radius-xl: 24px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;

  --container: 1200px;
  --container-sm: 800px;
}

/* Phone numbers always LTR even in RTL pages */
a[href^="tel:"],
.phone-number,
[data-phone] {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
}

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

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

body {
  font-family: var(--font-ar);
  background: var(--color-dark);
  color: var(--color-text);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--color-accent); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--color-electric); }

ul, ol { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-text);
}

p { color: var(--color-text-muted); margin-bottom: 1rem; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-dark); }
::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-accent); }

/* ── Selection ── */
::selection { background: var(--color-accent); color: #fff; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section ── */
.section {
  padding: 100px 0;
  position: relative;
}
.section-sm { padding: 60px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Section Label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: 0.5; }
}

/* ── Gradient Text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-electric) 50%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-ar);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(249,115,22,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(249,115,22,0.5);
  color: #fff;
}

.btn-outline {
  border-color: rgba(255,255,255,0.25);
  color: var(--color-text);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  color: #fff;
}

/* ── Divider ── */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-electric));
  border-radius: 2px;
  margin: 16px auto;
}

/* ═══════════════════════════════════════
   SITE TOP (wrapper for top-bar + header)
═══════════════════════════════════════ */
#site-top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

/* ═══════════════════════════════════════
   TOP BAR
═══════════════════════════════════════ */
.top-bar {
  background: var(--color-primary-dark);
  border-bottom: 1px solid rgba(249,115,22,0.08);
  padding: 7px 0;
  transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
  overflow: hidden;
}
/* hide top-bar class toggled by JS */
.top-bar.hidden {
  max-height: 0;
  padding: 0;
  opacity: 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar-items {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.top-bar-item svg {
  width: 13px; height: 13px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.top-bar-emergency {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.top-bar-emergency::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.2s ease-in-out infinite;
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
#site-header {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

/* Electric top accent line – appears on scroll */
#site-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 30%, var(--color-electric) 60%, var(--color-cyan) 80%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}
#site-top.scrolled::before { opacity: 1; }

.header-wrap {
  padding: 8px 0;
  transition: var(--transition);
}
#site-top.scrolled .header-wrap {
  padding: 4px 0;
  background: rgba(4,6,16,0.96);
  backdrop-filter: blur(28px) saturate(1.6);
  box-shadow:
    0 1px 0 rgba(249,115,22,0.08),
    0 12px 48px rgba(0,0,0,0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── Logo ── */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img,
.site-logo .logo-mark img {
  height: 68px;
  width: 68px;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 6px 22px rgba(249,115,22,0.3));
}
/* Tablet */
@media (max-width: 1024px) {
  .site-logo img,
  .site-logo .logo-mark img { height: 60px; width: 60px; }
}
/* Mobile */
@media (max-width: 600px) {
  .site-logo img,
  .site-logo .logo-mark img { height: 52px; width: 52px; }
}
.site-logo:hover img,
.site-logo:hover .logo-mark img {
  filter: drop-shadow(0 6px 24px rgba(249,115,22,0.55)) brightness(1.05);
  transform: scale(1.04);
}
#site-top.scrolled .site-logo img,
#site-top.scrolled .site-logo .logo-mark img {
  height: 56px;
  width: 56px;
}
.site-logo .logo-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-logo-text { display: none; } /* logo image now contains all text */
.site-logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1;
  letter-spacing: -0.5px;
}
.logo-tagline {
  font-size: 0.65rem;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── Primary Nav ── */
.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.primary-nav > ul > li { position: relative; }
.primary-nav > ul > li > a {
  display: block;
  color: rgba(248,250,252,0.72);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  position: relative;
}
.primary-nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  right: 13px; left: 13px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-electric));
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s ease;
}
.primary-nav > ul > li > a:hover {
  color: #fff;
  background: rgba(249,115,22,0.06);
}
.primary-nav > ul > li > a:hover::after,
.primary-nav > ul > li.current-menu-item > a::after {
  transform: scaleX(1);
}
.primary-nav > ul > li.current-menu-item > a {
  color: var(--color-accent);
}

/* ── Mega Dropdown ── */
.menu-caret {
  font-size: 0.7rem;
  margin-right: 4px;
  display: inline-block;
  transition: transform 0.2s;
}
.primary-nav > ul > li.menu-item-has-children:hover .menu-caret { transform: rotate(180deg); }

.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 280px;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 10px;
  list-style: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(249,115,22,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 100;
}
.primary-nav .sub-menu::before {
  content: '';
  position: absolute;
  top: -1px;
  right: 24px;
  width: 12px;
  height: 12px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
  transform: translateY(-50%) rotate(45deg);
}
.primary-nav li.menu-item-has-children:hover > .sub-menu,
.primary-nav li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.primary-nav .sub-menu li { width: 100%; }
.primary-nav .sub-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
}
.primary-nav .sub-menu li a::before {
  content: '⚡';
  font-size: 0.75rem;
  opacity: 0.5;
  transition: var(--transition-fast);
}
.primary-nav .sub-menu li a:hover {
  background: rgba(249,115,22,0.1);
  color: var(--color-text);
  padding-right: 18px;
}
.primary-nav .sub-menu li a:hover::before {
  opacity: 1;
  color: var(--color-electric);
}

/* ── Header CTA Group ── */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 3px 16px rgba(249,115,22,0.3);
  white-space: nowrap;
}
.header-phone:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249,115,22,0.5);
  color: #fff;
}
.header-phone svg {
  width: 15px; height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.header-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 50%;
  transition: var(--transition);
  flex-shrink: 0;
}
.header-wa:hover {
  background: #25d366;
  border-color: #25d366;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}
.header-wa svg { width: 18px; height: 18px; fill: #25d366; transition: fill 0.2s; }
.header-wa:hover svg { fill: #fff; }

/* ── Mobile Toggle ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 44px; height: 44px;
  background: rgba(249,115,22,0.06);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: 10px;
  transition: var(--transition-fast);
}
.menu-toggle:hover { background: rgba(249,115,22,0.12); }
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active { background: rgba(249,115,22,0.1); border-color: rgba(249,115,22,0.3); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--color-accent); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--color-accent); }

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--color-darker);
}

/* ── Background System ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Animated grid – more visible */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,211,238,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridDrift 28s linear infinite;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
}
@keyframes gridDrift {
  0%   { transform: translateY(0)    translateX(0); }
  100% { transform: translateY(64px) translateX(32px); }
}

/* Radial color glows */
.hero-bg-glows {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at 80% 50%, rgba(249,115,22,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 65% at 10% 40%, rgba(26,39,86,0.65) 0%, transparent 60%),
    radial-gradient(ellipse 40% 45% at 50% 100%, rgba(34,211,238,0.08) 0%, transparent 55%);
}

/* Big background lightning bolt SVG */
.hero-bolt-bg {
  position: absolute;
  right: 42%;
  top: 50%;
  transform: translateY(-50%);
  width: min(500px, 45vw);
  opacity: 0.04;
  pointer-events: none;
  filter: blur(1px);
  animation: boltBreath 5s ease-in-out infinite;
}
@keyframes boltBreath {
  0%,100% { opacity: 0.03; transform: translateY(-50%) scale(1); }
  50%      { opacity: 0.07; transform: translateY(-52%) scale(1.03); }
}

/* ── Spark Particles – bigger & brighter ── */
.spark { position: absolute; pointer-events: none; }
.spark::after {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-electric);
  box-shadow: 0 0 10px 3px rgba(251,191,36,0.7), 0 0 24px 6px rgba(249,115,22,0.3);
  animation: sparkFloat 4s ease-in-out infinite;
}
.spark-1  { top: 18%; left: 12%; } .spark-1::after  { animation-delay: 0s;    }
.spark-2  { top: 58%; left: 22%; } .spark-2::after  { animation-delay: 0.6s;  }
.spark-3  { top: 38%; left: 72%; } .spark-3::after  { animation-delay: 1.1s;  }
.spark-4  { top: 72%; left: 78%; } .spark-4::after  { animation-delay: 1.6s;  }
.spark-5  { top: 12%; left: 58%; } .spark-5::after  { animation-delay: 2.2s;  }
.spark-6  { top: 84%; left: 42%; } .spark-6::after  { animation-delay: 0.3s;  }
.spark-7  { top: 28%; left: 90%; } .spark-7::after  { animation-delay: 1.9s;  }
.spark-8  { top: 50%; left: 3%;  } .spark-8::after  { animation-delay: 0.9s;  }
@keyframes sparkFloat {
  0%,100% { transform: translateY(0)    scale(1);   opacity: 0; }
  15%      { opacity: 1; }
  55%      { transform: translateY(-42px) scale(1.6); opacity: 0.85; }
  85%      { opacity: 0.15; }
}

/* ── Two-Column Layout ── */
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
  min-height: 100vh;
  padding: 160px 0 80px; /* increased top to clear fixed header + electric strip */
}

/* ── Content Column ── */
.hero-content { animation: fadeInRight 0.9s cubic-bezier(0.22,1,0.36,1) both; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--color-accent);
  font-size: 0.83rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  animation: fadeInDown 0.7s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 1.2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1.28;
  margin-bottom: 20px;
  animation: fadeInDown 0.75s ease 0.1s both;
}
.hero h1 .line-highlight {
  display: block;
  background: linear-gradient(120deg, var(--color-accent) 0%, var(--color-electric) 55%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeInDown 0.75s ease 0.2s both;
}
.hero-sub strong { color: inherit; font-weight: inherit; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  animation: fadeInDown 0.75s ease 0.3s both;
}

/* ── Trust Strip ── */
.hero-trust {
  display: flex;
  gap: 0;
  animation: fadeInDown 0.75s ease 0.45s both;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid rgba(249,115,22,0.1);
}
.hero-trust-item:first-child { border-left: none; margin-left: 0; padding-left: 0; }
.trust-icon {
  width: 38px; height: 38px;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.trust-text strong { display: block; font-size: 0.88rem; color: var(--color-text); font-weight: 800; line-height: 1.2; }
.trust-text span   { font-size: 0.72rem; color: var(--color-text-dim); }

/* ── Visual Column ── */
.hero-visual-col {
  position: relative;
  animation: fadeInLeft 0.9s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}

/* Gradient glow ring behind image */
.hero-visual-col::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 36px;
  background: radial-gradient(ellipse at center, rgba(249,115,22,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-img-frame {
  position: relative;
  border-radius: 24px;
}
/* Animated gradient border */
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--color-accent) 0%, rgba(34,211,238,0.5) 40%, var(--color-primary-light) 70%, var(--color-accent) 100%);
  background-size: 300% 300%;
  animation: gradBorder 5s ease infinite;
  z-index: -1;
}
@keyframes gradBorder {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero-img-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  filter: brightness(0.85) saturate(0.9);
}
/* Inner overlay gradient */
.hero-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(249,115,22,0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating stat card – bottom left */
.hero-stat-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(15,23,42,0.95);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(249,115,22,0.08);
  backdrop-filter: blur(16px);
  animation: floatBadge 3.5s ease-in-out infinite;
  z-index: 4;
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.badge-num {
  font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--color-accent), var(--color-electric));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
  font-family: var(--font-en);
}
.badge-label { font-size: 0.75rem; color: var(--color-text-muted); font-weight: 600; line-height: 1.3; }

/* Certified chip – top left */
.hero-certified {
  position: absolute;
  top: -18px;
  left: -18px;
  background: rgba(4,6,16,0.92);
  border: 1px solid rgba(34,211,238,0.35);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-cyan);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 24px rgba(34,211,238,0.06);
  backdrop-filter: blur(16px);
  z-index: 4;
  white-space: nowrap;
}
.hero-certified svg { width: 15px; height: 15px; stroke: var(--color-cyan); fill: none; stroke-width: 1.5; }

/* ── Scroll Hint ── */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll-line {
  width: 1.5px; height: 44px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  border-radius: 1px;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.2; transform: scaleY(1); }
  50%      { opacity: 0.9; transform: scaleY(1.08); }
}
.hero-scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(249,115,22,0.6);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(-8px); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ── Hero Responsive ── */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 120px 0 60px;
    text-align: center;
  }
  .hero-content { order: 1; }
  .hero-visual-col { order: 2; max-width: 500px; margin: 0 auto; }
  .hero-sub { max-width: 100%; }
  .hero-trust { justify-content: center; }
  .hero-actions { justify-content: center; }
}
@media (max-width: 600px) {
  .hero-layout { padding: 100px 0 48px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-trust { flex-direction: column; gap: 16px; }
  .hero-trust-item { border-left: none; margin-left: 0; padding-left: 0; border-bottom: 1px solid rgba(249,115,22,0.08); padding-bottom: 16px; }
  .hero-trust-item:last-child { border-bottom: none; padding-bottom: 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stat-badge { bottom: -12px; right: -8px; }
  .hero-certified { top: -12px; left: -8px; }
}

/* ═══════════════════════════════════════
   STATS SECTION
═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   ⚡ STATS SECTION (Premium + Electric Sparks)
═══════════════════════════════════════ */
.stats-section {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(15,26,61,0.4) 0%, var(--color-primary-dark) 70%),
    var(--color-primary-dark);
  border-top: 1px solid rgba(249,115,22,0.15);
  border-bottom: 1px solid rgba(249,115,22,0.15);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  animation: stSectionShake 3.8s ease-in-out infinite;
}
/* Subtle shake when lightning strikes (like ground tremor) */
@keyframes stSectionShake {
  0%, 89%, 100% { transform: translateX(0); }
  90%           { transform: translateX(-2px); }
  91%           { transform: translateX(2px); }
  92%           { transform: translateX(-1px); }
  93%           { transform: translateX(1px); }
  94%           { transform: translateX(0); }
}
/* Subtle background grid */
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
/* Horizontal scan line */
.stats-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(251,191,36,0.4) 50%, transparent 100%);
  filter: blur(0.4px);
  animation: stScanLine 5s linear infinite;
  pointer-events: none;
}
@keyframes stScanLine {
  0%   { transform: translateY(-100px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(100px); opacity: 0; }
}

/* Sparks container */
.stats-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ⚡⚡⚡ ELECTROCUTION-DRAMA EFFECTS ⚡⚡⚡ */

/* Full-screen white flash (lightning strike) */
.st-flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.4) 0%, rgba(251,191,36,0.3) 30%, transparent 70%);
  opacity: 0;
  animation: stFlash 4.5s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: opacity;
}
@keyframes stFlash {
  0%, 88%, 100% { opacity: 0; }
  89%           { opacity: 0.85; }
  90%           { opacity: 0.2; }
  91%           { opacity: 0.95; }
  92%           { opacity: 0.4; }
  93%           { opacity: 0.7; }
  94%           { opacity: 0; }
}

/* Electric arcs (jagged lightning paths) */
.st-arc {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}
.st-arc-1 { animation: stArcFlash 3.8s ease-in-out infinite; }
.st-arc-2 { animation: stArcFlash 3.8s ease-in-out 1.3s infinite; }
.st-arc-3 { animation: stArcFlash 3.8s ease-in-out 2.6s infinite; }

@keyframes stArcFlash {
  0%, 90%, 100% { opacity: 0; }
  91%           { opacity: 1; }
  92%           { opacity: 0.3; }
  93%           { opacity: 1; }
  94%           { opacity: 0.5; }
  95%           { opacity: 0.95; }
  96%           { opacity: 0; }
}

/* Animated bolt path drawing effect */
.st-bolt-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: stBoltDraw 3.8s linear infinite;
  filter: drop-shadow(0 0 4px currentColor) drop-shadow(0 0 8px currentColor);
}
.st-arc-2 .st-bolt-path { animation-delay: 1.3s; }
.st-arc-3 .st-bolt-path { animation-delay: 2.6s; }
@keyframes stBoltDraw {
  0%, 89%   { stroke-dashoffset: 1000; }
  91%       { stroke-dashoffset: 0; }
  96%       { stroke-dashoffset: -1000; }
  100%      { stroke-dashoffset: -1000; }
}

/* Explosive spark bursts */
.st-burst {
  position: absolute;
  width: 6px;
  height: 6px;
  pointer-events: none;
}
.st-burst-1 { top: 20%; left: 22%; animation: stBurstTrigger 5s ease-in-out infinite; }
.st-burst-2 { top: 65%; left: 50%; animation: stBurstTrigger 5s ease-in-out 1.7s infinite; }
.st-burst-3 { top: 30%; left: 78%; animation: stBurstTrigger 5s ease-in-out 3.4s infinite; }

@keyframes stBurstTrigger {
  0%, 88%, 100% { transform: scale(0); opacity: 0; }
  90%           { transform: scale(1); opacity: 1; }
}

.st-burst > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #fbbf24;
  border-radius: 50%;
  box-shadow:
    0 0 8px #fbbf24,
    0 0 16px #f97316,
    0 0 24px #fff;
  margin: -2px 0 0 -2px;
  will-change: transform, opacity;
}
.st-burst > span:nth-child(1) { animation: stBurstFly 0.8s ease-out infinite; --bx: 60px;  --by: -10px; }
.st-burst > span:nth-child(2) { animation: stBurstFly 0.8s ease-out infinite; --bx: 50px;  --by: 40px; }
.st-burst > span:nth-child(3) { animation: stBurstFly 0.8s ease-out infinite; --bx: 10px;  --by: 60px; }
.st-burst > span:nth-child(4) { animation: stBurstFly 0.8s ease-out infinite; --bx: -40px; --by: 50px; }
.st-burst > span:nth-child(5) { animation: stBurstFly 0.8s ease-out infinite; --bx: -60px; --by: 0px; }
.st-burst > span:nth-child(6) { animation: stBurstFly 0.8s ease-out infinite; --bx: -50px; --by: -40px; }
.st-burst > span:nth-child(7) { animation: stBurstFly 0.8s ease-out infinite; --bx: 0px;   --by: -55px; }
.st-burst > span:nth-child(8) { animation: stBurstFly 0.8s ease-out infinite; --bx: 40px;  --by: -45px; }

.st-burst-1 > span { animation-delay: 4.5s !important; }
.st-burst-2 > span { animation-delay: 1.2s !important; }
.st-burst-3 > span { animation-delay: 2.9s !important; }

@keyframes stBurstFly {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  60%  { opacity: 1; }
  100% { transform: translate(var(--bx, 50px), var(--by, 0)) scale(0.2); opacity: 0; }
}

/* Flying sparks that travel across the screen */
.st-fly {
  position: absolute;
  top: var(--sy);
  left: var(--sx);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 6px #fbbf24,
    0 0 12px #f97316,
    0 0 20px rgba(249,115,22,0.6);
  opacity: 0;
  animation: stFly 3s ease-in-out var(--d, 0s) infinite;
  will-change: transform, opacity;
}
@keyframes stFly {
  0%   { transform: translate(0, 0) scale(1); opacity: 0; }
  10%  { opacity: 1; transform: translate(0, 0) scale(1.5); }
  100% {
    transform: translate(calc((var(--ex) - var(--sx)) * 4), calc((var(--ey) - var(--sy)) * 2.5)) scale(0);
    opacity: 0;
  }
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 24px 28px;
  position: relative;
  transition: transform 0.3s ease;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(249,115,22,0.25) 50%, transparent 100%);
}
.stat-item:hover {
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(251,191,36,0.06));
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 16px;
  filter: drop-shadow(0 4px 12px rgba(249,115,22,0.2));
  transition: var(--transition);
}
.stat-item:hover .stat-icon {
  transform: scale(1.08) rotate(-4deg);
  border-color: var(--color-accent);
  box-shadow: 0 0 24px rgba(249,115,22,0.35);
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
  direction: ltr;
}
.stat-number {
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 700;
  background: linear-gradient(180deg, #fff 0%, var(--color-electric) 50%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-family: var(--font-en);
  letter-spacing: -1px;
  text-shadow: 0 0 30px rgba(249,115,22,0.25);
  filter: drop-shadow(0 0 12px rgba(251,191,36,0.15));
}
.stat-suffix {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  font-family: var(--font-en);
}
.stat-label {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin: 0;
}

/* ═══════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════ */
.services-section {
  background: var(--color-surface);
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
  padding: 120px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover), 0 0 0 1px rgba(249,115,22,0.2);
  border-color: rgba(249,115,22,0.3);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { opacity: 1; }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(249,115,22,0.15) 0%, rgba(249,115,22,0.05) 100%);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(249,115,22,0.25), rgba(251,191,36,0.15));
  border-color: rgba(249,115,22,0.4);
  box-shadow: 0 0 24px rgba(249,115,22,0.2);
}
.service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.5;
  transition: var(--transition);
}
.service-card:hover .service-icon svg {
  stroke: var(--color-electric);
  filter: drop-shadow(0 0 6px rgba(251,191,36,0.5));
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--color-text);
}
.service-card p {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent);
  transition: var(--transition-fast);
}
.service-link:hover { gap: 10px; color: var(--color-electric); }
.service-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ═══════════════════════════════════════
   WHY US SECTION
═══════════════════════════════════════ */
.why-section {
  background: var(--color-dark);
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-image-wrap {
  position: relative;
}
.why-image-wrap img {
  border-radius: var(--radius-xl);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  filter: brightness(0.85) saturate(0.9);
}
.why-image-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(135deg, rgba(249,115,22,0.4), rgba(34,211,238,0.2), transparent);
  z-index: -1;
}
.why-badge {
  position: absolute;
  bottom: -20px;
  right: 32px;
  background: var(--color-primary);
  border: 2px solid rgba(249,115,22,0.3);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}
.why-badge-icon { font-size: 2rem; }
.why-badge-text strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-electric);
}
.why-badge-text span { font-size: 0.8rem; color: var(--color-text-muted); }

.why-content { padding-right: 16px; }
.why-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }
.why-content > p { font-size: 1rem; margin-bottom: 40px; }

.why-features { display: flex; flex-direction: column; gap: 24px; }

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-cyan);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-feature:hover {
  border-color: rgba(249,115,22,0.2);
  background: var(--color-surface-2);
  transform: translateX(-4px);
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-feature-icon svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: var(--color-cyan);
  stroke-width: 1.5;
}
.why-feature h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--color-text); }
.why-feature p  { font-size: 0.88rem; color: var(--color-text-muted); margin: 0; line-height: 1.6; }

/* ═══════════════════════════════════════
   GALLERY SECTION
═══════════════════════════════════════ */
.gallery-section {
  background: var(--color-surface);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.gallery-item.wide  { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item.tall  { grid-row: span 2;    aspect-ratio: 1/2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.8) saturate(0.9);
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(0.6) saturate(1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,26,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.gallery-overlay span::before {
  content: '⚡';
  font-size: 1rem;
}

/* ═══════════════════════════════════════
   DEVICES / EQUIPMENT SECTION
═══════════════════════════════════════ */
.equipment-section {
  background: var(--color-dark);
  padding: 100px 0;
}
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.equipment-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.equipment-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.85);
}
.equipment-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(249,115,22,0.15);
}
.equipment-content h2 { margin-bottom: 16px; }
.equipment-content p  { margin-bottom: 32px; }

.equipment-list { display: flex; flex-direction: column; gap: 12px; }
.equipment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  transition: var(--transition);
}
.equipment-item:hover {
  border-color: rgba(249,115,22,0.3);
  background: var(--color-surface-2);
}
.equipment-item::before {
  content: '✓';
  width: 28px; height: 28px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   BLOG SECTION
═══════════════════════════════════════ */
.blog-section {
  background: var(--color-surface);
  padding: 100px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-cyan);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(249,115,22,0.2);
}
.blog-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-category {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.blog-body { padding: 24px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--color-text-dim);
}
.blog-meta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card h3 a { color: var(--color-text); transition: var(--transition-fast); }
.blog-card h3 a:hover { color: var(--color-accent); }
.blog-card p { font-size: 0.88rem; margin: 0 0 16px; line-height: 1.6; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-accent);
}
.blog-read-more:hover { gap: 10px; }
.blog-read-more svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* No thumbnail fallback */
.blog-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-surface-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.cta-section {
  background: var(--color-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(249,115,22,0.12), transparent);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  color: rgba(248,250,252,0.7);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.btn-light {
  background: #fff;
  color: var(--color-primary);
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(255,255,255,0.2);
}
.btn-light:hover {
  background: var(--color-electric);
  color: var(--color-dark);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════ */
.contact-section {
  background: var(--color-dark);
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: 2rem; margin-bottom: 16px; }
.contact-info > p { margin-bottom: 40px; }

.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-item:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateX(-4px);
}
.contact-item-icon {
  width: 52px; height: 52px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.5;
}
.contact-item-text { display: flex; flex-direction: column; gap: 2px; }
.contact-item-text label {
  font-size: 0.78rem;
  color: var(--color-text-dim);
  font-weight: 500;
}
.contact-item-text a,
.contact-item-text span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition-fast);
}
.contact-item-text a:hover { color: var(--color-accent); }

/* Contact form */
.contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--color-text);
  font-family: var(--font-ar);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  direction: rtl;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
  background: var(--color-surface-3);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  justify-content: center;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#site-footer {
  background: var(--color-darker);
  border-top: 1px solid rgba(249,115,22,0.1);
}

.footer-main {
  padding: 80px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-areas-list li {
  cursor: default;
  color: var(--color-text-muted);
}
.footer-areas-list li strong { color: var(--color-text); }

.footer-brand { max-width: 320px; }
.footer-brand .site-logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 40px; height: 40px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}
.social-btn svg { width: 18px; height: 18px; fill: var(--color-text); }
.social-btn:hover svg { fill: #fff; }

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}
.footer-col ul li a::before { content: '⚡'; font-size: 0.65rem; opacity: 0; }
.footer-col ul li a:hover { color: var(--color-accent); }
.footer-col ul li a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}
.footer-contact-item a:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid rgba(249,115,22,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  margin: 0;
}
.footer-bottom a { color: var(--color-accent); }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  text-decoration: none;
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--color-accent); }

/* ─── Footer credit bar (Designed by SEO Partners) ─── */
.footer-credit {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
}
.footer-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  color: #cfd3dc;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.footer-credit-link:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.35);
  color: #fff;
  transform: translateY(-1px);
}
.footer-credit-icon {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.footer-credit-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}
.footer-credit-text { color: inherit; }
.footer-credit-text strong { color: #3b82f6; font-weight: 700; margin-right: 2px; }
.footer-credit-link:hover .footer-credit-text strong { color: #60a5fa; }
@media (max-width: 480px) {
  .footer-credit-link { font-size: 0.78rem; padding: 7px 14px; gap: 10px; }
  .footer-credit-text strong { display: inline-block; }
}
.footer-credit-link { cursor: pointer; font-family: inherit; }
button.footer-credit-link { background: rgba(255,255,255,0.02); }

/* ═══════════════════════════════════════
   SEO PARTNERS CONTACT MODAL
═══════════════════════════════════════ */
.sp-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.sp-modal[hidden] { display: none; }

.sp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 18, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sp-modal.is-open .sp-modal__backdrop { opacity: 1; }

.sp-modal__card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(160deg, #0f1729 0%, #1a2342 100%);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 18px;
  padding: 36px 28px 28px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transform: scale(0.92) translateY(10px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1.2), opacity 0.3s;
}
.sp-modal.is-open .sp-modal__card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.sp-modal__close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #cfd3dc;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  padding: 0;
}
.sp-modal__close:hover { background: rgba(239, 68, 68, 0.15); color: #fff; transform: rotate(90deg); }

.sp-modal__head {
  text-align: center;
  margin-bottom: 28px;
}
.sp-modal__logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}
.sp-modal__logo img { width: 56px; height: 56px; object-fit: contain; }
.sp-modal__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sp-modal__subtitle {
  font-size: 0.88rem;
  color: #94a3b8;
  margin: 0;
}

.sp-modal__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.sp-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  color: #e5e7eb;
  text-decoration: none;
  transition: transform 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.sp-option:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.05);
}
.sp-option__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}
.sp-option__icon svg { width: 22px; height: 22px; }
.sp-option__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sp-option__body strong { font-size: 0.98rem; font-weight: 700; color: #fff; }
.sp-option__body small { font-size: 0.78rem; color: #94a3b8; }
.sp-option__arrow {
  font-size: 1.2rem;
  color: #6b7280;
  transition: color 0.25s, transform 0.25s;
}
.sp-option:hover .sp-option__arrow { color: #fff; transform: translateX(-4px); }

/* Per-option colors */
.sp-option--fb .sp-option__icon  { background: rgba(24, 119, 242, 0.15);  color: #1877f2; }
.sp-option--fb:hover { border-color: #1877f2; box-shadow: 0 6px 18px rgba(24, 119, 242, 0.25); }

.sp-option--call .sp-option__icon { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.sp-option--call:hover { border-color: #22c55e; box-shadow: 0 6px 18px rgba(34, 197, 94, 0.25); }

.sp-option--web .sp-option__icon { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.sp-option--web:hover { border-color: #3b82f6; box-shadow: 0 6px 18px rgba(59, 130, 246, 0.25); }

.sp-modal__foot {
  text-align: center;
  font-size: 0.78rem;
  color: #6b7280;
  margin: 0;
}

@media (max-width: 480px) {
  .sp-modal { padding: 14px; }
  .sp-modal__card { padding: 30px 20px 22px; }
  .sp-modal__title { font-size: 1.3rem; }
  .sp-modal__logo { width: 60px; height: 60px; }
  .sp-modal__logo img { width: 46px; height: 46px; }
  .sp-option { padding: 12px 14px; gap: 10px; }
  .sp-option__icon { width: 38px; height: 38px; }
  .sp-option__body strong { font-size: 0.9rem; }
}

/* ═══════════════════════════════════════
   💡 HANGING LAMP FABs — Call + WhatsApp
   Two pear-shaped bulbs hanging from cords.
   Dark/off by default. Hover = filament heats up,
   glass glows, electric arcs zap around.
═══════════════════════════════════════ */
.klamps {
  position: fixed;
  bottom: 28px;
  left: 0;
  padding-left: 90px;       /* push bulbs in; cord uses negative left to reach screen edge */
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 18px;
  pointer-events: none;
  animation: fadeInUp 0.8s ease 1s both;
  overflow: visible;
}
.klamps .klamp { pointer-events: auto; }

/* ── The lamp container ── */
.klamp {
  --color-on:  #fbbf24;
  --color-rgb: 251, 191, 36;
  position: relative;
  display: block;
  width: 48px;
  text-decoration: none;
  padding-top: 12px;
  cursor: pointer;
}
.klamp--wa { --color-on: #25d366; --color-rgb: 37, 211, 102; }

/* ── Cord hanging from top ── */
/* Horizontal cord: enters from screen edge (left), connects to cap */
.klamp-cord {
  position: absolute;
  top: 15px;                /* aligned with center of cap */
  left: -90px;              /* reaches the screen edge */
  right: 24px;              /* ends at horizontal center of 48px bulb */
  height: 2.5px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(40, 40, 60, 0.4) 6%,
    #2a2a3a 18%,
    #3a3a4a 60%,
    #2a2a3a 100%);
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.4);
}
/* Cord knot where it meets the cap */
.klamp-cord::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -3px;
  width: 8px; height: 8px;
  background: radial-gradient(circle at 35% 30%, #555, #1a1a28);
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* ⚡ Spark traveling along the wire */
.klamp-wire-spark {
  position: absolute;
  top: 11px;
  left: -90px;
  width: 7px;
  height: 7px;
  background: var(--color-on);
  border-radius: 50%;
  box-shadow:
    0 0 6px var(--color-on),
    0 0 14px var(--color-on),
    0 0 22px rgba(var(--color-rgb), 0.6);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.klamp-wire-spark--1 { animation: klampWireSpark 2.6s linear infinite; }
.klamp-wire-spark--2 { animation: klampWireSpark 2.6s linear 1.3s infinite; }

@keyframes klampWireSpark {
  0%   { transform: translateX(0)    scale(0.4); opacity: 0; }
  8%   { opacity: 1; transform: translateX(8px)   scale(1); }
  92%  { opacity: 1; transform: translateX(104px) scale(1); }
  100% { opacity: 0; transform: translateX(114px) scale(0.4); }
}

/* ── Metal screw cap (between cord and bulb) ── */
.klamp-cap {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 9px;
  background:
    linear-gradient(180deg, #6b6b7a 0%, #2a2a3a 50%, #4a4a5a 100%);
  border-radius: 3px 3px 6px 6px;
  box-shadow:
    inset 0 -2px 0 #1a1a28,
    inset 1px 0 0 rgba(255,255,255,0.1),
    inset -1px 0 0 rgba(0,0,0,0.3);
}
.klamp-cap::before,
.klamp-cap::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(0,0,0,0.4);
}
.klamp-cap::before { top: 3px; }
.klamp-cap::after  { top: 6px; }

/* ── The glass bulb (pear shape) ── */
.klamp-bulb {
  position: relative;
  display: block;
  width: 48px;
  height: 54px;
  margin: 0 auto;
  /* Pear shape: rounded top, narrower bottom */
  border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
  background:
    radial-gradient(circle at 38% 30%, #1a1a2a 0%, #0a0a14 60%, #050508 100%);
  border: 1.5px solid rgba(60, 60, 80, 0.6);
  box-shadow:
    inset 0 -8px 16px rgba(0,0,0,0.6),
    inset 0 4px 12px rgba(255,255,255,0.04),
    0 6px 14px rgba(0,0,0,0.5);
  overflow: visible;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.5s;
}

/* Highlight reflection on glass */
.klamp-shine {
  position: absolute;
  top: 6px;
  left: 9px;
  width: 10px;
  height: 16px;
  background: linear-gradient(150deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 80%);
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

/* ── Filament inside the bulb (the icon) ── */
.klamp-filament {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a3a4a;        /* dim/off */
  transition: color 0.35s, filter 0.35s, transform 0.4s;
}
.klamp-filament svg {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);  /* center inside pear shape */
}

/* ── Halo glow (outside the bulb) ── */
.klamp-halo {
  position: absolute;
  top: 60px;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(var(--color-rgb), 0.6) 0%, rgba(var(--color-rgb), 0) 60%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: -1;
  filter: blur(2px);
}

/* ── Electric arcs (zigzag lightning) ── */
.klamp-arc {
  position: absolute;
  top: 100px;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-on), transparent);
  box-shadow: 0 0 6px var(--color-on);
  opacity: 0;
  pointer-events: none;
  transform-origin: center;
}
.klamp-arc--1 { left: -34px; transform: rotate(-30deg); }
.klamp-arc--2 { right: -34px; transform: rotate(30deg) scaleX(-1); }
.klamp-arc--3 { left: 50%; top: 70px; transform: translateX(-50%) rotate(90deg); }

/* ── Sparks ── */
.klamp-spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-on);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-on), 0 0 14px var(--color-on);
  opacity: 0;
  pointer-events: none;
  top: 105px; left: 50%;
}

/* ── Tooltip label ── */
.klamp-label {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: rgba(10, 10, 20, 0.95);
  border: 1px solid var(--color-on);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.klamp-label::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: var(--color-on);
}

/* ═══════ HOVER: BULB LIGHTS UP ═══════ */
.klamp:hover .klamp-bulb {
  background:
    radial-gradient(circle at 38% 35%,
      #ffffff 0%,
      var(--color-on) 25%,
      rgba(var(--color-rgb), 0.95) 55%,
      rgba(var(--color-rgb), 0.85) 100%);
  border-color: var(--color-on);
  box-shadow:
    inset 0 -6px 14px rgba(255, 255, 255, 0.4),
    inset 0 4px 10px rgba(255, 255, 255, 0.6),
    0 0 40px var(--color-on),
    0 0 80px rgba(var(--color-rgb), 0.5),
    0 6px 14px rgba(0,0,0,0.5);
}

/* Filament (icon) glows hot */
.klamp:hover .klamp-filament {
  color: #fff;
  filter:
    drop-shadow(0 0 4px #fff)
    drop-shadow(0 0 8px var(--color-on));
  transform: scale(1.05);
}

/* Halo radiates */
.klamp:hover .klamp-halo { opacity: 1; animation: klampHaloPulse 1.5s ease-in-out infinite; }

/* Arcs zap */
.klamp:hover .klamp-arc--1 { animation: klampArc 0.4s ease-in-out infinite alternate; }
.klamp:hover .klamp-arc--2 { animation: klampArc 0.4s ease-in-out 0.13s infinite alternate; }
.klamp:hover .klamp-arc--3 { animation: klampArc 0.5s ease-in-out 0.25s infinite alternate; }

/* Sparks fly */
.klamp:hover .klamp-spark--a { animation: klampSparkA 0.9s ease-out infinite; }
.klamp:hover .klamp-spark--b { animation: klampSparkB 0.9s ease-out 0.15s infinite; }
.klamp:hover .klamp-spark--c { animation: klampSparkC 0.9s ease-out 0.30s infinite; }
.klamp:hover .klamp-spark--d { animation: klampSparkD 0.9s ease-out 0.45s infinite; }

/* Label show */
.klamp:hover .klamp-label { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Slight bulb swing (rotate only, no transform override) */
.klamp { transform-origin: top center; }
.klamp:hover { animation: klampSwing 1.8s ease-in-out infinite; }

/* ═══════ KEYFRAMES ═══════ */
@keyframes klampHaloPulse {
  0%, 100% { transform: translateX(-50%) scale(1);   opacity: 0.8; }
  50%      { transform: translateX(-50%) scale(1.15); opacity: 1;   }
}
@keyframes klampArc {
  0%   { opacity: 0; clip-path: inset(0 100% 0 0); }
  20%  { opacity: 1; }
  100% { opacity: 0.4; clip-path: inset(0 0 0 0); }
}
@keyframes klampSparkA {
  0%   { transform: translate(0,0) scale(0); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translate(40px, -50px) scale(1); opacity: 0; }
}
@keyframes klampSparkB {
  0%   { transform: translate(0,0) scale(0); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translate(-45px, -40px) scale(1); opacity: 0; }
}
@keyframes klampSparkC {
  0%   { transform: translate(0,0) scale(0); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translate(50px, -20px) scale(1); opacity: 0; }
}
@keyframes klampSparkD {
  0%   { transform: translate(0,0) scale(0); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translate(-30px, -60px) scale(1); opacity: 0; }
}
@keyframes klampSwing {
  0%, 100% { transform: rotate(-2.5deg); }
  50%      { transform: rotate(2.5deg);  }
}

/* Mobile (≤600px) — smaller, snug */
@media (max-width: 600px) {
  .klamps { bottom: 14px; padding-left: 56px; gap: 12px; }
  .klamp  { width: 38px; padding-top: 10px; }
  .klamp-cord {
    top: 11px;
    left: -56px;
    right: 19px;
    height: 2px;
  }
  .klamp-cord::after { width: 6px; height: 6px; right: -1px; top: -2px; }
  .klamp-wire-spark { top: 8px; left: -56px; width: 6px; height: 6px; }
  .klamp-cap {
    top: 8px; width: 16px; height: 7px;
    border-radius: 2px 2px 4px 4px;
  }
  .klamp-cap::before { top: 2px; }
  .klamp-cap::after  { top: 4.5px; }
  .klamp-bulb { width: 38px; height: 44px; border-width: 1px; }
  .klamp-shine { width: 7px; height: 12px; top: 5px; left: 7px; }
  .klamp-filament svg { width: 16px; height: 16px; transform: translateY(-1.5px); }
  .klamp-halo { width: 78px; height: 78px; top: 46px; }
  .klamp-label { display: none; }
  @keyframes klampWireSpark {
    0%   { transform: translateX(0)    scale(0.4); opacity: 0; }
    10%  { transform: translateX(6px)  scale(1);   opacity: 1; }
    92%  { transform: translateX(74px) scale(1);   opacity: 1; }
    100% { transform: translateX(82px) scale(0.4); opacity: 0; }
  }
}

/* Extra-small phones (≤380px) */
@media (max-width: 380px) {
  .klamps { padding-left: 50px; }
  .klamp  { width: 34px; }
  .klamp-cord { left: -50px; right: 17px; }
  .klamp-wire-spark { left: -50px; }
  .klamp-bulb { width: 34px; height: 40px; }
  .klamp-cap { width: 14px; height: 6px; }
  .klamp-filament svg { width: 14px; height: 14px; }
}

/* ═══════════════════════════════════════
   ⚡ FLOATING ACTION BUTTONS (Call + WhatsApp) — Electric Theme [legacy]
═══════════════════════════════════════ */
.kfab {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeInUp 0.8s ease 1.2s both;
  pointer-events: none;
}
.kfab > .kfab-btn { pointer-events: auto; }

/* Base button — dark surface with electric border */
.kfab-btn {
  --color-electric: #fbbf24;
  position: relative;
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0a1428 0%, #1a2756 100%);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform .35s cubic-bezier(.2,.8,.2,1.2),
              border-color .25s,
              box-shadow .25s;
  overflow: visible;
}
.kfab-btn--wa { --color-electric: #25d366; }

/* Main icon */
.kfab-icon {
  width: 26px; height: 26px;
  transition: opacity .25s, transform .35s;
  position: relative;
  z-index: 2;
}
.kfab-btn--call .kfab-icon { color: #fbbf24; }
.kfab-btn--wa   .kfab-icon { color: #25d366; }

/* Lamp icon hidden by default — appears on hover */
.kfab-lamp {
  position: absolute;
  width: 26px; height: 26px;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .3s, transform .35s cubic-bezier(.2,.8,.2,1.4);
  color: #555;
  z-index: 2;
}
.kfab-lamp .lamp-bulb {
  fill: transparent;
  transition: fill .4s, stroke .4s;
}
.kfab-lamp .lamp-filament {
  stroke: #888;
  transition: stroke .3s, filter .3s;
}

/* Glow ring */
.kfab-glow {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--color-electric), transparent 65%);
  opacity: 0;
  filter: blur(8px);
  transition: opacity .35s;
  z-index: 0;
}

/* Tooltip label */
.kfab-label {
  position: absolute;
  left: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: rgba(10, 20, 40, 0.95);
  border: 1px solid var(--color-electric);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.kfab-label::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: var(--color-electric);
}

/* Pulsing bolt ring (always-on subtle pulse) */
.kfab-bolt {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--color-electric);
  opacity: 0;
  animation: kfabPulse 2.6s ease-out infinite;
  z-index: 0;
}
.kfab-btn--wa .kfab-bolt { animation-delay: 1.3s; }

@keyframes kfabPulse {
  0%   { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.7);  opacity: 0; }
}

/* HOVER: lamp lights up, sparks fly, glow ON */
.kfab-btn:hover {
  transform: translateY(-3px) scale(1.06);
  border-color: var(--color-electric);
  box-shadow:
    0 12px 32px rgba(0,0,0,0.5),
    0 0 30px rgba(251, 191, 36, 0.5),
    inset 0 0 18px rgba(251, 191, 36, 0.2);
}
.kfab-btn--wa:hover {
  box-shadow:
    0 12px 32px rgba(0,0,0,0.5),
    0 0 30px rgba(37, 211, 102, 0.5),
    inset 0 0 18px rgba(37, 211, 102, 0.2);
}
.kfab-btn:hover .kfab-icon  { opacity: 0; transform: scale(.4) rotate(-20deg); }
.kfab-btn:hover .kfab-lamp  { opacity: 1; transform: scale(1) rotate(0); }
.kfab-btn:hover .kfab-lamp .lamp-bulb {
  fill: #fbbf24;
  stroke: #fbbf24;
  filter: drop-shadow(0 0 6px #fbbf24);
}
.kfab-btn--wa:hover .kfab-lamp .lamp-bulb {
  fill: #25d366;
  stroke: #25d366;
  filter: drop-shadow(0 0 6px #25d366);
}
.kfab-btn:hover .kfab-lamp .lamp-filament {
  stroke: #fff;
  filter: drop-shadow(0 0 4px #fbbf24);
}
.kfab-btn--wa:hover .kfab-lamp .lamp-filament { filter: drop-shadow(0 0 4px #25d366); }
.kfab-btn:hover .kfab-glow  { opacity: 0.9; }
.kfab-btn:hover .kfab-label { opacity: 1; transform: translateY(-50%) translateX(0); }

/* SPARKS — fly out on hover */
.kfab-spark {
  position: absolute;
  width: 3px; height: 3px;
  background: #fbbf24;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 8px #fbbf24, 0 0 4px #fff;
  z-index: 3;
}
.kfab:hover .kfab-spark {
  animation: kfabSpark 0.8s ease-out infinite;
}
.kfab-spark--2 { animation-delay: 0.15s !important; background: #f97316; box-shadow: 0 0 8px #f97316; }
.kfab-spark--3 { animation-delay: 0.3s !important; background: #22d3ee; box-shadow: 0 0 8px #22d3ee; }

@keyframes kfabSpark {
  0%   { transform: translate(30px, 30px) scale(0);   opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translate(var(--sx, 70px), var(--sy, -20px)) scale(1); opacity: 0; }
}
.kfab-spark    { --sx:  85px; --sy: -15px; }
.kfab-spark--2 { --sx: -10px; --sy: -50px; }
.kfab-spark--3 { --sx:  60px; --sy: -80px; }

/* Mobile */
@media (max-width: 600px) {
  .kfab { bottom: 18px; left: 16px; gap: 10px; }
  .kfab-btn { width: 52px; height: 52px; }
  .kfab-icon, .kfab-lamp { width: 22px; height: 22px; }
  .kfab-label { display: none; }
}

/* ═══════════════════════════════════════
   SINGLE POST / PAGE
═══════════════════════════════════════ */
.page-banner {
  background: var(--color-primary-dark);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,211,238,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 12px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-dim);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--color-accent); }
.breadcrumb-sep { color: var(--color-text-dim); }

.content-area {
  background: var(--color-surface);
  padding: 80px 0;
}
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.content-layout.no-sidebar { grid-template-columns: 1fr; max-width: 800px; }

/* Article */
.post-article { background: var(--color-surface-2); border-radius: var(--radius); padding: 40px; border: 1px solid var(--color-border-cyan); }
.post-header { margin-bottom: 32px; }
.post-category-badge {
  display: inline-block;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.post-article h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; }
.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.post-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.post-meta-item svg { width: 15px; height: 15px; stroke: var(--color-accent); fill: none; stroke-width: 1.5; }

.post-thumbnail { border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.post-thumbnail img { width: 100%; height: auto; filter: brightness(0.85); }

.post-content { color: var(--color-text-muted); line-height: 1.9; }
.post-content h2 { font-size: 1.5rem; color: var(--color-text); margin: 2rem 0 1rem; padding-right: 16px; border-right: 3px solid var(--color-accent); }
.post-content h3 { font-size: 1.25rem; color: var(--color-text); margin: 1.5rem 0 0.75rem; }
.post-content p  { margin-bottom: 1.25rem; }
.post-content ul, .post-content ol { padding-right: 24px; margin-bottom: 1.25rem; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 0.5rem; color: var(--color-text-muted); }
.post-content a  { color: var(--color-accent); }
.post-content a:hover { color: var(--color-electric); }
.post-content blockquote {
  border-right: 3px solid var(--color-accent);
  padding: 16px 20px;
  background: rgba(249,115,22,0.05);
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--color-text-muted);
}
.post-content img { border-radius: var(--radius-sm); margin: 1.5rem 0; }
.post-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.post-content th, .post-content td { padding: 12px 16px; text-align: right; border: 1px solid var(--color-border); }
.post-content th { background: var(--color-primary); color: var(--color-text); font-weight: 700; }
.post-content td { background: var(--color-surface); }

/* Post tags */
.post-tags { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--color-border); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.post-tags .tag-label { font-size: 0.85rem; color: var(--color-text-dim); font-weight: 700; }
.post-tags a {
  background: var(--color-surface-3);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 100px;
  transition: var(--transition-fast);
}
.post-tags a:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

/* Sidebar */
.sidebar .widget {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-cyan);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar .widget-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

/* Related Posts */
.related-posts { padding: 48px 0; }
.related-posts h3 { font-size: 1.5rem; margin-bottom: 24px; }

/* ═══════════════════════════════════════
   ARCHIVE PAGE
═══════════════════════════════════════ */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.pagination-wrap { text-align: center; margin-top: 48px; }
.nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  font-weight: 700;
  transition: var(--transition-fast);
  text-decoration: none;
}
.page-numbers:hover,
.page-numbers.current {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* ═══════════════════════════════════════
   404 PAGE
═══════════════════════════════════════ */
.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
  background: var(--color-dark);
}
.error-404-content { max-width: 600px; }
.error-number {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-accent), var(--color-electric));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  font-family: var(--font-en);
}
.error-404-content h2 { font-size: 2rem; margin-bottom: 16px; }
.error-404-content p  { margin-bottom: 32px; }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* Tablet – 1024px */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-left: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: auto; aspect-ratio: 1; }
  .why-grid      { grid-template-columns: 1fr; }
  .why-image-wrap { max-width: 600px; margin: 0 auto; }
  .equipment-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand  { grid-column: span 2; order: 1; }
  .footer-col-contact { grid-column: span 2; order: 2; } /* Contact prominent right after brand */
  .footer-col { order: 3; }
  .content-layout { grid-template-columns: 1fr; }
  .content-layout .sidebar { order: -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-col-contact { grid-column: span 1; }
}

/* Mobile Menu – default (hidden on desktop) */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(4,6,16,0.97);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li a {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-text);
  padding: 14px 32px;
  text-decoration: none;
  transition: var(--transition-fast);
}
.mobile-menu ul li a:hover,
.mobile-menu ul li.current-menu-item > a { color: var(--color-accent); }
.mobile-menu ul .sub-menu {
  margin-top: 4px;
  padding-bottom: 8px;
}
.mobile-menu ul .sub-menu li a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 8px 32px;
}
.mobile-menu .mobile-contact {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: min(320px, 80%);
}
.mobile-menu .mobile-contact .btn { width: 100%; justify-content: center; }

/* Mobile – 768px */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .primary-nav,
  .header-cta .header-phone,
  .header-cta .header-wa,
  .top-bar-items { display: none; }

  .menu-toggle { display: flex; }

  .hero-content { max-width: 100%; padding: 100px 0 60px; }
  .hero-actions  { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item  { border-left: none; border-bottom: 1px solid rgba(249,115,22,0.1); }

  .services-grid { grid-template-columns: 1fr; }

  .why-content { padding-right: 0; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }

  .blog-grid { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* .whatsapp-float replaced by .kfab — see Floating Action Buttons block above */

  .archive-grid { grid-template-columns: 1fr; }

  .post-article { padding: 24px; }
  .post-meta    { gap: 12px; }
}

/* Small Mobile – 480px */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.55rem; line-height: 1.35; }
  .hero p, .hero-lead { font-size: 0.95rem; }
  .hero-badge { font-size: 0.75rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 24px; }
  .services-section { clip-path: none; }
}

/* ═══════════════════════════════════════
   ♿ ACCESSIBILITY & PERFORMANCE
═══════════════════════════════════════ */

/* Respect users who prefer reduced motion (Accessibility + SEO signal) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .el-spark, .rain-spark, .storm-bolt,
  .spark-burst, .break-glow, .cable-damaged, .cable-inner,
  .van, .van-siren, .speed-line, .check-pop,
  .call-pulse, .cta-pulse-ring, .cta-icon,
  .danger-flag, .danger-timer, .bridge-path,
  .logo-spark { animation: none !important; }
}

/* Optimize off-screen rendering (skip painting hidden sections) */
.rescue-section,
.process-section,
.testimonials-section,
.areas-section,
.gallery-section,
.equipment-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* GPU hints for animated elements */
.el-spark, .rain-spark, .storm-bolt,
.spark-burst, .van, .check-pop,
.call-pulse, .cta-pulse-ring, .logo-spark,
.card-shine {
  will-change: transform, opacity;
}

/* ═══════════════════════════════════════
   🏙️ HERO CITIES STRIP (Local SEO)
═══════════════════════════════════════ */
.hero-cities {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 28px;
  padding: 10px 16px;
  background: rgba(15,23,42,0.4);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  width: fit-content;
}
.cities-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
}
.city-pill {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.3);
  color: var(--color-cyan);
}
.city-pill.primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-electric));
  border-color: transparent;
  color: var(--color-dark);
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}
.cities-extra {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  margin-right: 4px;
}

@media (max-width: 600px) {
  .hero-cities { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════
   ⚡ LIVE ELECTRIC STRIP (under header) ⚡
═══════════════════════════════════════ */
.electric-strip {
  position: relative;
  height: 14px;
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(34,211,238,0.04) 0%, transparent 60%),
    linear-gradient(180deg, transparent 40%, rgba(249,115,22,0.06) 100%);
  border-top: 1px solid rgba(34,211,238,0.12);
  border-bottom: 1px solid rgba(249,115,22,0.12);
  pointer-events: none;
}
.electric-strip::before,
.electric-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.electric-strip::before {
  background: linear-gradient(90deg, transparent 0%, rgba(251,191,36,0.18) 50%, transparent 100%);
  width: 30%;
  animation: elScan 4s linear infinite;
}
@keyframes elScan {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}
.el-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.el-bolt {
  stroke-dasharray: 60 1540;
  stroke-dashoffset: 0;
  animation: elFlow 3.5s linear infinite;
  opacity: 0.85;
}
@keyframes elFlow {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1600; }
}
.el-spark {
  position: absolute;
  top: 50%;
  left: var(--p);
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow:
    0 0 6px #fbbf24,
    0 0 14px 2px rgba(251,191,36,0.7),
    0 0 24px 4px rgba(249,115,22,0.4);
  animation: elSparkFlash 2.2s ease-in-out var(--d) infinite;
}
@keyframes elSparkFlash {
  0%, 100% { opacity: 0; transform: scale(0.3); }
  10%      { opacity: 1; transform: scale(1.4); }
  25%      { opacity: 0.7; transform: scale(0.8); }
  40%      { opacity: 1; transform: scale(1.1); }
  60%      { opacity: 0; transform: scale(0.4); }
}

/* ═══════════════════════════════════════
   🚨 RESCUE SCENE (Before / After)
═══════════════════════════════════════ */
.rescue-section {
  position: relative;
  padding: 100px 0 110px;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(239,68,68,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(16,185,129,0.08) 0%, transparent 55%),
    var(--color-darker);
  overflow: hidden;
  border-top: 1px solid rgba(249,115,22,0.15);
  border-bottom: 1px solid rgba(249,115,22,0.15);
}

/* ─ Storm background ─ */
.storm-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.storm-bolt {
  position: absolute;
  width: 60px;
  height: 200px;
  opacity: 0;
  filter: drop-shadow(0 0 16px currentColor);
  animation: stormStrike 6s ease-in-out infinite;
}
.storm-bolt-1 { top: 10%;  right: 6%;  color: #fbbf24; animation-delay: 0s; }
.storm-bolt-2 { top: 45%;  right: 48%; color: #22d3ee; animation-delay: 2.3s; transform: rotate(15deg); }
.storm-bolt-3 { top: 18%;  left: 8%;   color: #f97316; animation-delay: 4.1s; transform: rotate(-10deg); }
@keyframes stormStrike {
  0%, 8%   { opacity: 0; transform: translateY(-20px) rotate(var(--r, 0deg)); }
  10%      { opacity: 0.85; transform: translateY(0) rotate(var(--r, 0deg)); }
  12%      { opacity: 0.2; }
  14%      { opacity: 0.9; }
  18%      { opacity: 0.1; }
  100%     { opacity: 0; }
}
.rain-spark {
  position: absolute;
  top: -10px;
  left: var(--rx);
  width: 3px;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(251,191,36,0.7), transparent);
  border-radius: 50%;
  filter: blur(0.6px);
  animation: rainFall 3s linear var(--rd) infinite;
  opacity: 0;
}
@keyframes rainFall {
  0%   { opacity: 0; transform: translateY(-10vh) scaleY(0.5); }
  20%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(100vh) scaleY(1.5); }
}

/* ─ Section header danger style ─ */
.danger-label {
  background: rgba(239,68,68,0.12) !important;
  border-color: rgba(239,68,68,0.4) !important;
  color: #fca5a5 !important;
  animation: dangerPulse 2s ease-in-out infinite;
}
@keyframes dangerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
  50%      { box-shadow: 0 0 0 14px rgba(239,68,68,0); }
}
.danger-text {
  background: linear-gradient(135deg, #ef4444 0%, #fbbf24 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─ Rescue Flow Grid ─ */
.rescue-flow {
  display: grid;
  grid-template-columns: 1fr 0.4fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}

.rescue-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: transform 0.4s;
}
.rescue-card:hover { transform: translateY(-6px); }

.danger-card {
  background: linear-gradient(160deg, rgba(239,68,68,0.1) 0%, var(--color-surface-2) 100%);
  border: 1px solid rgba(239,68,68,0.3);
  box-shadow: 0 0 40px rgba(239,68,68,0.1);
}
.safe-card {
  background: linear-gradient(160deg, rgba(16,185,129,0.08) 0%, var(--color-surface-2) 100%);
  border: 1px solid rgba(16,185,129,0.3);
  box-shadow: 0 0 40px rgba(16,185,129,0.1);
}

.card-flag {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.danger-flag {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff;
  box-shadow: 0 4px 16px rgba(220,38,38,0.5);
  animation: flagShake 3s ease-in-out infinite;
}
@keyframes flagShake {
  0%, 92%, 100% { transform: rotate(0); }
  94%           { transform: rotate(-3deg); }
  96%           { transform: rotate(3deg); }
  98%           { transform: rotate(-2deg); }
}
.safe-flag {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  box-shadow: 0 4px 16px rgba(5,150,105,0.45);
}

/* ─ Illustration area ─ */
.rescue-illu {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.012) 0 12px, transparent 12px 24px),
    rgba(8,12,26,0.55);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 18px;
  margin-bottom: 20px;
  overflow: hidden;
}
.illu-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ─ Damaged cable animations ─ */
.cable-damaged { animation: cableShake 0.18s ease-in-out infinite; }
@keyframes cableShake {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(0.4px, -0.4px); }
  75%      { transform: translate(-0.4px, 0.4px); }
}
.cable-inner {
  stroke-dasharray: 4 6;
  animation: dashMove 0.6s linear infinite;
}
@keyframes dashMove { to { stroke-dashoffset: -20; } }

.break-glow {
  transform-origin: 150px 130px;
  animation: breakPulse 0.5s ease-in-out infinite;
  filter: drop-shadow(0 0 10px #fbbf24);
}
@keyframes breakPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50%      { transform: scale(1.5); opacity: 1; }
}

.spark-burst {
  transform-origin: 150px 130px;
  animation: burstRotate 1s linear infinite, burstFlash 0.4s ease-in-out infinite;
}
@keyframes burstRotate {
  from { transform: translate(150px, 130px) rotate(0deg); }
  to   { transform: translate(150px, 130px) rotate(360deg); }
}
@keyframes burstFlash {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

/* ─ Van + technician animations ─ */
.van {
  animation: vanArrive 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes vanArrive {
  0%   { transform: translate(180px, 100px); opacity: 0; }
  60%  { transform: translate(20px, 100px); opacity: 1; }
  100% { transform: translate(30px, 100px); opacity: 1; }
}
.van-siren {
  animation: sirenBlink 0.55s steps(2, end) infinite;
}
@keyframes sirenBlink {
  0%, 49%   { fill: #ef4444; }
  50%, 100% { fill: #22d3ee; }
}
.speed-line {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: speedDraw 0.6s ease-out infinite;
  opacity: 0.7;
}
@keyframes speedDraw {
  0%   { stroke-dashoffset: 30; opacity: 0; }
  50%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -30; opacity: 0; }
}

.check-pop {
  transform-origin: 155px 40px;
  animation: checkPop 1.6s ease-out 1.2s both, checkPulse 2s ease-in-out 2.8s infinite;
}
@keyframes checkPop {
  0%   { transform: translate(155px, 40px) scale(0); }
  60%  { transform: translate(155px, 40px) scale(1.3); }
  100% { transform: translate(155px, 40px) scale(1); }
}
@keyframes checkPulse {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(16,185,129,0.5)); }
  50%      { filter: drop-shadow(0 0 16px rgba(16,185,129,1)); }
}

/* ─ Timers ─ */
.illu-timer {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
}
.danger-timer {
  background: rgba(239,68,68,0.18);
  color: #fca5a5;
  border: 1px solid rgba(239,68,68,0.4);
  animation: tickShake 1s ease-in-out infinite;
}
.safe-timer {
  background: rgba(16,185,129,0.18);
  color: #6ee7b7;
  border: 1px solid rgba(16,185,129,0.4);
}
@keyframes tickShake {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-1px); }
  40%      { transform: translateX(1px); }
  60%      { transform: translateX(-1px); }
  80%      { transform: translateX(1px); }
}

.danger-title, .safe-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.danger-title { color: #fca5a5; }
.safe-title   { color: #6ee7b7; }

.rescue-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rescue-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}
.rescue-list .li-emoji {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  font-size: 1rem;
}
.safe-list li { color: rgba(248,250,252,0.85); }

/* ─ Bridge / arrow between cards ─ */
.rescue-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  position: relative;
}
.bridge-call {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-electric));
  color: var(--color-dark);
  font-weight: 800;
  font-size: 0.875rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(249,115,22,0.4);
}
.call-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 2px solid var(--color-accent);
  animation: callPulse 1.8s ease-out infinite;
}
@keyframes callPulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}
.bridge-arrow {
  width: 100%;
  max-width: 200px;
  height: auto;
  transform: scaleX(-1); /* point right→left for RTL flow */
}
.bridge-path {
  stroke-dasharray: 6 6;
  stroke-dashoffset: 0;
  animation: bridgeFlow 1s linear infinite;
}
@keyframes bridgeFlow { to { stroke-dashoffset: -24; } }
.bridge-text {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-electric);
  letter-spacing: 0.5px;
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.3);
  padding: 6px 14px;
  border-radius: 8px;
}

/* ─ Emergency CTA banner ─ */
.rescue-cta-banner {
  position: relative;
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: linear-gradient(110deg, rgba(239,68,68,0.18) 0%, rgba(249,115,22,0.12) 50%, rgba(251,191,36,0.08) 100%);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.rescue-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  width: 30%;
  animation: elScan 5s linear infinite;
  pointer-events: none;
}
.cta-pulse-ring {
  position: absolute;
  top: 50%;
  right: 32px;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  border: 2px solid #ef4444;
  border-radius: 50%;
  pointer-events: none;
  animation: ctaRing 1.5s ease-out infinite;
}
@keyframes ctaRing {
  0%   { opacity: 0.8; transform: scale(0.7); }
  100% { opacity: 0; transform: scale(1.8); }
}
.cta-icon {
  font-size: 2.6rem;
  flex-shrink: 0;
  animation: ctaShake 1.2s ease-in-out infinite;
}
@keyframes ctaShake {
  0%, 100% { transform: rotate(0); }
  25%      { transform: rotate(-10deg); }
  75%      { transform: rotate(10deg); }
}
.cta-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cta-content strong {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-text);
}
.cta-content span {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
.cta-btn {
  flex-shrink: 0;
}

/* Responsive – Rescue Scene */
@media (max-width: 1024px) {
  .rescue-flow { grid-template-columns: 1fr; gap: 32px; }
  .rescue-bridge {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .bridge-arrow { max-width: 120px; transform: rotate(90deg); }
  .storm-bolt { width: 40px; height: 140px; }
}
@media (max-width: 600px) {
  .rescue-cta-banner { flex-direction: column; text-align: center; padding: 24px 20px; }
  .cta-pulse-ring { display: none; }
  .cta-btn { width: 100%; justify-content: center; }
  .rescue-card { padding: 22px; }
}

/* ═══════════════════════════════════════
   SERVICES V2 – Image-rich Premium Cards
═══════════════════════════════════════ */
.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.service-card-v2 {
  --card-accent: var(--color-accent);
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  isolation: isolate;
}
.service-card-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1.5px;
  background: linear-gradient(135deg, transparent 0%, var(--card-accent) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 2;
}
.service-card-v2:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 50px color-mix(in srgb, var(--card-accent) 25%, transparent);
  border-color: transparent;
}
.service-card-v2:hover::before { opacity: 1; }

.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* ─ Media area with image + logo watermark ─ */
.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s;
  filter: saturate(0.85) brightness(0.85);
}
.service-card-v2:hover .card-media img {
  transform: scale(1.1);
  filter: saturate(1.15) brightness(0.95);
}
.card-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 65%, rgba(8,12,26,0.45) 90%, var(--color-surface) 100%);
  z-index: 1;
}
.card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 14px,
    rgba(255,255,255,0.018) 14px,
    rgba(255,255,255,0.018) 28px
  );
  z-index: 1;
  pointer-events: none;
}

/* ─ Number badge ─ */
.card-num {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  background: rgba(8,12,26,0.65);
  border: 1px solid color-mix(in srgb, var(--card-accent) 40%, transparent);
  backdrop-filter: blur(8px);
  padding: 4px 14px;
  border-radius: 999px;
  text-shadow: 0 0 12px color-mix(in srgb, var(--card-accent) 60%, transparent);
}

/* ─ Watermark "كهربتي" ─ */
.card-watermark {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 3;
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  background: rgba(8,12,26,0.6);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(249,115,22,0.3);
}

/* ─ Animated shine ─ */
.card-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.9s ease;
}
.service-card-v2:hover .card-shine { transform: translateX(100%); }

/* ─ Body ─ */
.card-body {
  position: relative;
  padding: 28px 26px 26px;
}

/* Floating icons hidden entirely - number badge + watermark are sufficient visual identifiers */
.card-icon { display: none !important; }

.card-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-text);
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1.55;
  transition: color 0.3s;
}

/* Enhance the number badge to compensate for removed icons */
.card-media .card-num {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 12px;
  font-size: 1.25rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--card-accent) 90%, transparent), color-mix(in srgb, var(--card-accent) 60%, transparent));
  color: #fff;
  border: 1px solid color-mix(in srgb, var(--card-accent) 60%, transparent);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--card-accent) 40%, transparent);
}
.service-card-v2:hover .card-body h3 { color: var(--card-accent); }

.card-body p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.card-body p strong {
  color: inherit;
  font-weight: inherit;
}

/* ─ Keyword tags ─ */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.card-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  padding: 4px 10px;
  border-radius: 999px;
  transition: var(--transition-fast);
}
.service-card-v2:hover .card-tags span {
  border-color: color-mix(in srgb, var(--card-accent) 35%, transparent);
  background: color-mix(in srgb, var(--card-accent) 6%, transparent);
  color: rgba(255,255,255,0.85);
}

/* ─ CTA arrow ─ */
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--card-accent);
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  width: 100%;
  transition: gap 0.3s;
}
.card-cta svg { width: 14px; height: 14px; transition: transform 0.3s; }
.service-card-v2:hover .card-cta { gap: 14px; }
.service-card-v2:hover .card-cta svg { transform: translateX(-4px); }

/* ─ Premium logo mark in header ─ */
.logo-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark img {
  mix-blend-mode: screen;
  transition: transform 0.4s;
}
.site-logo:hover .logo-mark img { transform: rotate(-6deg) scale(1.05); }
.logo-spark {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-electric);
  box-shadow: 0 0 12px var(--color-electric), 0 0 4px #fff;
  animation: logo-pulse 2s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.8); }
  50%      { opacity: 1; transform: scale(1.2); }
}

/* Responsive – Service Cards V2 */
@media (max-width: 1024px) {
  .services-grid-v2 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 600px) {
  .services-grid-v2 { grid-template-columns: 1fr; }
  .card-body { padding: 24px 20px; }
  .card-tags span { font-size: 0.65rem; }
}

/* ═══════════════════════════════════════
   🏙️ CITY HUB PAGES (Local SEO)
═══════════════════════════════════════ */
.city-hero { padding: 140px 0 70px; }
.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 14px;
  background: rgba(34,211,238,0.12);
  border: 1px solid rgba(34,211,238,0.35);
  border-radius: 999px;
  color: var(--color-cyan);
  margin-bottom: 14px;
}
.city-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
.quick-stat {
  flex: 1 1 180px;
  background: rgba(15,23,42,0.55);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  backdrop-filter: blur(8px);
}
.quick-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-accent), var(--color-electric));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.quick-stat span { color: var(--color-text-muted); font-size: 0.85rem; }

.local-advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0 32px;
}
.advantage-item {
  background: linear-gradient(145deg, var(--color-surface-2) 0%, var(--color-surface) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px;
  transition: var(--transition);
}
.advantage-item:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.advantage-item .adv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 12px;
  margin-bottom: 12px;
}
.advantage-item strong {
  display: block;
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 800;
  margin-bottom: 6px;
}
.advantage-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

.districts-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 12px;
}

.services-quick-intro {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.services-quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 16px 0 32px;
}
.quick-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 700;
  transition: var(--transition);
}
.quick-link:hover {
  background: rgba(249,115,22,0.08);
  border-color: var(--color-accent);
  transform: translateX(-4px);
}

@media (max-width: 768px) {
  .local-advantages,
  .services-quick-links { grid-template-columns: 1fr; }
}

.city-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}
.city-service-link {
  position: relative;
  display: block;
  padding: 22px 24px 22px 60px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
.city-service-link:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-sm);
}
.city-service-link .cs-num {
  position: absolute;
  top: 22px;
  left: 22px;
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-accent);
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.3);
  padding: 4px 10px;
  border-radius: 8px;
}
.city-service-link h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.city-service-link:hover h3 { color: var(--color-accent); }
.city-service-link p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.districts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 32px;
}
.district {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  background: rgba(34,211,238,0.06);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}
.district:hover {
  background: rgba(34,211,238,0.12);
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}

.city-stories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0 32px;
}
.story-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 22px;
}
.story-rating {
  color: var(--color-electric);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.story-card p {
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.story-card strong {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 700;
}

@media (max-width: 768px) {
  .city-services-grid,
  .city-stories { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   IN-CONTENT IMAGES – Branded with Watermark
═══════════════════════════════════════ */
.content-image {
  position: relative;
  width: 100%;
  margin: 32px 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  isolation: isolate;
}
.content-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) brightness(0.9);
  transition: filter 0.4s, transform 0.6s;
}
.content-image:hover img { filter: saturate(1.1) brightness(1); transform: scale(1.02); }
.content-image::before {
  content: '⚡ كهربتي';
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, rgba(249,115,22,0.92), rgba(251,191,36,0.92));
  padding: 6px 14px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(249,115,22,0.4);
  backdrop-filter: blur(6px);
}
.content-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,12,26,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}
.content-image figcaption {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  max-width: 60%;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(8,12,26,0.7);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
}

/* Featured image at top of article */
.article-featured {
  position: relative;
  width: 100%;
  margin: -24px 0 36px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  isolation: isolate;
}
.article-featured img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) brightness(0.78);
}
.article-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(249,115,22,0.18) 0%, transparent 55%),
    linear-gradient(180deg, transparent 30%, rgba(8,12,26,0.7) 100%);
}
.article-featured-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.article-featured-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(249,115,22,0.95), rgba(251,191,36,0.95));
  color: #0f1a3d;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(249,115,22,0.45);
  letter-spacing: 0.3px;
}
.article-featured-brand {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  background: rgba(8,12,26,0.7);
  padding: 8px 14px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(249,115,22,0.4);
}

@media (max-width: 768px) {
  .article-featured img { aspect-ratio: 16 / 10; }
  .article-featured-overlay { padding: 20px; }
  .content-image::before { font-size: 0.75rem; padding: 4px 10px; }
  .content-image figcaption { font-size: 0.7rem; max-width: 55%; }
}

/* ═══════════════════════════════════════
   PROCESS / HOW WE WORK SECTION
═══════════════════════════════════════ */
.process-section {
  background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-primary-dark) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(34,211,238,0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(249,115,22,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.process-step {
  position: relative;
  background: rgba(15,23,42,0.65);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 28px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.process-step:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-glow);
}
.process-step::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -16px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent));
  transform: translateY(-50%);
}
.process-step:last-child::after { display: none; }
.process-step-num {
  position: absolute;
  top: -16px;
  right: 24px;
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-electric);
  background: var(--color-darker);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  letter-spacing: 1px;
}
.process-step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(251,191,36,0.1));
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 50%;
  color: var(--color-accent);
}
.process-step-icon svg { width: 32px; height: 32px; }
.process-step h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════ */
.testimonials-section {
  background: var(--color-dark);
  padding: 100px 0;
  position: relative;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: linear-gradient(160deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 24px;
  font-family: 'Georgia', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.18;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,115,22,0.4);
  box-shadow: var(--shadow-card-hover);
}
.testimonial-card.featured {
  border-color: var(--color-accent);
  background: linear-gradient(160deg, rgba(249,115,22,0.08) 0%, var(--color-surface-2) 100%);
  box-shadow: var(--shadow-glow-sm);
}
.testimonial-stars {
  color: var(--color-electric);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial-text {
  color: var(--color-text);
  line-height: 1.85;
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-weight: 500;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-electric));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--color-dark);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  color: var(--color-text);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.testimonial-author span {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════
   📚 CONTACT CHANNELS (Contact Page)
═══════════════════════════════════════ */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 36px;
}
.contact-channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
.contact-channel-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.contact-channel-card.primary { border-color: var(--color-accent); background: linear-gradient(135deg, rgba(249,115,22,0.08), var(--color-surface-2)); }
.contact-channel-card.whatsapp { border-color: rgba(37,211,102,0.4); }
.cc-icon { font-size: 2rem; flex-shrink: 0; }
.cc-content { display: flex; flex-direction: column; gap: 2px; }
.cc-content strong { font-size: 0.95rem; color: var(--color-text); font-weight: 800; }
.cc-content span { font-size: 1.05rem; color: var(--color-accent); font-weight: 700; }
.cc-content small { font-size: 0.78rem; color: var(--color-text-muted); }

.contact-page-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 768px) {
  .contact-channels { grid-template-columns: 1fr; }
  .contact-page-form .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   📚 RICH CONTENT IN CITY PAGES
═══════════════════════════════════════ */
.article-content h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-accent);
  margin: 24px 0 10px;
}

/* ═══════════════════════════════════════
   📚 RICH CONTENT SECTION (Long-form SEO)
═══════════════════════════════════════ */
.rich-content-section {
  background: linear-gradient(180deg, var(--color-darker) 0%, var(--color-dark) 100%);
  padding: 100px 0;
  position: relative;
}
.rich-content-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(249,115,22,0.04) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(34,211,238,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.rich-content-wrap {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.rich-content-section .article-content {
  background: rgba(15,23,42,0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  backdrop-filter: blur(10px);
}
.rich-content-section .article-content h2 {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--color-text);
  margin: 48px 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-border);
  position: relative;
  line-height: 1.4;
}
.rich-content-section .article-content h2:first-child { margin-top: 0; }
.rich-content-section .article-content h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-electric));
}
.rich-content-section .article-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-accent);
  margin: 28px 0 10px;
}
.rich-content-section .article-content p {
  color: var(--color-text-muted);
  line-height: 1.95;
  font-size: 1rem;
  margin-bottom: 16px;
}
.rich-content-section .article-list {
  margin: 18px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rich-content-section .article-list li {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.85;
  padding-right: 24px;
  position: relative;
}
.rich-content-section .article-list li::before {
  content: '⚡';
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 0.9rem;
  color: var(--color-accent);
}

/* ═══════════════════════════════════════
   ❓ FAQ SECTION (Homepage)
═══════════════════════════════════════ */
.faq-section {
  background: var(--color-dark);
  padding: 90px 0;
  position: relative;
}
.faq-section .article-faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .rich-content-section { padding: 70px 0; }
  .rich-content-section .article-content { padding: 32px 24px; }
  .rich-content-section .article-content h2 { font-size: 1.35rem; }
  .rich-content-section .article-content h3 { font-size: 1.05rem; }
  .rich-content-section .article-content p { font-size: 0.95rem; }
}

/* ═══════════════════════════════════════
   🏙️ BRANCHES SECTION (3 City Hubs)
═══════════════════════════════════════ */
.branches-section {
  background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-primary-dark) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.branches-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(34,211,238,0.08) 0%, transparent 45%),
    radial-gradient(circle at 75% 70%, rgba(249,115,22,0.08) 0%, transparent 45%);
  pointer-events: none;
}
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}
.branch-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  isolation: isolate;
}
.branch-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-accent);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 50px rgba(249,115,22,0.18);
}
.branch-card.primary-branch {
  border-color: rgba(249,115,22,0.4);
  box-shadow: 0 0 30px rgba(249,115,22,0.15);
}
.branch-card.primary-branch::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-electric), var(--color-cyan));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

.branch-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.branch-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: saturate(0.85) brightness(0.78);
}
.branch-card:hover .branch-media img {
  transform: scale(1.08);
  filter: saturate(1.1) brightness(0.92);
}
.branch-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,12,26,0.65) 100%);
  z-index: 1;
}
.branch-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  background: rgba(8,12,26,0.75);
  border: 1px solid rgba(249,115,22,0.3);
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.primary-branch .branch-badge {
  background: linear-gradient(135deg, var(--color-accent), var(--color-electric));
  color: var(--color-dark);
  border-color: transparent;
}

.branch-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.branch-header h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}
.primary-branch .branch-header h3 {
  background: linear-gradient(135deg, var(--color-accent), var(--color-electric));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.branch-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.branch-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
  background: rgba(8,12,26,0.4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.branch-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.branch-stats strong {
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-electric);
  line-height: 1;
}
.branch-stats span {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.branch-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0;
}

.branch-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-accent);
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
  transition: gap 0.3s;
}
.branch-card:hover .branch-cta { gap: 14px; }

.branches-extra {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.branches-extra > span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .branches-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .branches-grid { grid-template-columns: 1fr; }
  .branches-extra { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════
   SERVICE AREAS SECTION (legacy – kept for backward compat)
═══════════════════════════════════════ */
.areas-section {
  background: linear-gradient(180deg, var(--color-primary-dark) 0%, var(--color-dark) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.areas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(34,211,238,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.area-card {
  background: rgba(15,23,42,0.65);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  cursor: default;
}
.area-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-cyan);
  box-shadow: 0 0 30px rgba(34,211,238,0.18);
}
.area-pin {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.area-card strong {
  font-size: 1.05rem;
  color: var(--color-text);
  font-weight: 800;
}
.area-card span:not(.area-pin) {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.areas-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* Responsive – new sections */
@media (max-width: 1024px) {
  .process-flow      { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-step::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid        { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .process-flow { grid-template-columns: 1fr; }
  .areas-grid   { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════
   ARTICLE PAGE TEMPLATES
═══════════════════════════════════════ */

/* ── Article Hero ── */
.article-hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(249,115,22,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.article-h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.3;
  margin: 20px 0 16px;
}
.article-hero-sub {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 700px;
  line-height: 1.7;
}
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  color: var(--color-text-dim);
  font-size: 0.875rem;
}
.article-meta-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Article Wrap ── */
.article-wrap {
  padding: 64px 0 80px;
  background: var(--color-darker);
}
.article-layout {
  max-width: 900px;
  margin: 0 auto;
}

/* ── Article Content ── */
.article-content {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
}
.article-intro {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--color-text-muted);
  border-right: 4px solid var(--color-accent);
  padding-right: 20px;
  margin-bottom: 40px;
  background: rgba(249,115,22,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 20px 20px 20px;
  border-right: 4px solid var(--color-accent);
}
.article-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
  position: relative;
}
.article-content h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 60px;
  height: 2px;
  background: var(--color-accent);
}
.article-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 28px 0 10px;
}
.article-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}
.article-content p {
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
/* ═══════════════════════════════════════
   🔑 KEYWORD NEUTRALIZATION (Modern SEO 2026)
   Keywords in body text look IDENTICAL to surrounding text
   – no bold, no color, no underline, no background.
   Semantic <strong> tags preserved for Google to read.
═══════════════════════════════════════ */
.hero-sub strong,
.hero-sub b,
.card-body p strong,
.card-body p b,
.article-content strong,
.article-content b,
.article-content p strong,
.article-content p b,
.article-content li strong,
.article-content li b,
.article-intro strong,
.article-intro b,
.branch-desc strong,
.branch-desc b,
.services-quick-intro strong,
.services-quick-intro b,
.story-card p strong,
.story-card p b,
.testimonial-text strong,
.testimonial-text b,
.rescue-list li strong,
.rescue-list li b {
  color: inherit !important;
  font-weight: inherit !important;
  background: none !important;
  padding: 0 !important;
  text-decoration: none !important;
  border: none !important;
}

/* ── Article List ── */
.article-list {
  list-style: none;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-list li {
  color: var(--color-text-muted);
  padding-right: 20px;
  position: relative;
  line-height: 1.7;
}
.article-list li::before {
  content: '⚡';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.85rem;
}

/* ── Article Cards Grid ── */
.article-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.article-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.article-card:hover {
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-sm);
}
.article-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.article-card h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--color-text);
}
.article-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Article Steps ── */
.article-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: var(--transition);
}
.step-item:hover { border-color: rgba(249,115,22,0.3); }
.step-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-electric));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: var(--color-dark);
  flex-shrink: 0;
}
.step-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Article Why Grid ── */
.article-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.article-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
}
.why-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249,115,22,0.08);
  border-radius: var(--radius-sm);
}
.article-why-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 4px;
}
.article-why-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Article Table ── */
.article-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.article-table th {
  background: rgba(249,115,22,0.08);
  color: var(--color-accent);
  padding: 14px 16px;
  text-align: right;
  font-weight: 700;
  border-bottom: 1px solid var(--color-border);
}
.article-table td {
  padding: 12px 16px;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-align: right;
}
.article-table tr:last-child td { border-bottom: none; }
.article-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ── FAQ ── */
.article-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.faq-item {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[open] { border-color: rgba(249,115,22,0.35); }
.faq-item summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::after {
  content: '＋';
  font-size: 1.2rem;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] summary::after {
  content: '－';
}
.faq-item p {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── Article CTA ── */
.article-cta {
  background: linear-gradient(135deg, rgba(249,115,22,0.1) 0%, rgba(251,191,36,0.06) 100%);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  text-align: center;
  margin: 48px 0;
}
.article-cta h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 10px;
}
.article-cta p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}
.article-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Service Availability in Cities (internal linking) ── */
.availability-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0 32px;
}
.avail-city {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(34,211,238,0.06) 0%, var(--color-surface-2) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
.avail-city:hover {
  border-color: var(--color-cyan);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(34,211,238,0.15);
}
.ac-pin {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.3);
  border-radius: 50%;
  font-size: 1.1rem;
}
.avail-city > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.avail-city strong {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 800;
}
.avail-city > div > span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
@media (max-width: 768px) {
  .availability-cities { grid-template-columns: 1fr; }
}

/* ── Related Services ── */
.related-services {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}
.related-services h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
}
.related-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.related-service-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 40px;
  padding: 10px 18px;
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition-fast);
}
.related-service-card:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
  background: rgba(249,115,22,0.08);
}
.rs-icon { font-size: 1rem; }

/* ── Responsive – Articles ── */
@media (max-width: 768px) {
  .article-hero { padding: 120px 0 48px; }
  .article-content { padding: 32px 24px; }
  .article-cards-grid { grid-template-columns: 1fr; }
  .article-why-grid { grid-template-columns: 1fr; }
  .article-cta { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .article-h1 { font-size: 1.6rem; }
  .article-cta-btns .btn { width: 100%; justify-content: center; }
}
