/* =============================================
   RCD Electrical Installations — styles.css v1
   ============================================= */

/* 1. VARIABLES & RESET
   ------------------------------------------ */
:root {
  --brand-primary:     #4A90D9;
  --brand-primary-dark:#3a7bc4;
  --brand-primary-rgb: 74, 144, 217;
  --brand-gold:        #F5A623;
  --brand-gold-dark:   #d4891a;
  --brand-gold-rgb:    245, 166, 35;
  --brand-silver:      #C0C0C0;

  --black:      #0a0a0a;
  --black-mid:  #0d0d1a;
  --black-card: #1a1a2e;
  --black-border:#252538;

  --white:      #ffffff;
  --grey-text:  #aaaaaa;

  --whatsapp:      #25D366;
  --whatsapp-dark: #1ebe59;
  --star-gold:     #f5c518;

  --font:         'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius:       8px;
  --transition:   0.25s ease;
  --section-pad:  80px 20px;
  --max-w:        1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--black); color: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* 2. TYPOGRAPHY UTILITIES
   ------------------------------------------ */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-title span { color: var(--brand-primary); }

.section-subtitle {
  font-size: 1rem;
  color: var(--grey-text);
  max-width: 580px;
  line-height: 1.75;
}

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* 3. BUTTONS
   ------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

.btn-outline { background: transparent; color: var(--brand-primary); border: 2px solid var(--brand-primary); }
.btn-outline:hover { background: rgba(var(--brand-primary-rgb),0.08); box-shadow: 0 8px 24px rgba(var(--brand-primary-rgb),0.2); }

.btn-ghost { background: rgba(var(--brand-primary-rgb),0.08); color: var(--brand-primary); border: 1px solid rgba(var(--brand-primary-rgb),0.2); }
.btn-ghost:hover { background: rgba(var(--brand-primary-rgb),0.15); }

/* 4. FADE-UP ANIMATION
   ------------------------------------------ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* 5. NAVBAR
   ------------------------------------------ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 70px; z-index: 1000;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; object-fit: contain; }
.nav-logo-text { font-size: 0.85rem; font-weight: 700; line-height: 1.2; letter-spacing: 0.02em; }
.nav-logo-text span { display: block; font-size: 0.7rem; font-weight: 400; color: var(--grey-text); letter-spacing: 0.05em; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  position: relative; padding: 8px 14px;
  font-size: 0.875rem; font-weight: 500; color: var(--grey-text);
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--brand-primary);
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta .btn { padding: 10px 20px; font-size: 0.85rem; }

.nav-social { display: flex; align-items: center; gap: 4px; }
.nav-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 6px;
  color: var(--grey-text);
  transition: color var(--transition), background var(--transition);
}
.nav-social-icon:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-social-icon svg { width: 17px; height: 17px; }

.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-nav {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(10,10,10,0.98); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 16px 20px 20px; z-index: 999;
  flex-direction: column; gap: 4px;
}
#mobile-nav.open { display: flex; }
#mobile-nav a { padding: 12px 16px; font-size: 1rem; color: var(--grey-text); border-radius: var(--radius); transition: background var(--transition), color var(--transition); }
#mobile-nav a:hover { background: rgba(255,255,255,0.05); color: var(--white); }
#mobile-nav .btn { margin-top: 8px; justify-content: center; }
#mobile-nav .btn-whatsapp { color: #fff; }
.mobile-nav-social {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 12px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav-social a {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 10px;
  color: var(--grey-text); background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav-social a:hover { color: var(--white); background: rgba(255,255,255,0.09); }
.mobile-nav-social svg { width: 26px; height: 26px; }

/* 6. HERO
   ------------------------------------------ */
#hero {
  min-height: 100vh; padding: 120px 20px 60px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--black);
}

