/* ═══════════════════════════════════════════════════════════
   AL NOOR COOLING CENTER  |  Premium Dark UI v2.0
   Motion-Driven · Glassmorphism · Neon Glow · Animated
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Lexend:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg:           #030912;
  --bg-2:         #071525;
  --bg-3:         #0d2040;
  --bg-card:      rgba(7,21,37,.7);
  --blue:         #0ea5e9;
  --blue-bright:  #38bdf8;
  --blue-dim:     #0369a1;
  --cyan:         #06b6d4;
  --cyan-light:   #67e8f9;
  --indigo:       #6366f1;
  --glass-bg:     rgba(14,165,233,.055);
  --glass-bg-2:   rgba(14,165,233,.09);
  --glass-border: rgba(14,165,233,.18);
  --glass-border-bright: rgba(56,189,248,.4);
  --text:         #f1f5f9;
  --text-muted:   #94a3b8;
  --text-dim:     #64748b;
  --white:        #ffffff;
  --green:        #22c55e;
  --red:          #ef4444;
  --yellow:       #f59e0b;
  --radius:       18px;
  --radius-sm:    12px;
  --radius-xs:    8px;
  --shadow-blue:  0 8px 32px rgba(14,165,233,.25), 0 2px 8px rgba(14,165,233,.15);
  --shadow-xl:    0 20px 60px rgba(0,0,0,.6), 0 8px 24px rgba(14,165,233,.12);
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .6s cubic-bezier(.4,0,.2,1);
  --glow-sm:      0 0 16px rgba(14,165,233,.4);
  --glow-md:      0 0 28px rgba(14,165,233,.5), 0 0 56px rgba(14,165,233,.2);
  --glow-lg:      0 0 40px rgba(6,182,212,.55), 0 0 80px rgba(6,182,212,.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lexend', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, var(--blue), var(--cyan)); border-radius: 3px; }

/* ── SCROLL PROGRESS BAR ───────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--indigo));
  z-index: 9999;
  width: 0%;
  transition: width .05s linear;
  box-shadow: 0 0 10px rgba(56,189,248,.6);
}

/* ── AURORA BACKGROUND ─────────────────────────────────────── */
.aurora-bg {
  background: var(--bg);
  position: relative;
}
.aurora-bg::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%,   rgba(14,165,233,.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%,  rgba(6,182,212,.06)  0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 50% 50%,   rgba(99,102,241,.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: auroraShift 20s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0%   { opacity: .7; transform: scale(1); }
  50%  { opacity: 1; transform: scale(1.05); }
  100% { opacity: .8; transform: scale(1.02); }
}

/* ── BG GRID ───────────────────────────────────────────────── */
.bg-grid {
  background-image:
    linear-gradient(rgba(14,165,233,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,.035) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ── PARTICLES LAYER ───────────────────────────────────────── */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}

/* ── GLASS ─────────────────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.glass-bright {
  background: var(--glass-bg-2);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--glass-border-bright);
  border-radius: var(--radius);
}

/* ── NEON EFFECTS ──────────────────────────────────────────── */
.neon-border  { box-shadow: var(--glow-sm), inset 0 0 18px rgba(14,165,233,.04); }
.neon-border-bright { box-shadow: var(--glow-md); }
.neon-text    { text-shadow: 0 0 14px rgba(6,182,212,.9), 0 0 28px rgba(6,182,212,.45); }
.neon-glow    { box-shadow: var(--glow-lg); }

/* Animated gradient border */
.gradient-border {
  position: relative;
}
.gradient-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--indigo), var(--blue));
  background-size: 300% 300%;
  animation: borderSpin 4s linear infinite;
  z-index: -1;
  opacity: .6;
}
@keyframes borderSpin {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── GRADIENT TEXT ─────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #06b6d4 40%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-warm {
  background: linear-gradient(135deg, #38bdf8 0%, #06b6d4 60%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BADGES ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
}
.badge-blue  { background: rgba(14,165,233,.12); border: 1px solid rgba(14,165,233,.3); color: var(--blue-bright); }
.badge-green { background: rgba(34,197,94,.12);  border: 1px solid rgba(34,197,94,.3);  color: #4ade80; }
.badge-red   { background: rgba(239,68,68,.12);  border: 1px solid rgba(239,68,68,.3);  color: #f87171; }
.badge-gold  { background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.3); color: #fbbf24; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}
/* Shimmer sweep */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.btn:hover::after { transform: translateX(120%); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(14,165,233,.35), 0 0 0 0 rgba(14,165,233,.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(14,165,233,.55), 0 0 0 4px rgba(14,165,233,.12);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  background: rgba(14,165,233,.06);
  color: var(--blue-bright);
  border: 1.5px solid rgba(56,189,248,.4);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(14,165,233,.14);
  border-color: var(--blue-bright);
  transform: translateY(-3px);
  box-shadow: var(--glow-sm);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebe5a);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,.5);
}

.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}
.float { animation: floatY 5s ease-in-out infinite; }

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(6,182,212,.3); }
  50%       { box-shadow: 0 0 32px rgba(6,182,212,.8), 0 0 64px rgba(6,182,212,.3); }
}
.pulse-glow { animation: pulseGlow 2.5s ease-in-out infinite; }

