/* =============================================
   VIR Electrical — Main Stylesheet
   Mobile-first, dark premium theme
   ============================================= */

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

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

:root {
  --bg:        #06091280;
  --bg-solid:  #060912;
  --bg-2:      #0C1220;
  --bg-card:   #0F1825;
  --bg-card-2: #141F30;
  --gold:      #F59E0B;
  --gold-dim:  #D97706;
  --gold-glow: rgba(245, 158, 11, 0.18);
  --blue:      #3B82F6;
  --green:     #10B981;
  --white:     #FFFFFF;
  --light:     #E2E8F0;
  --muted:     #7B8BA4;
  --border:    rgba(255,255,255,0.07);
  --border-g:  rgba(245,158,11,0.25);
  --radius:    14px;
  --radius-lg: 22px;
  --shadow:    0 8px 40px rgba(0,0,0,0.5);
  --shadow-g:  0 0 40px rgba(245,158,11,0.12);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'DM Sans', 'Inter', sans-serif;
  --font-body: 'DM Sans', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-solid);
  color: var(--light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--white);
}
h1 { font-size: clamp(2rem, 7vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }

.gold-text { color: var(--gold); }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.8rem;
  background: var(--gold-glow);
  border: 1px solid var(--border-g);
  border-radius: 100px;
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 20px;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(6,9,18,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
}
.nav-logo .logo-triangle {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}
.nav-logo .nav-logo-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  display: none;
}