.hero-circuit {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(74,144,217,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,144,217,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow-right {
  position: absolute; top: 50%; right: -5%;
  width: 55%; height: 90%; transform: translateY(-50%);
  background: radial-gradient(ellipse at center, rgba(74,144,217,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow-gold {
  position: absolute; bottom: 10%; left: 15%;
  width: 35%; height: 45%;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; width: 100%; }

.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: center; margin-bottom: 40px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(var(--brand-gold-rgb),0.1);
  border: 1px solid rgba(var(--brand-gold-rgb),0.35);
  color: var(--brand-gold);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge svg { width: 15px; height: 15px; }

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.025em; margin-bottom: 20px;
}
.hero-title .city { color: var(--brand-primary); }

.hero-tagline {
  font-size: 1.05rem; color: var(--grey-text);
  line-height: 1.75; max-width: 540px; margin-bottom: 32px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-logo-col {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}

.hero-logo-card {
  background: none;
  border: none;
  border-radius: 0; padding: 0;
  display: flex; align-items: center; justify-content: center;
  width: 100%; max-width: 280px;
  box-shadow: none;
}
.hero-logo-card::before { display: none; }
.hero-logo-card img { width: 100%; height: auto; object-fit: contain; }

.hero-logo-stats { display: flex; gap: 12px; width: 100%; max-width: 380px; }
.hero-logo-stat {
  flex: 1; background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius); padding: 14px 12px; text-align: center;
}
.hero-logo-stat .stat-val {
  display: block; font-size: 1.4rem; font-weight: 800;
  color: var(--brand-primary); line-height: 1; margin-bottom: 4px;
}
.hero-logo-stat .stat-val.gold { color: var(--brand-gold); }
.hero-logo-stat .stat-desc { font-size: 0.72rem; color: var(--grey-text); font-weight: 500; }

.hero-stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--black-border);
  border: 1px solid var(--black-border);
  border-radius: 12px; overflow: hidden;
}
.hero-stat {
  background: var(--black-card); padding: 18px 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-stat-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(var(--brand-primary-rgb),0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-primary); flex-shrink: 0;
}
.hero-stat-icon.gold-icon { background: rgba(var(--brand-gold-rgb),0.12); color: var(--brand-gold); }
.hero-stat-icon svg { width: 20px; height: 20px; }
.hero-stat-info strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.hero-stat-info span { font-size: 0.72rem; color: var(--grey-text); }

/* 7. SERVICES
   ------------------------------------------ */
#services {
  padding: var(--section-pad);
  background: var(--black-mid);
  position: relative;
}
#services::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  opacity: 0.3;
}

.services-table {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--black-border);
  border: 1px solid var(--black-border);
  border-radius: 12px; overflow: hidden;
  margin-top: 8px;
}

.service-row {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: var(--black-card);
  transition: background var(--transition);
}
.service-row:hover { background: rgba(var(--brand-primary-rgb), 0.07); }
.service-row:hover .svc-name { color: var(--brand-primary); }
.service-row.svc-filler { pointer-events: none; }

.svc-tick {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(var(--brand-gold-rgb), 0.12);
  border: 1px solid rgba(var(--brand-gold-rgb), 0.35);
  color: var(--brand-gold);
  display: flex; align-items: center; justify-content: center;
}
.svc-tick svg { width: 11px; height: 11px; }

.svc-icon { color: var(--brand-primary); flex-shrink: 0; }
.svc-icon svg { width: 18px; height: 18px; display: block; }

.svc-text { display: flex; flex-direction: column; gap: 3px; }
.svc-name {
  font-size: 0.875rem; font-weight: 600; color: var(--white);
  line-height: 1.3; transition: color var(--transition);
}
.svc-desc { font-size: 0.72rem; color: var(--grey-text); line-height: 1.3; }

.services-footer {
  margin-top: 40px; padding: 22px 28px;
  background: rgba(var(--brand-primary-rgb),0.06);
  border: 1px solid rgba(var(--brand-primary-rgb),0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.services-footer p { font-size: 0.95rem; color: var(--grey-text); }
.services-footer strong { color: var(--white); }

/* 8. ABOUT
   ------------------------------------------ */
#about { padding: var(--section-pad); background: var(--black); }

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

.about-image-col { display: flex; flex-direction: column; gap: 16px; }

.about-napit-wrap {
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
.about-napit-img { width: 100%; height: auto; object-fit: contain; object-position: center; background: none; padding: 0; max-width: 420px; }
.about-napit-panel {
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 10px;
  background: rgba(212,160,23,0.04);
  margin-top: 16px;
}
.about-napit-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-gold); flex-shrink: 0;
}
.about-napit-icon svg { width: 22px; height: 22px; }
.about-napit-text strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--brand-gold); }
.about-napit-text span { font-size: 0.78rem; color: var(--grey-text); }

.about-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.about-stat {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: 10px; padding: 16px 18px; text-align: center;
}
.about-stat .num { display: block; font-size: 1.75rem; font-weight: 800; color: var(--brand-primary); line-height: 1; margin-bottom: 4px; }
.about-stat .lbl { font-size: 0.75rem; color: var(--grey-text); font-weight: 500; }