@keyframes spinSlow { to { transform: rotate(360deg); } }
.spin-slow { animation: spinSlow 28s linear infinite; }

@keyframes spinReverse { to { transform: rotate(-360deg); } }
.spin-reverse { animation: spinReverse 20s linear infinite; }

@keyframes ripple {
  0%   { transform: scale(1);   opacity: .5; }
  100% { transform: scale(2);   opacity: 0; }
}

/* Blob morphing */
@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50%       { border-radius: 50% 60% 30% 60% / 30% 40% 70% 50%; }
  75%       { border-radius: 40% 70% 60% 30% / 70% 30% 50% 40%; }
}

/* Typewriter cursor */
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.typewriter-cursor { animation: blink 1s ease-in-out infinite; }

/* Shine scan */
@keyframes shineScan {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(300%) skewX(-15deg); }
}

/* Count flip */
@keyframes countFlip {
  0%   { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}

/* ── CONTAINER ─────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ── SECTION LABEL ─────────────────────────────────────────── */
.section-label { display: flex; justify-content: center; margin-bottom: 18px; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: var(--transition);
  padding: 0 20px;
}
#navbar.scrolled {
  background: rgba(3,9,18,.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px rgba(0,0,0,.5), 0 1px 0 rgba(14,165,233,.1);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
}
.nav-logo:hover { transform: scale(1.02); }
.nav-logo-img {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(14,165,233,.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 0 0 0 rgba(14,165,233,.4);
}
.nav-logo:hover .nav-logo-img { box-shadow: 0 0 16px rgba(14,165,233,.5); }
.nav-logo-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.nav-logo-text { line-height: 1.2; }
.nav-logo-text span:first-child { display: block; font-size: 17px; font-weight: 800; color: var(--white); }
.nav-logo-text span:last-child  { display: block; font-size: 11px; color: rgba(56,189,248,.6); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a, .nav-drop-trigger {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  cursor: pointer;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 1.5px;
  background: var(--blue-bright);
  transform: translateX(-50%);
  transition: width .25s ease;
  border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }
.nav-links a:hover, .nav-drop-trigger:hover,
.nav-links a.active { color: var(--white); background: rgba(14,165,233,.08); }

.nav-drop { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: rgba(3,9,18,.97);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,.6), 0 0 0 1px rgba(14,165,233,.06);
  backdrop-filter: blur(24px);
  animation: dropIn .2s ease forwards;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-drop:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 11px 18px;
  font-size: 13px;
  color: var(--text-muted);
  border-radius: 0;
  transition: var(--transition);
  border-left: 2px solid transparent;
}
.nav-dropdown a:hover { color: var(--blue-bright); background: rgba(14,165,233,.08); border-left-color: var(--blue-bright); padding-left: 22px; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(56,189,248,.3);
  color: var(--blue-bright);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}
.nav-phone:hover { background: rgba(14,165,233,.1); border-color: var(--blue-bright); box-shadow: var(--glow-sm); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-muted); border-radius: 2px; transition: var(--transition); }
.nav-mobile {
  display: none;
  background: rgba(3,9,18,.98);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--glass-border);
  padding: 16px 20px;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(14,165,233,.06);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--blue-bright); padding-left: 8px; }
.nav-mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

/* ═══════════════════════════════════════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════════════════════════════════════ */
.fab-container { position: fixed; bottom: 24px; right: 22px; z-index: 800; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.fab:hover { transform: scale(1.12); }
.fab-ripple {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  animation: ripple 2.4s ease-out infinite;
  opacity: 0;
}
.fab-wa   { background: linear-gradient(135deg, #25d366, #1ebe5a); box-shadow: 0 4px 20px rgba(37,211,102,.45); }
.fab-wa .fab-ripple   { background: #25d366; }
.fab-call { background: linear-gradient(135deg, var(--blue), var(--cyan)); box-shadow: 0 4px 20px rgba(14,165,233,.5); }
.fab-call .fab-ripple { background: var(--blue); }
.fab-top  { width: 44px; height: 44px; background: var(--glass-bg); border: 1px solid var(--glass-border); display: none; }
.fab-top.visible { display: flex; }
.fab svg      { width: 24px; height: 24px; fill: var(--white); }
.fab-top svg  { width: 18px; height: 18px; fill: var(--blue-bright); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 110px 0 80px;
}

/* Animated background blobs */
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,.12), transparent 70%);
  top: -10%; left: -5%;
  animation: blobMorph 15s ease-in-out infinite, floatY 8s ease-in-out infinite;
}
.blob-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(6,182,212,.09), transparent 70%);
  bottom: -5%; right: -5%;
  animation: blobMorph 18s ease-in-out infinite reverse, floatY 10s ease-in-out infinite reverse;
}
.blob-3 {
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(99,102,241,.05), transparent 70%);
  top: 40%; left: 40%;
  transform: translate(-50%,-50%);
  animation: blobMorph 22s ease-in-out infinite;
}
.hero-grid { position: absolute; inset: 0; opacity: .5; }

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 30px; }

