/* ═══════════════════════════════════════════
   KHESEKHO ELECTRICAL — REDESIGN
   Dark premium UI with gradient accents
═══════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────── */
:root {
  --bg:         #050A18;
  --bg-card:    #0C1222;
  --bg-card-2:  #111827;
  --bg-surface: #1A2236;
  --border:     rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --text:       #F1F5F9;
  --text-muted: #94A3B8;
  --text-dim:   #64748B;
  --blue:       #3B82F6;
  --purple:     #8B5CF6;
  --cyan:       #06B6D4;
  --green:      #10B981;
  --amber:      #FBBF24;
  --red:        #EF4444;
  --gradient:   linear-gradient(135deg, #3B82F6, #8B5CF6);
  --gradient-t: linear-gradient(135deg, #3B82F6, #8B5CF6, #06B6D4);
  --glow-blue:  0 0 40px rgba(59,130,246,0.3);
  --glow-purple:0 0 40px rgba(139,92,246,0.2);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 99px; }

/* ─── UTILITY ────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.section-dark { background: var(--bg-card); }
.text-white { color: var(--text); }
.text-muted { color: var(--text-muted); }
.gradient-text {
  background: var(--gradient-t);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── PRELOADER ──────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-bolt { width: 48px; height: 48px; animation: preloaderSpin 1s ease-in-out infinite; }
.preloader-bolt svg { width: 100%; height: 100%; }
@keyframes preloaderSpin {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* ─── BACK TO TOP ────────────────────── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--gradient); color: white;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.3s var(--ease);
  box-shadow: var(--glow-blue);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ─── BUTTONS ────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.88rem;
  padding: 12px 24px; border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-lg { padding: 16px 32px; font-size: 0.95rem; }
.btn-glow {
  background: var(--gradient); color: white; border-color: transparent;
  box-shadow: 0 4px 24px rgba(59,130,246,0.35);
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(59,130,246,0.5);
}
.btn-glass {
  background: rgba(255,255,255,0.06); color: var(--text);
  border-color: var(--border-hover);
  backdrop-filter: blur(12px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent; color: var(--text-muted);
  border-color: var(--border-hover);
}
.btn-outline-light:hover {
  color: var(--text); border-color: var(--blue);
  transform: translateY(-2px);
}

/* ─── CHIP ───────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(59,130,246,0.08); color: var(--blue);
  border: 1px solid rgba(59,130,246,0.2);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 99px;
}
.chip-dark {
  background: rgba(255,255,255,0.06); color: var(--text-muted);
  border-color: var(--border);
}

/* ─── SECTION HEADINGS ───────────────── */
.section-top { margin-bottom: 56px; }
.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; line-height: 1.1;
  margin-top: 16px;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.7; max-width: 540px; margin-top: 16px;
}
.section-action { text-align: center; margin-top: 48px; }

/* ═══ NAVIGATION ═══════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all 0.3s var(--ease);
}
#navbar.scrolled {
  background: rgba(5,10,24,0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; }
.logo-text { line-height: 1; }
.logo-name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 1.05rem; color: var(--text); letter-spacing: -0.02em;
}
.logo-sub {
  display: block; font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--text-dim); text-transform: uppercase;
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  color: var(--text-muted); font-size: 0.88rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-muted); font-size: 0.85rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--text); }
.nav-phone svg { width: 16px; height: 16px; }
.nav-phone span { display: none; }
@media (min-width: 900px) { .nav-phone span { display: inline; } }
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all 0.3s; display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(5,10,24,0.98); backdrop-filter: blur(24px);
  z-index: 999; overflow-y: auto;
}
.mobile-menu.open { display: block; animation: fadeIn 0.3s ease; }
.mobile-menu-inner { padding: 24px; display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  color: var(--text-muted); font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem; font-weight: 600; padding: 16px;
  border-radius: var(--radius); transition: all 0.2s;
  border-bottom: 1px solid var(--border);
}
.mobile-link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.mobile-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mobile-cta-btn { width: 100%; justify-content: center; margin-top: 12px; }

/* ─── PAGES ──────────────────────────── */
.page { display: none; }
.page.active { display: block; animation: pageIn 0.5s ease; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ═══ HERO ═════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding: 160px 0 100px;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.15;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(5,10,24,0.7) 40%, var(--bg) 100%);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px; top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(59,130,246,0.2), transparent 70%);
}
.hero-glow-2 {
  width: 500px; height: 500px; bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(139,92,246,0.15), transparent 70%);
}
.hero-container { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2);
  color: var(--green); border-radius: 99px;
  font-size: 0.78rem; font-weight: 600; padding: 6px 18px;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.08; margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero-desc {
  font-size: 1.15rem; color: var(--text-muted);
  line-height: 1.7; max-width: 580px; margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Hero stats */
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  margin-top: 80px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 8px;
}
.stat-card {
  flex: 1; padding: 20px; text-align: center;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.stat-card:hover { background: rgba(255,255,255,0.03); }
.stat-number {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 2rem; line-height: 1;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.75rem; color: var(--text-dim); margin-top: 4px; line-height: 1.3; }
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ─── MARQUEE ────────────────────────── */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0; overflow: hidden;
  background: var(--bg-card);
}
.marquee-track { overflow: hidden; }
.marquee-content {
  display: flex; align-items: center; gap: 32px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
  white-space: nowrap;
}
.marquee-icon { width: 16px; height: 16px; color: var(--blue); }
.marquee-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--text-dim); flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══ BENTO GRID ═══════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.bento-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.bento-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(139,92,246,0.04));
  border-color: rgba(59,130,246,0.15);
}
.bento-accent {
  background: linear-gradient(135deg, rgba(239,68,68,0.06), rgba(239,68,68,0.02));
  border-color: rgba(239,68,68,0.15);
}
.bento-glow {
  position: absolute; top: -100px; right: -100px;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 70%);
  pointer-events: none;
}
.bento-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.bento-icon svg { width: 22px; height: 22px; color: var(--blue); }
.bento-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 1.1rem; margin-bottom: 8px;
}
.bento-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.bento-tags { display: flex; gap: 6px; margin-top: 16px; flex-wrap: wrap; }
.bento-tag {
  font-size: 0.7rem; font-weight: 600; padding: 4px 10px;
  border-radius: 99px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); color: var(--text-dim);
}
.bento-cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-weight: 600; font-size: 0.88rem;
  margin-top: 16px; transition: gap 0.2s;
}
.bento-cta:hover { gap: 10px; }
.bento-cta svg { width: 14px; height: 14px; }