.about-area-strip {
  margin-top: 32px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0;
}
.area-item { white-space: nowrap; }
.area-sep { opacity: 0.4; margin: 0 6px; }

.about-video-wrap {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 200px;
  aspect-ratio: 221 / 476;
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(212,160,23,0.25);
  box-shadow: 0 0 40px rgba(74,144,217,0.08), 0 8px 32px rgba(0,0,0,0.4);
  background: var(--black-card);
}
.about-video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none; display: block;
}

.about-bio { font-size: 0.95rem; color: var(--grey-text); line-height: 1.8; margin-bottom: 28px; }

.about-checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.about-check {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--grey-text);
}
.about-check svg { width: 20px; height: 20px; color: var(--brand-primary); flex-shrink: 0; margin-top: 2px; }
.about-check strong { color: var(--white); display: block; font-size: 0.9rem; margin-bottom: 1px; }

.about-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* 9. GALLERY
   ------------------------------------------ */
#gallery { padding: var(--section-pad); background: var(--black-mid); }

.gallery-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px;
  role: tablist;
}
.gallery-tab {
  padding: 8px 20px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; font-family: var(--font);
  border: 1px solid var(--black-border);
  background: var(--black-card); color: var(--grey-text);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.gallery-tab:hover, .gallery-tab.active {
  background: var(--brand-primary); border-color: var(--brand-primary); color: var(--white);
}

.masonry-wrap { transition: opacity 0.3s ease; }
.masonry-wrap.fading { opacity: 0; }

#masonry-container { display: flex; gap: 16px; align-items: flex-start; }
.masonry-col { flex: 1; display: flex; flex-direction: column; gap: 16px; }

/* Standalone masonry item */
.masonry-item { border-radius: 10px; overflow: hidden; background: var(--black-card); }

.lightbox-trigger { position: relative; cursor: pointer; overflow: hidden; display: block; }
.lightbox-trigger img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.lightbox-trigger:hover img { transform: scale(1.04); }

.masonry-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease;
}
.masonry-overlay svg {
  opacity: 0; transform: scale(0.8);
  color: var(--white); width: 32px; height: 32px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.lightbox-trigger:hover .masonry-overlay { background: rgba(0,0,0,0.4); }
.lightbox-trigger:hover .masonry-overlay svg { opacity: 1; transform: scale(1); }

/* Before/after pair item */
.pair-wrapper {
  display: flex; gap: 3px;
  background: var(--black); /* divider colour */
}
.pair-side {
  flex: 1; position: relative; overflow: hidden; cursor: pointer;
}
.pair-side img {
  width: 100%; height: 190px; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.pair-side:hover img { transform: scale(1.05); }
.pair-side .masonry-overlay { background: rgba(0,0,0,0); }
.pair-side:hover .masonry-overlay { background: rgba(0,0,0,0.4); }
.pair-side:hover .masonry-overlay svg { opacity: 1; transform: scale(1); }

.pair-label {
  position: absolute; top: 8px; left: 8px;
  padding: 3px 10px; border-radius: 100px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  pointer-events: none;
  background: rgba(0,0,0,0.7); color: var(--grey-text);
}
.pair-label.is-after { background: rgba(var(--brand-primary-rgb),0.85); color: var(--white); }

.pair-caption {
  padding: 10px 14px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--grey-text);
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
}

/* Lightbox */
#lightbox {
  display: none; position: fixed; inset: 0;
  z-index: 9000; background: rgba(0,0,0,0.93);
  align-items: center; justify-content: center;
}
#lightbox.active { display: flex; }

.lb-content {
  display: flex; flex-direction: column; align-items: center;
  max-width: 90vw; max-height: 90vh;
}

#lightbox-img {
  max-width: 100%; max-height: 75vh;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  display: block;
}

.lb-close {
  position: fixed; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); font-size: 1.4rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lb-close:hover { background: rgba(255,255,255,0.2); }

.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); font-size: 1.6rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lb-nav:hover { background: rgba(255,255,255,0.2); }
#lb-prev { left: 20px; }
#lb-next { right: 20px; }

.lb-counter {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.65); color: var(--grey-text);
  font-size: 0.75rem; padding: 5px 14px; border-radius: 100px;
  white-space: nowrap;
}

.lb-caption {
  margin-top: 12px;
  color: var(--white); font-size: 0.82rem; line-height: 1.5;
  max-width: 100%; text-align: center;
  padding: 0 8px;
  white-space: normal;
}