/* Animated badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  padding: 7px 18px;
  border-radius: 50px;
  width: fit-content;
  position: relative;
  overflow: hidden;
  animation: slideInLeft .8s ease forwards;
}
.hero-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(74,222,128,.1), transparent);
  animation: shineScan 3s ease infinite;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.badge-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: pulse 1.8s ease-in-out infinite; flex-shrink: 0; }

/* Hero title with typewriter */
.hero-title {
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2px;
  color: var(--white);
  animation: slideInLeft .9s ease .1s both;
}
.hero-title .line2 { display: block; }

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.75;
  animation: slideInLeft 1s ease .2s both;
}

/* Trust chips */
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; animation: slideInLeft 1s ease .3s both; }
.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}
.trust-chip:hover { color: var(--blue-bright); border-color: rgba(14,165,233,.4); background: rgba(14,165,233,.07); transform: translateY(-2px); }
.trust-chip svg { width: 14px; height: 14px; fill: var(--blue-bright); }

.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; animation: slideInLeft 1s ease .4s both; }

.hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInLeft 1s ease .5s both;
}
.stars-row  { display: flex; gap: 3px; }
.star { font-size: 18px; }
.star-filled { color: #fbbf24; }
.hero-stars-text strong { color: var(--white); font-weight: 700; }
.hero-stars-text span   { color: var(--text-muted); font-size: 14px; }

/* ── HERO VISUAL ──────────────────────────────────────────── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: slideInRight 1s ease .3s both;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.logo-ring-outer {
  position: relative;
  width: 360px; height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ring-1 { inset: -36px; background: rgba(14,165,233,.07); filter: blur(36px); }
.ring-2 {
  inset: -14px;
  border: 1px solid rgba(14,165,233,.22);
  animation: pulse 3.5s ease-in-out infinite;
}
.ring-3 {
  inset: -28px;
  border: 1px dashed rgba(6,182,212,.12);
  animation: spinSlow 30s linear infinite;
}
.ring-4 {
  inset: -52px;
  border: 1px solid rgba(99,102,241,.08);
  animation: spinReverse 22s linear infinite;
}

.logo-circle {
  width: 290px; height: 290px;
  border-radius: 50%;
  border: 2px solid rgba(14,165,233,.4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  position: relative;
  z-index: 2;
  box-shadow: var(--glow-lg);
}
.logo-circle img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; z-index: 1; }
.logo-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--blue-bright);
  position: relative; z-index: 0;
}
.logo-fallback svg    { width: 72px; height: 72px; fill: var(--blue-bright); opacity: .7; }
.logo-fallback strong { font-size: 26px; font-weight: 900; }
.logo-fallback span   { font-size: 13px; color: var(--text-muted); }

/* Floating stat badges */
.hero-badge-float {
  position: absolute;
  z-index: 5;
  padding: 12px 16px;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
}
.hero-badge-float:hover { transform: scale(1.08); }
.badge-float-1 { top: 16px; right: -16px; animation: floatY 5s ease-in-out infinite; }
.badge-float-2 { bottom: 16px; left: -16px; animation: floatY 5s ease-in-out 2.5s infinite; }
.badge-float-num { display: block; font-size: 24px; font-weight: 900; color: var(--blue-bright); line-height: 1; }
.badge-float-lbl { display: block; font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* Orbiting icons */
.orbit-icon {
  position: absolute;
  width: 40px; height: 40px;
  background: var(--glass-bg-2);
  border: 1px solid var(--glass-border-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: var(--glow-sm);
  transition: var(--transition);
}
.orbit-icon:hover { transform: scale(1.2); box-shadow: var(--glow-md); }
.orbit-icon svg { width: 18px; height: 18px; fill: var(--blue-bright); }
.orbit-icon-1 { top: 10%;  left: 8%;  animation: floatY 4s ease-in-out .5s infinite; }
.orbit-icon-2 { top: 10%;  right: 8%; animation: floatY 4s ease-in-out 1s infinite; }
.orbit-icon-3 { bottom: 10%; left: 10%;  animation: floatY 4s ease-in-out 1.5s infinite; }
.orbit-icon-4 { bottom: 10%; right: 10%; animation: floatY 4s ease-in-out 2s infinite; }

/* ═══════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════ */
.stats-bar {
  padding: 60px 0;
  border-top: 1px solid rgba(14,165,233,.1);
  border-bottom: 1px solid rgba(14,165,233,.1);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,.04), rgba(6,182,212,.04), transparent);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item {
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(14,165,233,.2), transparent);
}
.stat-item:hover { transform: translateY(-4px); }
.stat-icon {
  width: 54px; height: 54px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, rgba(14,165,233,.15), rgba(6,182,212,.1));
  border: 1px solid rgba(14,165,233,.22);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-item:hover .stat-icon { box-shadow: var(--glow-sm); transform: scale(1.1); }
.stat-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56,189,248,.1), transparent);
  opacity: 0;
  transition: var(--transition);
}
.stat-item:hover .stat-icon::before { opacity: 1; }
.stat-icon svg { width: 24px; height: 24px; fill: var(--blue-bright); }
.stat-num { font-size: 44px; font-weight: 900; line-height: 1; margin-bottom: 6px; letter-spacing: -1px; }
.stat-lbl { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-alt  { background: linear-gradient(to bottom, var(--bg), #040c18); }
.section-dark { background: linear-gradient(to bottom, #040c18, var(--bg)); }

.section-head { text-align: center; margin-bottom: 72px; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -1.2px;
}
.section-head p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* Decorative line under heading */
.section-head-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
  margin: 20px auto 0;
  box-shadow: 0 0 10px rgba(14,165,233,.4);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.services-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Featured service (AC Repair) two-column layout */
.featured-svc { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.service-card {
  padding: 30px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
/* Animated border glow on hover */
.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(135deg, transparent, rgba(14,165,233,.2), transparent);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -1;
}
.service-card:hover::before { opacity: 1; }
/* Top shimmer on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.04), transparent);
  transform: skewX(-20deg);
  transition: none;
  opacity: 0;
}
.service-card:hover::after {
  opacity: 1;
  left: 160%;
  transition: left .6s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-blue), 0 0 0 1px rgba(14,165,233,.18);
  border-color: rgba(14,165,233,.38);
}

.svc-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(14,165,233,.18), rgba(6,182,212,.12));
  border: 1px solid rgba(14,165,233,.22);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.service-card:hover .svc-icon {
  transform: scale(1.12) rotate(5deg);
  background: linear-gradient(135deg, rgba(14,165,233,.28), rgba(6,182,212,.2));
  box-shadow: var(--glow-sm);
}
.svc-icon svg { width: 28px; height: 28px; fill: var(--blue-bright); }

.svc-pop {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-bright);
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.2);
  padding: 3px 10px;
  border-radius: 50px;
  width: fit-content;
}

.service-card h3 { font-size: 17px; font-weight: 700; color: var(--white); transition: var(--transition); }
.service-card:hover h3 { color: var(--blue-bright); }
.service-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.7; flex: 1; }

.svc-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-bright);
  opacity: 0;
  transition: var(--transition);
  margin-top: auto;
  transform: translateX(-10px);
}
.service-card:hover .svc-link { opacity: 1; transform: translateX(0); }
.svc-link svg { width: 14px; height: 14px; fill: var(--blue-bright); }

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.why-list { display: flex; flex-direction: column; gap: 26px; margin-top: 32px; }
.why-item {
  display: flex;
  gap: 18px;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}
.why-item:hover {
  background: rgba(14,165,233,.04);
  border-color: rgba(14,165,233,.1);
  transform: translateX(6px);
}
.why-icon {
  width: 46px; height: 46px;
  background: rgba(14,165,233,.1);
  border: 1px solid rgba(14,165,233,.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition);
}
.why-item:hover .why-icon { background: rgba(14,165,233,.2); box-shadow: var(--glow-sm); transform: scale(1.1); }
.why-icon svg { width: 22px; height: 22px; fill: var(--blue-bright); }
.why-text h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.why-text p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* Booking card */
.booking-card {
  padding: 38px;
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(14,165,233,.06), transparent 50%);
  pointer-events: none;
}
.booking-card h3 { font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.booking-card > p { color: var(--text-muted); margin-bottom: 28px; }
.book-icon {
  width: 76px; height: 76px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, rgba(14,165,233,.18), rgba(6,182,212,.12));
  border: 1px solid rgba(14,165,233,.3);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseGlow 3s ease-in-out infinite;
}
.book-icon svg { width: 38px; height: 38px; fill: var(--blue-bright); }
.book-checks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.book-check { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); transition: var(--transition); }
.book-check:hover { color: var(--blue-bright); transform: translateX(4px); }
.book-check svg { width: 18px; height: 18px; fill: #4ade80; flex-shrink: 0; }
.book-btns { display: flex; flex-direction: column; gap: 10px; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.review-card {
  padding: 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
/* Quote mark decoration */
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 120px;
  font-weight: 900;
  color: rgba(14,165,233,.06);
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-blue); border-color: rgba(14,165,233,.35); }

.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(14,165,233,.3);
}
.reviewer-name { font-weight: 700; font-size: 15px; color: var(--white); }
.reviewer-loc  { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.review-stars  { display: flex; gap: 2px; }
.review-stars .star { font-size: 14px; }

.review-text { font-size: 14px; color: #94a3b8; line-height: 1.75; margin-bottom: 18px; position: relative; z-index: 1; }
.review-footer { display: flex; align-items: center; justify-content: space-between; }

/* ═══════════════════════════════════════════════════════════
   SERVICE AREAS
   ═══════════════════════════════════════════════════════════ */
.areas-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.area-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.area-chip::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.08), transparent);
  transform: translateX(-100%);
  transition: transform .5s ease;
}
.area-chip:hover::after { transform: translateX(100%); }
.area-chip:hover { color: var(--blue-bright); border-color: rgba(14,165,233,.4); background: rgba(14,165,233,.08); transform: translateY(-3px); box-shadow: var(--glow-sm); }
.area-chip svg { width: 14px; height: 14px; fill: var(--blue-bright); }

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item { border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.faq-item.active { box-shadow: var(--shadow-blue); border-color: rgba(14,165,233,.4); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  background: none;
  transition: var(--transition);
}
.faq-q:hover { color: var(--blue-bright); }
.faq-arrow { width: 20px; height: 20px; fill: var(--blue-bright); flex-shrink: 0; margin-top: 2px; transition: transform .35s ease; }
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.4,0,.2,1); }
.faq-a-inner { padding: 0 26px 22px; font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════
   EMERGENCY CTA
   ═══════════════════════════════════════════════════════════ */
.cta-box {
  padding: 88px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(14,165,233,.08), transparent),
    linear-gradient(135deg, rgba(14,165,233,.06), rgba(6,182,212,.04));
  border-radius: var(--radius);
}
/* Corner glow accents */
.cta-box::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(14,165,233,.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { font-size: clamp(30px, 4vw, 50px); font-weight: 900; color: var(--white); margin: 18px 0; line-height: 1.1; letter-spacing: -1px; }
.cta-inner p  { font-size: 18px; color: var(--text-muted); max-width: 580px; margin: 0 auto 38px; line-height: 1.75; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.cta-note { margin-top: 22px; font-size: 13px; color: var(--text-dim); }
.cta-note span { color: var(--blue-bright); font-weight: 600; }

/* Countdown timer in CTA */
.cta-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 16px;
}
.cta-timer-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(74,222,128,.5);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer { background: #020810; border-top: 1px solid rgba(14,165,233,.08); position: relative; }
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,.4), rgba(6,182,212,.6), rgba(14,165,233,.4), transparent);
}

.footer-emergency {
  background: linear-gradient(90deg, rgba(14,165,233,.06), rgba(6,182,212,.1), rgba(14,165,233,.06));
  border-bottom: 1px solid rgba(14,165,233,.1);
  padding: 22px 0;
}
.footer-emerg-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-emerg-left  { display: flex; align-items: center; gap: 14px; }
.emerg-icon {
  width: 44px; height: 44px;
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulseGlow 2s ease-in-out infinite;
}
.emerg-icon svg { width: 20px; height: 20px; fill: #f87171; }
.emerg-text strong { display: block; font-weight: 700; color: var(--white); }
.emerg-text span   { font-size: 13px; color: var(--text-muted); }
.footer-emerg-btns { display: flex; gap: 10px; }

.footer-main { padding: 70px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 52px; }

.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-logo  { display: flex; align-items: center; gap: 12px; }
.footer-logo-img {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1.5px solid rgba(14,165,233,.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  flex-shrink: 0;
}
.footer-logo-img img { width: 100%; height: 140%; object-fit: cover; border-radius: 50%; }
.footer-logo-text span:first-child { display: block; font-size: 18px; font-weight: 800; color: var(--white); }
.footer-logo-text span:last-child  { display: block; font-size: 11px; color: rgba(56,189,248,.6); }
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.footer-stars { display: flex; align-items: center; gap: 8px; }
.footer-stars span { font-size: 13px; color: var(--text-muted); }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}
.social-btn:hover { color: var(--blue-bright); border-color: rgba(14,165,233,.4); background: rgba(14,165,233,.1); transform: translateY(-3px); box-shadow: var(--glow-sm); }

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-col h4::before { content: ''; width: 22px; height: 2.5px; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 2px; box-shadow: 0 0 8px rgba(14,165,233,.4); }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-col ul li a:hover { color: var(--blue-bright); padding-left: 7px; }
.footer-col ul li a::before { content: '›'; color: var(--blue); opacity: 0; transition: var(--transition); font-size: 16px; }
.footer-col ul li a:hover::before { opacity: 1; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.fc-icon {
  width: 36px; height: 36px;
  background: rgba(14,165,233,.1);
  border: 1px solid rgba(14,165,233,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.footer-contact-item:hover .fc-icon { background: rgba(14,165,233,.2); box-shadow: var(--glow-sm); }
.fc-icon svg { width: 16px; height: 16px; fill: var(--blue-bright); }
.fc-text .fc-label { font-size: 11px; color: var(--text-dim); display: block; }
.fc-text .fc-val   { font-size: 14px; color: #cbd5e1; font-weight: 500; display: block; }

.footer-bottom {
  border-top: 1px solid rgba(14,165,233,.07);
  padding: 20px 0;
}
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom-inner p { font-size: 13px; color: var(--text-dim); }
.footer-bottom-inner a { color: var(--blue-bright); font-weight: 600; transition: var(--transition); }
.footer-bottom-inner a:hover { color: var(--cyan-light); }

/* ═══════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════ */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(14,165,233,.05);
  border: 1px solid rgba(14,165,233,.16);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(148,163,184,.5); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(14,165,233,.6);
  background: rgba(14,165,233,.08);
  box-shadow: 0 0 0 3px rgba(14,165,233,.1), var(--glow-sm);
}
.form-group select option { background: var(--bg-2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ═══════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════ */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-muted);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(14,165,233,.35);
  transform: translateY(-2px);
}
.gallery-grid { columns: 3; column-gap: 16px; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-blue); }
.gallery-item-img { width: 100%; display: flex; align-items: center; justify-content: center; position: relative; }
.gallery-item-img svg { width: 52px; height: 52px; fill: var(--blue-bright); opacity: .45; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.68);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 40px; height: 40px; fill: var(--white); }
.gallery-caption { padding: 12px 16px; background: var(--glass-bg); }
.gallery-caption strong { display: block; font-size: 14px; color: var(--white); font-weight: 600; }
.gallery-caption span   { font-size: 12px; color: var(--text-muted); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(12px);
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 46px; height: 46px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(14,165,233,.2); box-shadow: var(--glow-sm); }
.lightbox-close svg { width: 20px; height: 20px; fill: var(--white); }
.lightbox-card { max-width: 600px; width: 100%; border-radius: var(--radius); overflow: hidden; }
.lightbox-img { height: 360px; display: flex; align-items: center; justify-content: center; }
.lightbox-img svg { width: 80px; height: 80px; fill: var(--blue-bright); opacity: .4; }
.lightbox-info { padding: 24px; }
.lightbox-info h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.lightbox-info p  { font-size: 14px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}
a.contact-card { cursor: pointer; }
.contact-card:hover { box-shadow: var(--shadow-blue); border-color: rgba(14,165,233,.4); transform: translateX(5px); }
.cc-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-card:hover .cc-icon { transform: scale(1.12); box-shadow: var(--glow-sm); }
.cc-icon svg { width: 22px; height: 22px; fill: var(--blue-bright); }
.cc-info .cc-label { font-size: 11px; color: var(--text-dim); margin-bottom: 2px; display: block; }
.cc-info .cc-val   { font-size: 14px; color: #e2e8f0; font-weight: 600; display: block; }
.cc-info .cc-sub   { font-size: 12px; color: var(--text-muted); display: block; }

.form-card { padding: 38px; }
.form-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.form-tab {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-muted);
}
.form-tab.active { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: var(--white); border-color: transparent; box-shadow: 0 4px 14px rgba(14,165,233,.3); }

.form-success { text-align: center; padding: 40px 0; display: none; }
.form-success.show { display: block; }
.form-success-icon {
  width: 72px; height: 72px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: pulseGlow 2s ease-in-out infinite;
}
.form-success-icon svg { width: 36px; height: 36px; fill: #4ade80; }

/* ═══════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════ */
.blog-featured {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 44px;
  transition: var(--transition);
}
.blog-featured:hover { box-shadow: var(--shadow-blue); border-color: rgba(14,165,233,.35); }
.blog-featured-inner { display: grid; grid-template-columns: 1fr 1fr; }
.blog-img { height: 290px; display: flex; align-items: center; justify-content: center; }
.blog-img svg { width: 72px; height: 72px; fill: var(--blue-bright); opacity: .3; }
.blog-featured-content { padding: 44px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.blog-meta { display: flex; align-items: center; gap: 12px; }
.blog-meta span { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.blog-featured-content h2 { font-size: 24px; font-weight: 800; color: var(--white); line-height: 1.35; }
.blog-featured-content p  { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.blog-card { border-radius: var(--radius); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-blue); border-color: rgba(14,165,233,.35); }
.blog-card-img { height: 165px; display: flex; align-items: center; justify-content: center; }
.blog-card-img svg { width: 44px; height: 44px; fill: var(--blue-bright); opacity: .3; }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-card-meta { display: flex; align-items: center; gap: 8px; }
.blog-card-meta span { font-size: 11px; color: var(--text-muted); }
.blog-card h3 { font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.4; }
.blog-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; flex: 1; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.read-more {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-bright);
  transition: var(--transition);
}
.read-more:hover { gap: 8px; }
.read-more svg { width: 14px; height: 14px; fill: var(--blue-bright); }

/* ═══════════════════════════════════════════════════════════
   ADMIN
   ═══════════════════════════════════════════════════════════ */
body.admin-page { padding-top: 0; }
body.admin-page #navbar, body.admin-page footer, body.admin-page .fab-container { display: none; }

.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: #020810;
  border-right: 1px solid rgba(14,165,233,.1);
  padding: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.admin-logo {
  padding: 22px 20px;
  border-bottom: 1px solid rgba(14,165,233,.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  color: var(--white);
}
.admin-logo-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); }
.admin-logo-text span   { font-size: 11px; color: var(--text-dim); }

.admin-nav { flex: 1; padding: 16px 12px; display: flex; flex-direction: column; gap: 4px; }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}
.admin-nav-item:hover { color: var(--white); background: rgba(14,165,233,.07); }
.admin-nav-item.active { color: var(--blue-bright); background: rgba(14,165,233,.12); border-color: rgba(14,165,233,.2); }
.admin-nav-item svg { width: 18px; height: 18px; fill: currentColor; }

.admin-main { overflow-y: auto; }
.admin-topbar {
  position: sticky;
  top: 0;
  background: rgba(3,9,18,.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(14,165,233,.1);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
.admin-topbar-left { display: flex; align-items: center; gap: 12px; }
.admin-topbar-left h1 { font-size: 18px; font-weight: 700; color: var(--white); }
.admin-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 7px 14px;
}
.admin-search svg { width: 16px; height: 16px; fill: var(--text-muted); }
.admin-search input { background: none; border: none; outline: none; color: var(--white); font-size: 13px; width: 200px; }
.admin-search input::placeholder { color: var(--text-dim); }
.admin-topbar-right { display: flex; align-items: center; gap: 12px; }
.admin-avatar { width: 34px; height: 34px; background: linear-gradient(135deg, var(--blue), var(--cyan)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: var(--white); cursor: pointer; }

.admin-content { padding: 24px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.admin-stat-card { padding: 20px; border-radius: var(--radius); }
.admin-stat-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.admin-stat-icon svg { width: 22px; height: 22px; fill: var(--blue-bright); }
.admin-stat-num  { font-size: 30px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 4px; }
.admin-stat-lbl  { font-size: 13px; color: var(--text-muted); }

.admin-table-wrap { border-radius: var(--radius); overflow: hidden; }
.admin-table-head {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(14,165,233,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-table-head h2 { font-size: 16px; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 8px; }
.admin-table-head h2 svg { width: 18px; height: 18px; fill: var(--blue-bright); }
.table-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.table-filter-select {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 7px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  cursor: pointer;
}
.table-filter-select option { background: var(--bg-2); }
.table-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 7px 12px;
}
.table-search-box svg { width: 14px; height: 14px; fill: var(--text-muted); }
.table-search-box input { background: none; border: none; outline: none; color: var(--white); font-size: 13px; width: 160px; }
.table-search-box input::placeholder { color: var(--text-dim); }

.data-table { width: 100%; border-collapse: collapse; }
.data-table th { padding: 12px 18px; text-align: left; font-size: 11px; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: .6px; border-bottom: 1px solid rgba(14,165,233,.08); }
.data-table td { padding: 14px 18px; border-bottom: 1px solid rgba(14,165,233,.05); font-size: 14px; }
.data-table tr:hover td { background: rgba(14,165,233,.03); }
.data-table tr:last-child td { border-bottom: none; }
.td-name { color: var(--white); font-weight: 600; }
.td-sub  { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.td-actions { display: flex; align-items: center; gap: 6px; }
.action-btn {
  width: 30px; height: 30px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.action-btn:hover { background: rgba(14,165,233,.15); border-color: rgba(14,165,233,.3); }
.action-btn svg { width: 14px; height: 14px; fill: var(--text-muted); }
.action-btn:hover svg { fill: var(--blue-bright); }

.status { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }
.status-pending    { background: rgba(14,165,233,.15);  color: var(--blue-bright); border: 1px solid rgba(14,165,233,.3); }
.status-pending::before { background: var(--blue-bright); }
.status-confirmed  { background: rgba(34,197,94,.15);   color: #4ade80; border: 1px solid rgba(34,197,94,.3); }
.status-confirmed::before { background: #4ade80; }
.status-inprogress { background: rgba(245,158,11,.15);  color: #fbbf24; border: 1px solid rgba(245,158,11,.3); }
.status-inprogress::before { background: #fbbf24; }
.status-completed  { background: rgba(168,85,247,.15);  color: #c084fc; border: 1px solid rgba(168,85,247,.3); }
.status-completed::before { background: #c084fc; }
.status-cancelled  { background: rgba(239,68,68,.15);   color: #f87171; border: 1px solid rgba(239,68,68,.3); }
.status-cancelled::before { background: #f87171; }

.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.75); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(8px); }
.modal-overlay.open { display: flex; }
.modal-card { max-width: 440px; width: 100%; border-radius: var(--radius); padding: 28px; position: relative; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; background: var(--glass-bg); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.modal-close:hover { background: rgba(14,165,233,.15); }
.modal-close svg { width: 16px; height: 16px; fill: var(--text-muted); }
.modal-title { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 20px; }
.modal-field { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(14,165,233,.07); font-size: 14px; }
.modal-field:last-of-type { border-bottom: none; }
.modal-field span:first-child { color: var(--text-muted); }
.modal-field span:last-child  { color: var(--text); font-weight: 600; }
.modal-status { margin: 16px 0; }
.modal-status label { font-size: 12px; color: var(--text-muted); display: block; margin-bottom: 6px; }
.modal-status select { width: 100%; background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--white); padding: 10px 14px; border-radius: 10px; font-family: inherit; font-size: 14px; outline: none; cursor: pointer; }
.modal-btns { display: flex; gap: 10px; margin-top: 20px; }

/* ═══════════════════════════════════════════════════════════
   PAGE HEADER
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  padding: 148px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-blob {
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: rgba(14,165,233,.06);
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; line-height: 1.08; margin: 16px 0; letter-spacing: -1.5px; }
.page-hero p  { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto 34px; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL — Multiple directions
   ═══════════════════════════════════════════════════════════ */
.reveal         { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left    { opacity: 0; transform: translateX(-32px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right   { opacity: 0; transform: translateX(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal-scale   { opacity: 0; transform: scale(.94); transition: opacity .7s ease, transform .7s ease; }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ═══════════════════════════════════════════════════════════
   DIVIDER
   ═══════════════════════════════════════════════════════════ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,.4), rgba(6,182,212,.6), rgba(14,165,233,.4), transparent);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   PREFERS REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid      { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid     { grid-template-columns: repeat(2, 1fr); }
  .admin-stats   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { align-items: center; }
  .hero-desc { text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .featured-svc { grid-template-columns: 1fr; gap: 28px; }
  .featured-svc > div:last-child { height: 200px; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .blog-featured-inner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 44px 26px; }
  .footer-emerg-inner { flex-direction: column; }
  .footer-emerg-btns  { width: 100%; justify-content: center; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; }
  .hero-title { letter-spacing: -1px; }
}

/* ═══════════════════════════════════════════════════════════
   LANGUAGE TOGGLE  (Arabic ⇄ English)
   ═══════════════════════════════════════════════════════════ */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-bright);
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.28);
  border-radius: 50px;
  padding: 8px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}
.lang-toggle:hover {
  background: rgba(14,165,233,.18);
  border-color: rgba(14,165,233,.55);
  color: var(--white);
}
.lang-toggle svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.lang-toggle-full { width: 100%; justify-content: center; padding: 13px; font-size: 15px; }

/* ═══════════════════════════════════════════════════════════
   RTL  (Arabic)
   ═══════════════════════════════════════════════════════════ */
html[dir="rtl"] body {
  direction: rtl;
  font-family: 'Segoe UI', 'Tahoma', 'Arial', var(--font, sans-serif);
}
html[dir="rtl"] .section-head,
html[dir="rtl"] .hero-content { text-align: inherit; }
/* keep the typewriter / latin brand bits readable */
html[dir="rtl"] #typewriter,
html[dir="rtl"] .nav-logo-text,
html[dir="rtl"] .fc-val,
html[dir="rtl"] .cc-val { direction: rtl; }