/* Bento with image (featured) */
.bento-has-image {
  display: flex; gap: 32px; align-items: center;
  padding: 0; overflow: hidden;
}
.bento-has-image .bento-text { padding: 32px; flex: 1; }
.bento-image {
  flex: 0 0 280px; height: 100%; overflow: hidden;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.bento-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.bento-has-image:hover .bento-image img { transform: scale(1.05); }

/* Bento with thumbnail */
.bento-with-thumb { overflow: hidden; padding: 0; }
.bento-thumb {
  width: 100%; height: 160px; overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.bento-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.bento-with-thumb:hover .bento-thumb img { transform: scale(1.05); }
.bento-with-thumb .bento-icon,
.bento-with-thumb .bento-title,
.bento-with-thumb .bento-desc { padding: 0 28px; }
.bento-with-thumb .bento-icon { margin-top: 20px; }
.bento-with-thumb .bento-desc { padding-bottom: 28px; }

/* ═══ GALLERY ══════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(5,10,24,0.9) 0%, transparent 100%);
  transform: translateY(8px);
  opacity: 0; transition: all 0.3s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }
.gallery-label {
  display: block; font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 0.95rem;
}
.gallery-sub {
  display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 2px;
}
.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .gallery-item-tall { grid-row: span 1; }
  .gallery-item-wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item-wide { grid-column: span 1; }
}

/* ═══ PROCESS ══════════════════════════ */
.process-grid {
  display: flex; align-items: center; gap: 0;
}
.process-card {
  flex: 1; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  transition: all 0.3s var(--ease);
}
.process-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.process-num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 2rem; background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px;
}
.process-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 1.05rem; margin-bottom: 8px;
}
.process-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.process-arrow {
  padding: 0 12px; color: var(--text-dim); flex-shrink: 0;
}
.process-arrow svg { width: 24px; height: 24px; }