.lb-badge {
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  padding: 4px 14px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  background: rgba(var(--brand-primary-rgb),0.8); color: var(--white);
  display: none;
}
.lb-badge.before-badge { background: rgba(0,0,0,0.7); color: var(--grey-text); }
.lb-badge.visible { display: block; }

/* 10. REVIEWS
   ------------------------------------------ */
#reviews { padding: var(--section-pad); background: var(--black); }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; }

.review-card {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: 12px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

.review-stars { display: flex; gap: 2px; color: var(--star-gold); font-size: 1rem; }

.review-text {
  font-size: 0.9rem; color: var(--grey-text); line-height: 1.75;
  flex: 1; font-style: italic;
}
.review-text::before { content: '\201C'; color: var(--brand-primary); font-size: 1.5rem; line-height: 0; vertical-align: -0.3em; margin-right: 2px; font-style: normal; }

.review-meta {
  display: flex; align-items: center; gap: 10px;
  padding-top: 14px; border-top: 1px solid var(--black-border);
}
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(var(--brand-primary-rgb),0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700; color: var(--brand-primary); flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--white); }
.review-author span { font-size: 0.75rem; color: var(--grey-text); }

.google-reviews-btn {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px;
  padding: 11px 22px; border-radius: 10px;
  background: var(--white); color: #3c4043;
  font-size: 0.875rem; font-weight: 600;
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: box-shadow var(--transition), transform var(--transition);
}
.google-reviews-btn:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  transform: translateY(-2px);
  color: #3c4043;
}
.google-reviews-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.google-btn-stars { color: var(--star-gold); letter-spacing: 1px; font-size: 0.8rem; }

/* 11. ACCREDITATIONS
   ------------------------------------------ */
#accreditations {
  padding: 64px 20px;
  background: var(--black-mid);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.accred-napit-showcase {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; margin-bottom: 48px;
}

.accred-napit-img-wrap {
  margin-bottom: 28px;
  border-radius: 20px;
  border: 2px solid rgba(212,160,23,0.5);
  box-shadow:
    0 0 40px rgba(212,160,23,0.2),
    0 0 80px rgba(212,160,23,0.08),
    inset 0 0 0 4px rgba(212,160,23,0.05);
  overflow: hidden;
  max-width: 260px; width: 100%;
}
.accred-napit-img-wrap img { width: 100%; height: auto; display: block; object-fit: cover; }

.accred-napit-heading {
  font-size: 1.6rem; font-weight: 800;
  color: var(--brand-gold);
  letter-spacing: -0.01em; margin-bottom: 10px;
  text-shadow: 0 0 28px rgba(245,166,35,0.35);
}

.accred-napit-sub {
  font-size: 0.9rem; color: var(--grey-text);
  max-width: 480px; line-height: 1.7;
}

.accred-pills-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; max-width: 560px; margin: 0 auto;
}

.accred-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: 100px;
  background: rgba(212,160,23,0.06);
  border: 1px solid rgba(212,160,23,0.22);
  font-size: 0.875rem; font-weight: 600; color: var(--white);
  transition: background var(--transition), border-color var(--transition);
}
.accred-pill:hover { background: rgba(212,160,23,0.11); border-color: rgba(212,160,23,0.4); }

.accred-pill-tick {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-gold);
}
.accred-pill-tick svg { width: 13px; height: 13px; }

/* 12. SERVICE AREA
   ------------------------------------------ */
#service-area { padding: var(--section-pad); background: var(--black-mid); }

.service-area-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }

.coverage-panel { display: flex; flex-direction: column; gap: 20px; }

.coverage-copy { font-size: 0.9rem; color: var(--grey-text); line-height: 1.75; }

.coverage-towns { display: flex; flex-direction: column; gap: 8px; }

.coverage-town {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; color: var(--grey-text);
  padding: 10px 14px;
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: 8px;
}
.coverage-town svg { width: 16px; height: 16px; color: var(--brand-primary); flex-shrink: 0; }
.coverage-town.home-town { border-color: rgba(var(--brand-primary-rgb),0.3); color: var(--white); background: rgba(var(--brand-primary-rgb),0.06); }

.coverage-cta-box {
  padding: 20px; background: var(--black-card);
  border: 1px solid var(--black-border); border-radius: 12px; text-align: center;
}
.coverage-cta-box p { font-size: 0.85rem; color: var(--grey-text); margin-bottom: 12px; line-height: 1.5; }
.coverage-cta-box .btn { width: 100%; justify-content: center; font-size: 0.875rem; padding: 12px 20px; }