.nav-links {
  display: none;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav-phone:hover { background: var(--gold-dim); transform: translateY(-1px); }
.nav-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: 12px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 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-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(6,9,18,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 24px 20px;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.active { color: var(--gold); }
.mobile-menu .mob-phone {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  border-radius: var(--radius);
  font-size: 1rem;
}

/* ─── Page Hero Banner (inner pages) ─── */
.page-hero {
  padding: 140px 0 60px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--muted); font-size: 1.05rem; max-width: 500px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--border); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover { background: var(--gold-dim); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,158,11,0.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── Hero Section ─── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(245,158,11,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(59,130,246,0.05) 0%, transparent 60%),
    linear-gradient(135deg, #060912 0%, #0C1830 50%, #060912 100%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gold-glow);
  border: 1px solid var(--border-g);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 { margin-bottom: 20px; }
.hero h1 em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}
.hero p.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}
.hero-stat .stat-divider {
  width: 1px;
  height: 100%;
  background: var(--border);
}

/* ─── Trust Bar ─── */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.trust-item svg { color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; }

/* ─── Section Header ─── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ─── Cards ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--border-g);
  transform: translateY(-4px);
  box-shadow: var(--shadow-g);
}

/* ─── Service Cards ─── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.service-card:hover {
  border-color: var(--border-g);
  background: var(--bg-card-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-g);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--gold-glow);
  border: 1px solid var(--border-g);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.service-icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.service-img {
  width: 80px; height: 80px;
  min-width: 80px; min-height: 80px;
  max-width: 80px; max-height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  flex-grow: 0;
}
.service-img img {
  width: 80px; height: 80px;
  max-width: 80px; max-height: 80px;
  object-fit: cover;
  display: block;
}
.service-card h3 { margin-bottom: 6px; font-size: 1rem; }
.service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
}
.service-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ─── Review Cards (Google style) ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all var(--transition);
}
.review-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-2px); }

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  color: #000;
}
.review-meta { flex: 1; min-width: 0; }
.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #4285F4;
  background: rgba(66,133,244,0.1);
  padding: 2px 6px;
  border-radius: 4px;
}
.verified-badge svg { width: 10px; height: 10px; }
.review-date { font-size: 0.75rem; color: var(--muted); }
.review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
}
.review-stars svg { width: 15px; height: 15px; fill: #FBBC04; color: #FBBC04; }
.review-text { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

.google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
}
.google-g {
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 0.7rem;
  font-family: serif;
  color: #4285F4;
  flex-shrink: 0;
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.rating-big {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.rating-stars-row {
  display: flex;
  gap: 4px;
  margin: 6px 0;
}
.rating-stars-row svg { width: 22px; height: 22px; fill: #FBBC04; color: #FBBC04; }
.rating-meta { font-size: 0.85rem; color: var(--muted); }
.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3c4043;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.google-reviews-link:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.4); }

/* ─── Stats Section ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}
.stat-card .number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .label { font-size: 0.85rem; color: var(--muted); }

/* ─── CTA Section ─── */
.cta-section {
  background: linear-gradient(135deg, var(--bg-2) 0%, #0C1830 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-inner h2 { margin-bottom: 14px; }
.cta-inner p { color: var(--muted); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Gallery Grid ─── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--bg-card);
  color: var(--muted);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--bg-card);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { font-size: 0.8rem; font-weight: 600; color: var(--white); }

/* ─── About Section ─── */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--muted); margin-bottom: 16px; line-height: 1.75; }
.about-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}
.about-point .check {
  width: 22px; height: 22px;
  background: var(--gold-glow);
  border: 1px solid var(--border-g);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.65rem;
  color: var(--gold);
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.cert-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
.cert-badge .cert-icon { font-size: 1.6rem; margin-bottom: 8px; }

/* ─── Van Showcase ─── */
.van-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.van-wrap {
  background: linear-gradient(135deg, #0C1830 0%, #0F1825 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.van-wrap::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.van-wrap h3 { margin-bottom: 8px; }
.van-wrap p { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }
.van-wrap img, .van-wrap svg { max-width: 100%; height: auto; }

/* ─── Contact Form ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}
.contact-form-wrap h3 { margin-bottom: 6px; }
.contact-form-wrap .sub { color: var(--muted); font-size: 0.875rem; margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit { width: 100%; padding: 16px; border-radius: 100px; font-size: 1rem; justify-content: center; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon {
  width: 64px; height: 64px;
  background: rgba(16,185,129,0.1);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); }

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-item:hover { border-color: var(--border-g); }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--gold-glow);
  border: 1px solid var(--border-g);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-item h4 { font-size: 0.8rem; color: var(--muted); margin-bottom: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-item p { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.contact-item a { color: var(--white); transition: color var(--transition); }
.contact-item a:hover { color: var(--gold); }

/* ─── Map ─── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 24px;
}
.map-wrap iframe { display: block; width: 100%; height: 320px; }

/* ─── WhatsApp Float ─── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: floatPop 0.5s ease 1s both;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 30px; height: 30px; color: white; }
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #25D366;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes floatPop {
  from { transform: scale(0) rotate(-45deg); opacity: 0; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* ─── Footer ─── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand p { color: var(--muted); font-size: 0.875rem; margin-top: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer-contact-item a { color: var(--muted); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-bottom p { font-size: 0.9rem; color: var(--muted); }
.footer-bottom a { color: var(--gold); }
.reci-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--gold-glow);
  border: 1px solid var(--border-g);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}

/* ─── Scroll Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* ─── Dividers ─── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ─── Responsive: Tablet ─── */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ─── Responsive: Desktop ─── */
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .nav-logo .nav-logo-sub { display: block; }

  .hero { padding: 0; min-height: 100svh; }
  .hero .container { display: flex; align-items: center; gap: 60px; }
  .hero-content { flex: 1; min-width: 0; max-width: none; }
  .hero-form-wrap { flex-shrink: 0; width: 420px; margin-top: 0; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-item { aspect-ratio: 4/3; }

  .about-split { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .map-wrap iframe { height: 380px; }
}

/* ─── Lightbox ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

/* ─── Services Page Full ─── */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.service-full-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.service-full-card:hover {
  border-color: var(--border-g);
  transform: translateY(-3px);
  box-shadow: var(--shadow-g);
}
.service-full-img {
  width: 100%; height: 200px;
  object-fit: cover;
  background: var(--bg-2);
}
.service-full-body { padding: 24px; }
.service-full-body .service-icon { margin-bottom: 16px; }
.service-full-body h3 { margin-bottom: 10px; }
.service-full-body p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.service-tag {
  padding: 4px 10px;
  background: var(--gold-glow);
  border: 1px solid var(--border-g);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}

@media (min-width: 640px) {
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .services-full-grid { grid-template-columns: repeat(3, 1fr); }
  .service-full-img { height: 220px; }
}

/* ─── Process Steps ─── */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: steps;
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  counter-increment: steps;
}
.process-step::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(245,158,11,0.12);
  line-height: 1;
}
.process-step h3 { margin-bottom: 8px; font-size: 1rem; }
.process-step p { font-size: 0.875rem; color: var(--muted); }

@media (min-width: 640px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}

/* ─── Hero Form (inline on hero section) ─── */
.hero-form-wrap {
  background: rgba(12, 18, 32, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-top: 40px;
}
.hero-form-wrap h3 { font-size: 1.2rem; margin-bottom: 4px; }
.hero-form-wrap > p { font-size: 0.85rem; color: var(--muted); margin-bottom: 22px; }
.hero-form-wrap .form-group { margin-bottom: 12px; }
.hero-form-wrap .form-group input,
.hero-form-wrap .form-group textarea,
.hero-form-wrap .form-group select {
  padding: 12px 14px;
  font-size: 0.9rem;
}
.hero-form-wrap .form-group textarea { min-height: 90px; }
.hero-form-wrap .form-submit { padding: 14px; font-size: 0.95rem; }

/* ─── Cert Badge SVG icons ─── */
.cert-badge .cert-icon svg {
  width: 28px; height: 28px;
  stroke: var(--gold);
}
.cert-badge .cert-icon { display: flex; align-items: center; justify-content: center; }

/* ─── Process step SVG icons ─── */
.process-step .step-icon {
  width: 48px; height: 48px;
  background: var(--gold-glow);
  border: 1px solid var(--border-g);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.process-step .step-icon svg { width: 24px; height: 24px; stroke: var(--gold); }

/* ─── About values SVG icons ─── */
.service-card .service-icon svg { width: 26px; height: 26px; stroke: var(--gold); }

/* ─── Thank You Page ─── */
.thank-you-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #060912 0%, #0C1830 50%, #060912 100%);
}
.thank-you-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Misc Utilities ─── */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.gap-4 { gap: 16px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