/* ═══ TESTIMONIALS ═════════════════════ */
.testimonials-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.test-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.3s var(--ease);
}
.test-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.test-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.test-stars svg { width: 16px; height: 16px; color: var(--amber); }
.test-text {
  font-size: 0.92rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 24px;
}
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--gradient); color: white;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 0.8rem; display: flex; align-items: center; justify-content: center;
}
.test-name { font-weight: 600; font-size: 0.88rem; }
.test-role { font-size: 0.75rem; color: var(--text-dim); }

/* ═══ CTA SECTION ══════════════════════ */
.cta-section {
  padding: 120px 0; position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-glow {
  position: absolute; width: 500px; height: 500px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 16px;
}
.cta-desc { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══ PAGE HERO ════════════════════════ */
.page-hero {
  padding: 160px 0 80px; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.08; margin-top: 16px;
}
.page-hero-desc {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.7; max-width: 540px; margin-top: 16px;
}

/* ═══ SERVICES PAGE ════════════════════ */
.tabs {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 36px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 6px;
}
.tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: var(--radius-sm);
  color: var(--text-muted); font-weight: 600; font-size: 0.85rem;
  transition: all 0.2s;
}
.tab-ico { width: 16px; height: 16px; }
.tab.active, .tab:hover {
  background: var(--gradient); color: white;
  box-shadow: 0 4px 16px rgba(59,130,246,0.3);
}
.sector-panel { display: none; }
.sector-panel.active { display: grid; }
.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.svc-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.3s var(--ease);
}
.svc-card:hover {
  border-color: rgba(59,130,246,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}
.svc-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: all 0.3s;
}
.svc-ico svg { width: 20px; height: 20px; color: var(--blue); }
.svc-card:hover .svc-ico {
  background: var(--gradient); border-color: transparent;
}
.svc-card:hover .svc-ico svg { color: white; }
.svc-card h3 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 1rem; margin-bottom: 6px;
}
.svc-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.svc-tags { display: flex; gap: 4px; margin-top: 12px; flex-wrap: wrap; }
.svc-tags span {
  font-size: 0.68rem; font-weight: 600; padding: 2px 8px;
  border-radius: 99px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); color: var(--text-dim);
}
.tag-hl { background: rgba(59,130,246,0.08) !important; color: var(--blue) !important; border-color: rgba(59,130,246,0.2) !important; }

/* ═══ ABOUT PAGE ═══════════════════════ */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 20px;
}
.about-text {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 12px;
}
.about-checks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin: 24px 0;
}
.check-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 500; color: var(--text-muted);
}
.check-item svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.about-hero-image {
  border-radius: var(--radius-xl); overflow: hidden;
  margin-bottom: 20px; border: 1px solid var(--border);
}
.about-hero-image img {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.about-hero-image:hover img { transform: scale(1.04); }
.about-card-glass {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px;
  position: relative; overflow: hidden;
}
.about-card-glass::before {
  content: ''; position: absolute; top: -1px; left: 40px; right: 40px; height: 2px;
  background: var(--gradient); border-radius: 99px;
}
.about-card-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem; font-weight: 600;
  line-height: 1.4; margin-bottom: 16px;
}
.about-card-sub { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.about-card-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px;
}
.acs {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; text-align: center;
}
.acs-num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 1.5rem; background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.acs-label { font-size: 0.72rem; color: var(--text-dim); margin-top: 2px; }