.map-col { display: flex; flex-direction: column; gap: 16px; }

#map { height: 480px; border-radius: 12px; border: 1px solid var(--black-border); overflow: hidden; }
.leaflet-container { background: #1d2733 !important; }
.leaflet-popup-content-wrapper { background: var(--black-card) !important; border: 1px solid var(--black-border) !important; border-radius: 8px !important; box-shadow: 0 8px 30px rgba(0,0,0,0.5) !important; color: var(--white) !important; }
.leaflet-popup-tip { background: var(--black-card) !important; }
.leaflet-popup-content { color: var(--white) !important; margin: 12px 16px !important; font-size: 0.875rem; }

.map-note { font-size: 0.8rem; color: var(--grey-text); line-height: 1.6; }

/* 13. FAQ
   ------------------------------------------ */
#faq { padding: var(--section-pad); background: var(--black); }

.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 800px; margin: 0 auto; }

.faq-item { background: var(--black-card); border: 1px solid var(--black-border); border-radius: 10px; overflow: hidden; }

.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer;
  font-size: 0.95rem; font-weight: 600; color: var(--white);
  transition: color var(--transition), background var(--transition);
  background: none; border: none; width: 100%; text-align: left; font-family: var(--font);
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-q.open { color: var(--brand-primary); }

.faq-chevron { width: 20px; height: 20px; color: var(--grey-text); flex-shrink: 0; transition: transform var(--transition), color var(--transition); }
.faq-q.open .faq-chevron { transform: rotate(180deg); color: var(--brand-primary); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a.open { max-height: 500px; }

.faq-a-inner {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--black-border);
  font-size: 0.9rem; color: var(--grey-text); line-height: 1.75;
}

/* 14. CONTACT
   ------------------------------------------ */
#contact { padding: var(--section-pad); background: var(--black-mid); }

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

.contact-methods { display: flex; flex-direction: column; gap: 14px; }

.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px;
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: 12px;
  transition: border-color var(--transition), transform var(--transition);
}
.contact-method:hover { border-color: rgba(var(--brand-primary-rgb),0.3); transform: translateX(4px); }
.contact-method.wa:hover { border-color: rgba(37,211,102,0.3); }

.contact-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(var(--brand-primary-rgb),0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-primary); flex-shrink: 0;
}
.contact-icon.wa-col { background: rgba(37,211,102,0.1); color: var(--whatsapp); }
.contact-icon svg { width: 22px; height: 22px; }

.contact-info-label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--grey-text); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-info-value { display: block; font-size: 1rem; font-weight: 700; color: var(--white); }
.contact-info-note { display: block; font-size: 0.78rem; color: var(--grey-text); margin-top: 2px; }

.contact-social-section { margin-top: 8px; }
.social-heading { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey-text); margin-bottom: 12px; }

.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 8px;
  font-size: 0.82rem; color: var(--grey-text);
  background: var(--black-card); border: 1px solid var(--black-border);
  transition: border-color var(--transition), color var(--transition);
}
.social-btn:hover { border-color: rgba(var(--brand-primary-rgb),0.3); color: var(--white); }
.social-btn svg { width: 17px; height: 17px; }

.contact-panel {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: 16px; overflow: hidden;
}
.contact-panel-head {
  padding: 24px 28px; border-bottom: 1px solid var(--black-border);
  background: rgba(var(--brand-primary-rgb),0.04);
}
.contact-panel-head h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.contact-panel-head p { font-size: 0.85rem; color: var(--grey-text); }

.contact-panel-body { padding: 28px; display: flex; flex-direction: column; gap: 20px; }
.panel-detail { display: flex; align-items: flex-start; gap: 12px; }
.panel-detail svg { width: 20px; height: 20px; color: var(--brand-primary); flex-shrink: 0; margin-top: 2px; }
.panel-detail strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.panel-detail span { font-size: 0.85rem; color: var(--grey-text); line-height: 1.5; }

.contact-panel-foot { padding: 20px 28px; border-top: 1px solid var(--black-border); }
.contact-panel-foot .btn { width: 100%; justify-content: center; }

/* 15. FOOTER
   ------------------------------------------ */
footer { background: var(--black); border-top: 1px solid var(--black-border); padding: 60px 20px 0; }

.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}

.footer-logo { height: 48px; width: auto; object-fit: contain; margin-bottom: 14px; }
.footer-tagline { font-size: 0.875rem; color: var(--grey-text); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }

.footer-napit-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.2);
  padding: 7px 14px; border-radius: 8px;
  font-size: 0.75rem; font-weight: 700;
  color: var(--brand-gold); letter-spacing: 0.05em; text-transform: uppercase;
}
.footer-napit-pill svg { width: 14px; height: 14px; }

.footer-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey-text); margin-bottom: 16px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: var(--grey-text); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--grey-text); }
.footer-contact-row svg { width: 16px; height: 16px; color: var(--brand-primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-row a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid var(--black-border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: var(--grey-text); }
.footer-seo { font-size: 0.74rem; color: rgba(170,170,170,0.4); }

/* 16. FLOATING ELEMENTS
   ------------------------------------------ */
#scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-primary); border: none;
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  opacity: 0; transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  box-shadow: 0 4px 20px rgba(var(--brand-primary-rgb),0.4);
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: var(--brand-primary-dark); }
#scroll-top svg { width: 20px; height: 20px; }

#float-badge {
  position: fixed; left: 0; bottom: 90px; z-index: 800;
  background: rgba(10,10,10,0.96);
  border: 1px solid rgba(212,160,23,0.35);
  border-left: none;
  color: var(--white);
  padding: 16px 14px 14px; border-radius: 0 12px 12px 0;
  font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  box-shadow: 0 4px 28px rgba(212,160,23,0.2);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  width: 80px;
}
#float-badge:hover { box-shadow: 4px 0 36px rgba(212,160,23,0.4); }
.float-badge-logo { width: 70%; height: auto; object-fit: contain; }
.float-badge-tick {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  animation: tick-pulse 2.2s ease-in-out infinite;
}
.float-badge-tick svg { width: 12px; height: 12px; }
.float-badge-label { color: rgba(212,160,23,0.9); text-align: center; line-height: 1.3; font-size: 7.5px; letter-spacing: 0.04em; }
@keyframes tick-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  55%       { box-shadow: 0 0 0 7px rgba(37,211,102,0); }
}

/* 17. RESPONSIVE
   ------------------------------------------ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-logo-col { flex-direction: row; align-items: center; justify-content: center; gap: 24px; }
  .hero-logo-card { max-width: 220px; }
  .hero-logo-stats { flex-direction: column; max-width: 180px; }
  .hero-stats-bar { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(4,1fr); }
  .service-area-grid { grid-template-columns: 1fr; }
  .map-col { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px 18px; }

  /* Nav */
  .nav-links, .nav-cta, .nav-social { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  #hero { padding: 96px 18px 48px; text-align: center; }
  .hero-badge { margin: 0 auto 20px; }
  .hero-tagline { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-arc { margin-left: auto; margin-right: auto; }
  .hero-logo-col { flex-direction: column; align-items: center; gap: 16px; }
  .hero-logo-card { max-width: 200px; }
  .hero-logo-stats { flex-direction: row; max-width: 100%; justify-content: center; }
  .hero-logo-stat { padding: 10px 10px; }
  .hero-stats-bar { grid-template-columns: repeat(2,1fr); }
  .hero-stat { padding: 14px 12px; gap: 8px; }
  .hero-stat-icon { width: 30px; height: 30px; }
  .hero-stat-icon svg { width: 16px; height: 16px; }
  .hero-stat-info strong { font-size: 0.8rem; }
  .hero-stat-info span { font-size: 0.67rem; }

  /* Services */
  .services-footer { flex-direction: column; align-items: center; text-align: center; }

  /* About */
  .about-stats { grid-template-columns: repeat(2,1fr); }
  .about-napit-img { max-width: 100%; }
  .about-video-wrap { width: 160px; }

  /* Gallery */
  .gallery-tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 6px; justify-content: flex-start; }
  .gallery-tab { white-space: nowrap; flex-shrink: 0; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Accreditations */
  .accred-pills-grid { grid-template-columns: 1fr; max-width: 100%; }
  .accred-napit-img-wrap { max-width: 200px; }

  /* Map */
  #map { height: 300px; }

  /* Service area */
  .service-area-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Floating */
  #float-badge { width: 64px; padding: 12px 10px 10px; left: 0; }
  .float-badge-label { font-size: 0.55rem; }
}

@media (max-width: 480px) {
  :root { --section-pad: 48px 16px; }

  /* Hero */
  #hero { padding: 88px 16px 40px; }
  .hero-stats-bar { grid-template-columns: 1fr 1fr; }
  .hero-stat { padding: 12px 10px; gap: 6px; }
  .hero-stat-icon { width: 28px; height: 28px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero-logo-stat { padding: 8px 6px; }
  .hero-logo-stat .stat-val { font-size: 1.1rem; }

  /* Gallery */
  .gallery-tab { padding: 7px 14px; font-size: 0.8rem; }
  .lb-nav { width: 40px; height: 40px; font-size: 1.3rem; }
  #lb-prev { left: 8px; }
  #lb-next { right: 8px; }
  .pair-side img { height: 130px; }

  /* About */
  .about-area-strip { font-size: 0.68rem; gap: 2px; }
  .about-video-wrap { width: 140px; }

  /* Contact */
  .contact-grid { gap: 28px; }
}

/* =============================================
   DESIGN ENHANCEMENT PASS v2
   ============================================= */

/* ── KEYFRAMES ─────────────────────────────── */

@keyframes hero-load {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.45), 0 0 14px rgba(245,166,35,0.12); }
  55%       { box-shadow: 0 0 0 10px rgba(245,166,35,0), 0 0 24px rgba(245,166,35,0.22); }
}