/* Values */
.values-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.val-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.3s var(--ease);
}
.val-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.val-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.val-icon svg { width: 22px; height: 22px; color: var(--blue); }
.val-card h3 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 1.05rem; margin-bottom: 8px;
}
.val-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ═══ CONTACT ══════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 32px; align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.c-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  transition: border-color 0.2s;
}
.c-card:hover { border-color: var(--border-hover); }
.c-card-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.c-card-icon svg { width: 16px; height: 16px; color: var(--blue); }
.c-card-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px;
}
.c-card-value {
  display: block; font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.6; transition: color 0.2s;
}
a.c-card-value:hover { color: var(--blue); }
.emergency-banner {
  display: flex; align-items: center; gap: 12px;
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius); padding: 16px 20px;
}
.emergency-banner svg { width: 24px; height: 24px; color: var(--red); flex-shrink: 0; }
.emergency-banner strong { display: block; font-size: 0.9rem; color: var(--text); }
.emergency-banner span { font-size: 0.8rem; color: var(--text-muted); }

/* Form */
.form-panel {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px;
}
.form-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 1.3rem; margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.04); border: 1.5px solid var(--border);
  color: var(--text); padding: 12px 16px; border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.92rem;
  outline: none; transition: all 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); background: rgba(59,130,246,0.04);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.form-group input.error, .form-group select.error {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; cursor: pointer; }
.form-error {
  font-size: 0.75rem; color: var(--red); margin-top: 4px;
  display: none; font-weight: 500;
}
.form-error.visible { display: block; }
.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 16px; border: none; border-radius: var(--radius);
  background: var(--gradient); color: white;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 1rem; cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 24px rgba(59,130,246,0.3);
}
.btn-submit svg { width: 18px; height: 18px; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(59,130,246,0.4); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success {
  display: none; align-items: center; justify-content: center; gap: 8px;
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2);
  color: var(--green); padding: 14px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.88rem; margin-top: 14px;
}
.form-success.visible { display: flex; }
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Map */
.map-wrap { padding: 0 0 80px; }
.map-box {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); height: 360px;
}
.map-box iframe { width: 100%; height: 100%; border: none; display: block; filter: saturate(0.7) brightness(0.7); }

/* ═══ FOOTER ═══════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 0; background: var(--bg-card);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-desc {
  font-size: 0.85rem; color: var(--text-dim); line-height: 1.7;
  max-width: 280px; margin: 16px 0 20px;
}
.footer-socials { display: flex; gap: 8px; }
.social-link {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); transition: all 0.2s;
}
.social-link:hover { background: var(--blue); color: white; border-color: var(--blue); }
.social-link svg { width: 14px; height: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 0.82rem; color: var(--text);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px;
}
.footer-col a, .footer-col p {
  font-size: 0.85rem; color: var(--text-dim);
  line-height: 1.5; transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; padding: 20px 0;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }
.footer-bottom strong { color: var(--text-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: var(--text-dim); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-muted); }

/* ═══ REVEAL ANIMATIONS ════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-hero {
  opacity: 0; transform: translateY(24px);
  animation: heroReveal 0.8s var(--ease) forwards;
}
.reveal-hero.reveal-d1 { animation-delay: 0.1s; }
.reveal-hero.reveal-d2 { animation-delay: 0.2s; }
.reveal-hero.reveal-d3 { animation-delay: 0.35s; }
.reveal-hero.reveal-d4 { animation-delay: 0.5s; }
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ═══ RESPONSIVE ═══════════════════════ */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-featured { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .values-row { grid-template-columns: 1fr; gap: 12px; }
  .about-card-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone span { display: none; }
  .hamburger { display: flex; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .testimonials-row { grid-template-columns: 1fr; }
  .process-grid { flex-direction: column; gap: 12px; }
  .process-arrow { transform: rotate(90deg); padding: 4px 0; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-featured { grid-column: span 1; }
  .bento-has-image { flex-direction: column; }
  .bento-image { flex: none; width: 100%; height: 200px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .bento-has-image .bento-text { padding: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 140px 0 80px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 2.8rem); }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-card { flex: 0 0 50%; }
  .hero-desc { font-size: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .tabs { flex-wrap: wrap; }
  .about-checks { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .about-actions { flex-direction: column; }
  .about-actions .btn { justify-content: center; }
}

/* ─── ACCESSIBILITY ──────────────────── */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-hero { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