@keyframes btn-shine {
  0%   { left: -120%; }
  45%  { left: 160%; }
  100% { left: 160%; }
}

@keyframes counter-in {
  from { opacity: 0; transform: translateY(12px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── HERO LOAD ANIMATIONS ──────────────────── */

.hero-badge {
  animation: hero-load 0.55s cubic-bezier(0.22,1,0.36,1) both,
             badge-pulse 2.8s ease 0.8s infinite;
}
.hero-title   { animation: hero-load 0.6s 0.1s  cubic-bezier(0.22,1,0.36,1) both; }
.hero-tagline { animation: hero-load 0.6s 0.22s cubic-bezier(0.22,1,0.36,1) both; }
.hero-ctas    { animation: hero-load 0.6s 0.34s cubic-bezier(0.22,1,0.36,1) both; }
.hero-logo-col  { animation: hero-load 0.7s 0.15s cubic-bezier(0.22,1,0.36,1) both; }
.hero-stats-bar { animation: hero-load 0.6s 0.46s cubic-bezier(0.22,1,0.36,1) both; }

/* ── HERO TITLE — bigger, heavier ─────────── */

.hero-title {
  font-size: clamp(2.4rem, 5.8vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero-title .city {
  display: inline-block;
  background: linear-gradient(135deg, #6db3f2 0%, #4A90D9 45%, #2a72c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(74,144,217,0.4));
}

/* ── HERO ELECTRIC ARC LINE ─────────────────── */

.hero-arc {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 2px;
  margin: 20px 0 28px;
  border-radius: 2px;
  overflow: hidden;
  background: linear-gradient(90deg,
    transparent,
    rgba(74,144,217,0.22) 20%,
    rgba(74,144,217,0.22) 80%,
    transparent
  );
}

.hero-arc::after {
  content: '';
  position: absolute;
  top: -4px; left: -30%;
  width: 30%; height: 10px;
  background: linear-gradient(90deg,
    transparent,
    rgba(74,144,217,0.6) 30%,
    rgba(255,255,255,0.95) 50%,
    rgba(74,144,217,0.6) 70%,
    transparent
  );
  filter: blur(2px);
  border-radius: 50%;
  animation: arc-travel 2.6s ease-in-out infinite;
}

@keyframes arc-travel {
  0%   { left: -30%; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

/* ── HERO LOGO CARD — clean standalone ──────── */

/* ── SECTION LABELS — underline accent ─────── */

.section-label {
  position: relative;
  padding-bottom: 10px;
}
.section-label::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 20px; height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
}
.section-header.center .section-label::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ── SECTION TITLE SPAN GLOW ────────────────── */

.section-title span {
  text-shadow: 0 0 28px rgba(74,144,217,0.28);
}

/* ── SECTION SEPARATOR LINES ────────────────── */

#about, #reviews, #contact { position: relative; }
#gallery, #faq { position: relative; }

#about::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.3), transparent);
}
#gallery::before, #faq::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  opacity: 0.4;
}
#reviews::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.2), transparent);
}
#contact::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  opacity: 0.35;
}

/* ── WHATSAPP BUTTON — shine sweep ─────────── */

.btn-whatsapp {
  position: relative;
  overflow: hidden;
}
.btn-whatsapp::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-18deg);
  animation: btn-shine 3.2s ease-in-out infinite;
  pointer-events: none;
}

/* ── SERVICES TABLE — responsive ───────────── */
@media (max-width: 768px) {
  .services-table { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-table { grid-template-columns: 1fr; }
  .service-row { padding: 14px 18px; }
}

/* ── REVIEW CARDS — larger quote mark ──────── */

.review-text::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 0;
  vertical-align: -0.52em;
  color: rgba(74,144,217,0.2);
  font-style: normal;
  margin-right: 4px;
  font-weight: 900;
}

/* ── ABOUT STAT NUMBERS — entry animation ───── */

.about-stat.animated .num {
  animation: counter-in 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

/* ── HERO STATS BAR — hover glow on icons ───── */

.hero-stat { transition: background var(--transition); }
.hero-stat:hover { background: rgba(255,255,255,0.02); }
.hero-stat-icon { transition: transform var(--transition), box-shadow var(--transition); }
.hero-stat:hover .hero-stat-icon {
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(74,144,217,0.25);
}
.hero-stat:hover .gold-icon {
  box-shadow: 0 0 16px rgba(245,166,35,0.25);
}

/* ── CONTACT METHODS — left slide on hover ──── */

.contact-method { transition: border-color var(--transition), transform var(--transition), background var(--transition); }
.contact-method:hover { background: rgba(255,255,255,0.015); }

/* ── PAIR CARD — gap colour matches brand ───── */

.pair-wrapper { background: rgba(74,144,217,0.15); }

/* ── NAVBAR — active link gold on scroll ───── */

#navbar.scrolled .nav-links a.active { color: var(--brand-primary); }

/* ── HERO BACKGROUND — deeper atmosphere ───── */

#hero {
  background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(26,26,60,0.8) 0%, #0a0a0a 70%);
}

/* ── RESPONSIVE ADJUSTMENTS ─────────────────── */
@media (max-width: 1024px) {
  .hero-title { font-size: clamp(2.2rem, 5vw, 3.5rem); }
}
@media (max-width: 768px) {
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.8rem); letter-spacing: -0.02em; }
  .hero-grid { margin-bottom: 28px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.75rem, 8vw, 2.4rem); }
}

/* ── ELECTRIC ARC — SECTION DIVIDERS & FOOTER ── */

/* Gold pulse: About, Reviews */
#about::after, #reviews::after {
  content: '';
  position: absolute; top: -4px; left: -20%;
  width: 20%; min-width: 140px; height: 9px;
  background: linear-gradient(90deg,
    transparent,
    rgba(245,166,35,0.6) 35%,
    rgba(255,255,255,0.5) 50%,
    rgba(245,166,35,0.6) 65%,
    transparent
  );
  filter: blur(2.5px); pointer-events: none; z-index: 2;
  animation: divider-pulse 4.4s ease-in-out infinite;
}
#reviews::after { animation-delay: 1.5s; }

/* Blue pulse: Gallery, Contact */
#gallery::after, #contact::after {
  content: '';
  position: absolute; top: -4px; left: -20%;
  width: 20%; min-width: 140px; height: 9px;
  background: linear-gradient(90deg,
    transparent,
    rgba(74,144,217,0.7) 35%,
    rgba(255,255,255,0.6) 50%,
    rgba(74,144,217,0.7) 65%,
    transparent
  );
  filter: blur(2.5px); pointer-events: none; z-index: 2;
  animation: divider-pulse 4.4s ease-in-out infinite;
}
#contact::after { animation-delay: 2.9s; }

@keyframes divider-pulse {
  0%   { left: -20%; opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

/* Gold arc variant (.arc-gold overrides .hero-arc colours) */
.arc-gold {
  background: linear-gradient(90deg,
    transparent,
    rgba(212,160,23,0.22) 20%,
    rgba(212,160,23,0.22) 80%,
    transparent
  );
  max-width: 600px; margin: 32px auto;
}
.arc-gold::after {
  background: linear-gradient(90deg,
    transparent,
    rgba(212,160,23,0.65) 30%,
    rgba(255,255,255,0.9) 50%,
    rgba(212,160,23,0.65) 70%,
    transparent
  );
}

/* Footer arc — blue, staggered delay */
footer { position: relative; }
footer::after {
  content: '';
  position: absolute; top: -4px; left: -20%;
  width: 20%; min-width: 140px; height: 9px;
  background: linear-gradient(90deg,
    transparent,
    rgba(74,144,217,0.6) 35%,
    rgba(255,255,255,0.55) 50%,
    rgba(74,144,217,0.6) 65%,
    transparent
  );
  filter: blur(2.5px); pointer-events: none; z-index: 2;
  animation: divider-pulse 4.4s ease-in-out 3.6s infinite;
}
