/*
Theme Name:  Apex Window Tinting & PPF
Theme URI:   https://apextintppf.com
Description: Custom theme for Apex Window Tinting & PPF — premium dark design with blue accents.
Version:     1.0.0
Author:      Apex Window Tinting & PPF
Author URI:  https://apextintppf.com
Text Domain: apex-tint
*/

/* ── CSS Variables ── */
:root {
  --blue:          #3A9DD8;
  --blue-bright:   #5BB8F0;
  --blue-dark:     #2172A8;
  --blue-dim:      rgba(58,157,216,0.15);
  --blue-glow:     rgba(58,157,216,0.25);
  --silver:        #C8D4DC;
  --silver-dim:    rgba(200,212,220,0.5);
  --silver-faint:  rgba(200,212,220,0.2);
  --steel:         #8A9BAA;
  --black:         #060810;
  --dark:          #0C0F18;
  --surface:       #111520;
  --elevated:      #181C2A;
  --border:        rgba(58,157,216,0.18);
  --border-silver: rgba(200,212,220,0.12);
  --text:          #E8EEF4;
  --muted:         rgba(232,238,244,0.45);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom Cursor ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(58,157,216,0.55);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, border-color .2s;
}

/* ── Noise Texture ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025; pointer-events: none; z-index: 1000;
}

/* ── Typography Utilities ── */
.font-display { font-family: 'Rajdhani', sans-serif; font-weight: 700; }
.font-label   { font-family: 'Rajdhani', sans-serif; font-weight: 600; }

.text-blue-grad {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue) 50%, var(--blue-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-silver-grad {
  background: linear-gradient(135deg, #E8EFF5 0%, var(--silver) 50%, var(--steel) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(6,8,16,0.96) 0%, transparent 100%);
  transition: backdrop-filter .3s, background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(6,8,16,0.94);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-mark {
  height: 36px; width: auto;
}
.nav-logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--silver), var(--steel));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--blue);
  -webkit-text-fill-color: var(--blue);
}

.nav-links {
  display: flex; align-items: center; gap: 2.2rem;
}
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232,238,244,0.6);
  text-decoration: none;
  transition: color .2s;
}
/* WordPress nav menu reset */
.nav-links ul { list-style: none; display: flex; align-items: center; gap: 2.2rem; margin: 0; padding: 0; }
.nav-links ul li { margin: 0; }
.nav-links ul li a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232,238,244,0.6);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links ul li a:hover { color: var(--blue); }

/* Make Commercial link stand out in nav */
.nav-links ul li a[href*="commercial.html"],
.nav-links a[href*="commercial.html"] {
  color: var(--blue);
  font-weight: 700;
  border-bottom: 1.5px solid var(--blue);
  padding-bottom: 2px;
}

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-size: 0.68rem !important;
  letter-spacing: 0.18em !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--blue-bright) !important; transform: translateY(-1px); }

/* ── Footer ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 2.5rem 3rem;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 2rem;
}
.footer-brand {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.2rem; letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--silver), var(--steel));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-brand span {
  display: block; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--blue);
  -webkit-text-fill-color: var(--blue);
}
.footer-copy {
  font-size: 0.68rem; color: rgba(232,238,244,0.25);
  letter-spacing: 0.08em; text-align: center;
}
.footer-links { display: flex; justify-content: flex-end; gap: 1.5rem; }
.footer-links a {
  font-family: 'Rajdhani', sans-serif; font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(232,238,244,0.35); text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--blue); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ── Buttons ── */
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  padding: 0.95rem 2.2rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 32px rgba(58,157,216,0.3), 0 2px 8px rgba(58,157,216,0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(58,157,216,0.4), 0 4px 16px rgba(58,157,216,0.25);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  color: var(--silver-dim);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--blue); border-bottom-color: rgba(58,157,216,0.4); }

/* ── Section base ── */
section { padding: 7rem 3rem; position: relative; }
.section-eyebrow {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue);
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--blue);
}
.section-heading {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 0.95; letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; padding: 6rem 3rem 0;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(58,157,216,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,157,216,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.6) 70%, transparent 100%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(58,157,216,0.09) 0%, transparent 70%);
  top: 50%; right: -100px; transform: translateY(-50%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(58,157,216,0.06) 0%, transparent 70%);
  bottom: -50px; left: -80px;
  pointer-events: none;
}
.hero-accent {
  position: absolute; top: 0; right: 0;
  width: 45%; height: 6px;
  background: linear-gradient(to right, transparent, var(--blue), var(--blue-bright));
}
.hero-accent-bottom {
  position: absolute; bottom: 0; left: 0;
  width: 30%; height: 3px;
  background: linear-gradient(to right, var(--blue-dark), transparent);
}
.hero-eyebrow {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 0.8rem;
  opacity: 0; animation: fadeUp .7s ease .2s forwards;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 2px; background: var(--blue);
}
.hero-heading {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  line-height: 0.9; letter-spacing: -0.01em;
  opacity: 0; animation: fadeUp .9s ease .32s forwards;
}
.hero-heading .line-lead {
  font-size: clamp(6.5rem, 15vw, 14rem);
  line-height: 0.88; letter-spacing: -0.03em;
}
.hero-heading .line-silver {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--silver) 40%, var(--steel) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-heading .line-blue {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue) 60%, var(--blue-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  max-width: 460px; margin-top: 2rem;
  font-size: 1rem; line-height: 1.78; color: var(--muted);
  opacity: 0; animation: fadeUp .9s ease .48s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 2.8rem;
  opacity: 0; animation: fadeUp .9s ease .62s forwards;
}
.hero-visual {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 52%;
  opacity: 0; animation: fadeIn 1.2s ease .8s forwards;
  pointer-events: none;
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center left;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 30%, transparent 100%);
  filter: brightness(0.55) contrast(1.15);
}
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(58,157,216,0.08) 100%);
}
.scroll-indicator {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeIn 1s ease 1.4s forwards;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollPulse 2s ease infinite;
}
.scroll-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 3rem;
  display: grid; grid-template-columns: repeat(3,1fr);
}
.stat-item {
  padding: 0.5rem 2rem;
  border-right: 1px solid var(--border-silver);
  text-align: center;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 3rem; letter-spacing: 0.02em; line-height: 1;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.35rem;
  font-family: 'Rajdhani', sans-serif; font-weight: 500;
}

/* ── Services ── */
#services { background: var(--dark); }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; margin-top: 4rem;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--dark);
  padding: 2.8rem 2.2rem;
  position: relative; overflow: hidden;
  transition: background .3s;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { background: var(--surface); }
.service-card:hover::after { opacity: 1; }
.service-num {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 3.5rem; line-height: 1;
  color: rgba(58,157,216,0.08); margin-bottom: 1.2rem;
  transition: color .3s;
}
.service-card:hover .service-num { color: rgba(58,157,216,0.14); }
.service-icon { width: 38px; height: 38px; margin-bottom: 1.2rem; color: var(--blue); }
.service-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.35rem; letter-spacing: 0.04em;
  color: var(--text); margin-bottom: 0.7rem;
}
.service-desc { font-size: 0.86rem; line-height: 1.75; color: var(--muted); }
.service-tag {
  display: inline-block; margin-top: 1.3rem;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); border: 1px solid rgba(58,157,216,0.3);
  padding: 0.25rem 0.65rem;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

/* ── Process ── */
#process { background: var(--black); }
.process-wrap {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 4rem; position: relative;
}
.process-wrap::before {
  content: ''; position: absolute; top: 28px; left: 28px; right: 28px; height: 1px;
  background: linear-gradient(to right, var(--border), var(--blue-dim), var(--border));
}
.process-step { text-align: center; padding: 0 1.5rem; position: relative; }
.step-dot {
  width: 56px; height: 56px;
  border: 1px solid var(--border); background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.1rem; color: var(--blue);
  position: relative; z-index: 1;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: background .3s, border-color .3s;
}
.process-step:hover .step-dot { background: rgba(58,157,216,0.1); border-color: var(--blue); }
.step-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 0.6rem; color: var(--text);
}
.step-desc { font-size: 0.8rem; line-height: 1.65; color: var(--muted); }

/* ── Why Us ── */
#why { background: var(--surface); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 4rem; }
.why-visual { position: relative; height: 500px; }
.why-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45) contrast(1.1); }
.why-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(58,157,216,0.1) 0%, transparent 60%);
}
.corner { position: absolute; width: 60px; height: 60px; }
.corner-tl { top: -1px; left: -1px; border-top: 2px solid var(--blue); border-left: 2px solid var(--blue); }
.corner-br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--blue); border-right: 2px solid var(--blue); }
.why-visual::before {
  content: ''; position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 3px; background: linear-gradient(to bottom, transparent, var(--blue), transparent);
}
.feature-list { list-style: none; margin-top: 2rem; }
.feature-item {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding: 1.3rem 0; border-bottom: 1px solid var(--border-silver);
}
.feature-item:last-child { border-bottom: none; }
.feature-dot {
  width: 32px; height: 32px; flex-shrink: 0;
  border: 1px solid rgba(58,157,216,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.feature-text h4 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.04em; margin-bottom: 0.25rem;
}
.feature-text p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* ── Gallery ── */
#gallery { background: var(--black); }
.gallery-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px; gap: 1px; margin-top: 4rem;
  background: var(--border);
}
.gal-item { position: relative; overflow: hidden; }
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
  filter: brightness(0.5);
}
.gal-item:hover img { transform: scale(1.06); filter: brightness(0.65); }
.gal-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.4rem 1.2rem;
  background: linear-gradient(to top, rgba(6,8,16,0.9) 0%, transparent 100%);
}
.gal-caption h3 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.1rem; letter-spacing: 0.06em; color: var(--text);
}
.gal-caption p { font-size: 0.72rem; color: var(--muted); margin-top: 0.2rem; }
.gal-item::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.gal-item:hover::after { transform: scaleX(1); }

/* ── Testimonials ── */
#testimonials { background: var(--dark); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 4rem; }
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border-silver);
  padding: 2rem; position: relative; overflow: hidden;
  transition: border-color .3s, transform .2s;
}
.testi-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity .3s;
}
.testi-card:hover { border-color: rgba(58,157,216,0.35); transform: translateY(-3px); }
.testi-card:hover::before { opacity: 1; }
.stars { color: var(--blue); font-size: 0.75rem; letter-spacing: 0.1em; margin-bottom: 0.9rem; }
.testi-text {
  font-size: 0.86rem; line-height: 1.78; font-style: italic;
  color: rgba(232,238,244,0.7); margin-bottom: 1.4rem;
}
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 34px; height: 34px; background: var(--elevated);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.78rem; color: var(--blue);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.author-name { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 0.85rem; }
.author-vehicle { font-size: 0.72rem; color: var(--muted); }

/* ── CTA / Contact ── */
#contact {
  background: var(--black);
  text-align: center; padding: 8rem 3rem;
  position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(58,157,216,0.07) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(58,157,216,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,157,216,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 70%);
  pointer-events: none;
}
#contact .section-eyebrow { justify-content: center; }
#contact .section-eyebrow::before { display: none; }
#contact .section-eyebrow::after { content: ''; display: block; width: 24px; height: 2px; background: var(--blue); }
.cta-heading {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92; letter-spacing: -0.01em;
  margin: 1rem 0 2rem;
}
.cta-sub { font-size: 1rem; color: var(--muted); max-width: 440px; margin: 0 auto 3rem; line-height: 1.72; }
.contact-form {
  max-width: 540px; margin: 0 auto;
  display: grid; gap: 1rem;
  position: relative; z-index: 1;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field {
  background: var(--surface);
  border: 1px solid var(--border-silver);
  padding: 0.85rem 1.1rem;
  color: var(--text);
  font-family: 'Exo 2', sans-serif; font-size: 0.86rem;
  outline: none; width: 100%;
  transition: border-color .2s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.form-field::placeholder { color: rgba(232,238,244,0.25); }
.form-field:focus { border-color: rgba(58,157,216,0.5); }
select.form-field option { background: var(--surface); }
.contact-info {
  margin-top: 3.5rem; display: flex; gap: 0; justify-content: center;
  position: relative; z-index: 1;
}
.contact-info-item { padding: 0 2.5rem; border-right: 1px solid var(--border-silver); text-align: center; }
.contact-info-item:last-child { border-right: none; }
.ci-label {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.4rem;
}
.ci-value { font-size: 0.88rem; color: var(--text); }
.call-text-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); text-decoration: none;
  border: 1px solid rgba(58,157,216,0.35);
  padding: 0.45rem 0.9rem; border-radius: 3px;
  background: rgba(58,157,216,0.06);
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.call-text-btn:hover { background: rgba(58,157,216,0.14); border-color: var(--blue); color: var(--blue-bright); transform: translateY(-1px); }
.call-text-btn:active { transform: translateY(0); }

/* ── Contact Form 7 overrides ── */
.wpcf7-form { display: grid; gap: 1rem; }
.wpcf7-form p { margin: 0; display: contents; }
.wpcf7-form .wpcf7-form-control-wrap { display: block; width: 100%; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  background: var(--surface);
  border: 1px solid var(--border-silver);
  padding: 0.85rem 1.1rem;
  color: var(--text);
  font-family: 'Exo 2', sans-serif; font-size: 0.86rem;
  outline: none; width: 100%;
  transition: border-color .2s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  box-sizing: border-box;
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: rgba(232,238,244,0.25); }
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { border-color: rgba(58,157,216,0.5); }
.wpcf7-form select option { background: var(--surface); }
.wpcf7-form textarea { resize: vertical; }
.wpcf7-form input[type="submit"] {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  padding: 0.95rem 2.2rem;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase;
  border: none; width: 100%; cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 32px rgba(58,157,216,0.3), 0 2px 8px rgba(58,157,216,0.2);
}
.wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(58,157,216,0.4), 0 4px 16px rgba(58,157,216,0.25);
}
.wpcf7-response-output {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 0.88rem; letter-spacing: 0.08em;
  border: none !important; padding: 0.5rem 0 !important; margin: 0 !important;
  color: var(--blue);
}
.wpcf7-not-valid-tip { font-size: 0.72rem; color: #e05252; margin-top: 0.2rem; }

/* ── Mobile ── */
@media (max-width: 768px) {
  nav { padding: 1.1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 0 1.5rem; padding-top: 5.5rem; }
  .hero-visual { display: none; }
  .hero-heading { font-size: 4rem; }
  section { padding: 5rem 1.5rem; }
  .stats-bar { grid-template-columns: 1fr; padding: 1.8rem 1.5rem; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-silver); }
  .stat-item:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  /* Featured service cards — collapse multi-column inline grids to single column */
  .service-card-featured {
    grid-template-columns: 1fr !important;
    padding: 2rem 1.5rem !important;
    gap: 1.5rem !important;
  }
  .service-card-featured-cta { text-align: left !important; }
  .service-card-featured-cta .btn-primary { white-space: normal !important; width: 100%; justify-content: center; }
  .service-card-commercial {
    grid-template-columns: 1fr !important;
    padding: 2rem 1.5rem !important;
    gap: 1rem !important;
  }
  .service-card-commercial-num { display: none !important; } /* hide giant "06" on mobile */
  .service-card-commercial-cta {
    text-align: left !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }
  .process-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .process-wrap::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { height: 280px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 220px 180px 180px; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info { flex-direction: column; gap: 1.5rem; }
  .contact-info-item { border-right: none; border-bottom: 1px solid var(--border-silver); padding: 0 0 1.5rem; }
  .contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   MULTI-PAGE EXPANSION STYLES
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Nav Dropdown (depth-2 WP menu) ── */
.nav-links ul li.menu-item-has-children { position: relative; }
.nav-links ul li.menu-item-has-children > ul {
  display: block; /* override so transition works */
  position: absolute;
  top: 100%; left: 50%;
  padding-top: 0.8rem; /* bridges hover gap — do not remove */
  transform: translateX(-50%) translateY(-6px);
  background: transparent;
  min-width: 230px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 200;
}
.nav-links ul li.menu-item-has-children > ul::before {
  content: '';
  display: block;
  background: rgba(6,8,16,0.97);
  border: 1px solid var(--border);
  border-top: 2px solid var(--blue);
  position: absolute;
  inset: 0.8rem 0 0 0;
  z-index: -1;
}
.nav-links ul li.menu-item-has-children:hover > ul {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-links ul li.menu-item-has-children > ul li { margin: 0; }
.nav-links ul li.menu-item-has-children > ul li a {
  display: block; padding: 0.6rem 1.4rem;
  font-size: 0.68rem; letter-spacing: 0.12em; white-space: nowrap;
  border-left: 2px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
}
.nav-links ul li.menu-item-has-children > ul li a:hover {
  color: var(--blue); border-left-color: var(--blue);
  background: rgba(58,157,216,0.05);
}

/* ── Mobile Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: 1px solid var(--border); border-radius: 2px;
  cursor: pointer; padding: 0;
  transition: border-color .2s;
}
.nav-hamburger:hover { border-color: var(--blue); }
.nav-hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--text); transition: transform .25s, opacity .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Nav Overlay ── */
.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: rgba(6,8,16,0.97);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2.2rem;
  opacity: 0; transition: opacity .25s;
}
.mobile-nav-overlay.open { display: flex; opacity: 1; }
.mobile-nav-overlay a {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.6rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(232,238,244,0.7); text-decoration: none;
  transition: color .2s;
}
.mobile-nav-overlay a:hover { color: var(--blue); }
.mobile-nav-overlay .mobile-sub {
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
  margin-top: -0.8rem;
}
.mobile-nav-overlay .mobile-sub a { font-size: 1rem; color: rgba(232,238,244,0.45); }
.mobile-nav-overlay .mobile-sub a:hover { color: var(--blue); }
.mobile-nav-commercial {
  color: var(--blue) !important;
  border: 1px solid var(--blue) !important;
  padding: 0.5rem 1.6rem !important;
  font-size: 1rem !important;
  letter-spacing: 0.12em !important;
  border-radius: 2px;
}
.mobile-nav-commercial:hover { background: rgba(58,157,216,0.15) !important; }
.mobile-nav-cta {
  background: var(--blue) !important; color: #fff !important;
  padding: 0.8rem 2.4rem !important; font-size: 0.9rem !important;
  letter-spacing: 0.18em !important;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 1.1rem 3rem;
  background: var(--dark); border-bottom: 1px solid var(--border-silver);
  margin-top: 74px; /* nav height */
}
.breadcrumb a, .breadcrumb span {
  font-family: 'Rajdhani', sans-serif; font-weight: 500;
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-sep { color: rgba(232,238,244,0.2); }
.breadcrumb span:last-child { color: var(--blue); }

/* ── Service Page Hero ── */
.service-hero {
  min-height: 68vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; padding: 5rem 3rem 4rem;
  overflow: hidden; background: var(--black);
}
.service-hero-eyebrow {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
  opacity: 0; animation: fadeUp .6s ease .1s forwards;
}
.service-hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--blue); }
.service-hero-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.93; letter-spacing: -0.01em;
  opacity: 0; animation: fadeUp .8s ease .2s forwards;
}
.service-hero-tagline {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.04em; color: var(--muted);
  margin-top: 0.8rem; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp .8s ease .3s forwards;
}
.service-hero-sub {
  max-width: 520px; font-size: 0.95rem; line-height: 1.78;
  color: rgba(232,238,244,0.55);
  opacity: 0; animation: fadeUp .8s ease .4s forwards;
}
.service-hero-actions {
  display: flex; align-items: center; gap: 1.4rem; margin-top: 2.5rem;
  opacity: 0; animation: fadeUp .8s ease .52s forwards;
}
.service-hero-img {
  position: absolute; right: 0; top: 0; bottom: 0; width: 46%;
  pointer-events: none;
  opacity: 0; animation: fadeIn 1.1s ease .6s forwards;
}
.service-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.4) contrast(1.1);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 20%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 20%, transparent 100%);
}
.service-hero-stat {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 2rem;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); border: 1px solid rgba(58,157,216,0.25);
  padding: 0.4rem 1rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  background: rgba(58,157,216,0.06);
  opacity: 0; animation: fadeUp .8s ease .62s forwards;
}

/* ── Benefits Grid (service pages) ── */
.benefits-section { background: var(--dark); padding: 7rem 3rem; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 4rem;
  background: var(--border); border: 1px solid var(--border);
}
.benefit-card {
  background: var(--dark); padding: 2.5rem 2rem;
  position: relative; overflow: hidden; transition: background .3s;
}
.benefit-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity .3s;
}
.benefit-card:hover { background: var(--surface); }
.benefit-card:hover::after { opacity: 1; }
.benefit-icon {
  width: 36px; height: 36px; color: var(--blue); margin-bottom: 1.1rem;
}
.benefit-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.05rem; letter-spacing: 0.04em; margin-bottom: 0.55rem;
}
.benefit-body { font-size: 0.83rem; line-height: 1.72; color: var(--muted); }

/* ── FAQ Accordion ── */
.faq-section { background: var(--surface); padding: 7rem 3rem; }
.faq-list { max-width: 780px; margin: 3.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border-silver); }
.faq-item:first-child { border-top: 1px solid var(--border-silver); }
details.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 0.03em;
  color: var(--text); user-select: none;
  transition: color .2s;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary:hover { color: var(--blue); }
details.faq-item summary::after {
  content: '+'; flex-shrink: 0;
  font-family: 'Rajdhani', sans-serif; font-weight: 400;
  font-size: 1.5rem; color: var(--blue); line-height: 1;
  transition: transform .2s;
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item[open] summary { color: var(--blue); }
.faq-answer {
  font-size: 0.88rem; line-height: 1.78; color: var(--muted);
  padding: 0 0 1.4rem;
}

/* ── Related Services ── */
.related-section { background: var(--black); padding: 6rem 3rem; }
.related-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; margin-top: 3rem;
  background: var(--border); border: 1px solid var(--border);
}
.related-card {
  background: var(--dark); padding: 2.2rem 2rem;
  text-decoration: none; display: block;
  position: relative; overflow: hidden; transition: background .3s;
}
.related-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity .3s;
}
.related-card:hover { background: var(--surface); }
.related-card:hover::after { opacity: 1; }
.related-label {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.6rem;
}
.related-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1.2rem; letter-spacing: 0.03em; color: var(--text);
  margin-bottom: 0.5rem;
}
.related-arrow {
  font-size: 0.72rem; color: var(--muted); display: flex; align-items: center; gap: 0.4rem;
  font-family: 'Rajdhani', sans-serif; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 1rem; transition: color .2s;
}
.related-card:hover .related-arrow { color: var(--blue); }
.related-arrow svg { width: 12px; height: 12px; transition: transform .2s; }
.related-card:hover .related-arrow svg { transform: translateX(3px); }

/* ── Gallery Page ── */
.gallery-page { background: var(--black); padding: 7rem 3rem; }
.gallery-filter-bar {
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  margin-top: 3rem; margin-bottom: 0.5rem;
}
.gallery-filter-btn {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); background: none;
  border: 1px solid var(--border-silver);
  padding: 0.45rem 1.1rem; cursor: pointer;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  transition: color .2s, border-color .2s, background .2s;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  color: var(--blue); border-color: rgba(58,157,216,0.5);
  background: rgba(58,157,216,0.07);
}
.gallery-page-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  margin-top: 1.5rem;
}
.gallery-page-item {
  position: relative; overflow: hidden; height: 260px; cursor: pointer;
}
.gallery-page-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .3s ease;
  filter: brightness(0.55);
}
.gallery-page-item:hover img { transform: scale(1.05); filter: brightness(0.7); }
.gallery-page-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(6,8,16,0.92) 0%, transparent 100%);
}
.gallery-page-caption h3 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: 0.04em;
}
.gallery-page-caption p { font-size: 0.7rem; color: var(--muted); margin-top: 0.15rem; }
.gallery-page-caption .gpc-tag {
  display: inline-block; margin-top: 0.5rem;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--blue); border: 1px solid rgba(58,157,216,0.3); padding: 0.15rem 0.5rem;
}
.gallery-page-item::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.gallery-page-item:hover::after { transform: scaleX(1); }

/* Lightbox */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 9990;
  background: rgba(6,8,16,0.95); align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox-overlay.active { display: flex; }
.lightbox-inner { position: relative; max-width: 900px; width: 100%; }
.lightbox-inner img { width: 100%; height: auto; max-height: 80vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: -2rem; right: 0;
  background: none; border: none; color: var(--muted);
  font-size: 1.5rem; cursor: pointer; line-height: 1;
  transition: color .2s;
}
.lightbox-close:hover { color: var(--blue); }

/* ── About / FAQ Page ── */
.about-hero { background: var(--black); padding: 10rem 3rem 6rem; position: relative; overflow: hidden; }
.about-content { background: var(--dark); padding: 7rem 3rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-body { font-size: 0.9rem; line-height: 1.82; color: rgba(232,238,244,0.65); }
.about-body p { margin-bottom: 1.2rem; }
.about-body p:last-child { margin-bottom: 0; }
.about-certs {
  margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.8rem;
}
.about-cert-item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.2rem;
  background: var(--surface); border: 1px solid var(--border-silver);
  border-left: 3px solid var(--blue);
}
.about-cert-item .cert-icon { color: var(--blue); flex-shrink: 0; width: 18px; height: 18px; }
.about-cert-item .cert-text {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.06em;
}

/* ── Contact Page ── */
.contact-page-hero { background: var(--black); padding: 10rem 3rem 5rem; position: relative; overflow: hidden; }
.contact-page-content { background: var(--dark); padding: 7rem 3rem; }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info-block { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 3rem; }
.contact-info-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-silver);
}
.contact-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-icon { color: var(--blue); flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }
.contact-info-row .ci-label {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.25rem;
}
.contact-info-row .ci-value { font-size: 0.88rem; color: var(--text); line-height: 1.55; }

/* ── Precut Kits Page ── */
.kits-hero { background: var(--black); padding: 10rem 3rem 6rem; position: relative; overflow: hidden; }
.kits-content { background: var(--dark); padding: 7rem 3rem; }
.kits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.kit-types { margin-top: 3rem; display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.kit-type-item {
  background: var(--dark); padding: 1.5rem 1.8rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: background .2s;
}
.kit-type-item:hover { background: var(--surface); }
.kit-type-icon { color: var(--blue); flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; }
.kit-type-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.04em; margin-bottom: 0.3rem;
}
.kit-type-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* ── Page-level CTA (reused across pages) ── */
.page-cta-section {
  background: var(--black); padding: 8rem 3rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-cta-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(58,157,216,0.07) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.page-cta-section .section-eyebrow { justify-content: center; }
.page-cta-section .section-eyebrow::before { display: none; }
.page-cta-section .section-eyebrow::after { content: ''; display: block; width: 24px; height: 2px; background: var(--blue); }
.page-cta-heading {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.94; letter-spacing: -0.01em;
  margin: 1rem 0 1.5rem;
}
.page-cta-sub {
  font-size: 0.95rem; color: var(--muted);
  max-width: 420px; margin: 0 auto 2.5rem; line-height: 1.75;
}

/* ── Mobile additions for new pages ── */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .breadcrumb { padding: 1rem 1.5rem; }
  .service-hero { padding: 4rem 1.5rem 3rem; }
  .service-hero-img { display: none; }
  .service-hero-title { font-size: 3rem; }
  .benefits-section, .faq-section, .related-section,
  .gallery-page, .about-content, .contact-page-content,
  .kits-content { padding: 5rem 1.5rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .gallery-page-item { height: 220px; }
  .about-grid, .contact-page-grid, .kits-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-hero, .contact-page-hero, .kits-hero { padding: 8rem 1.5rem 4rem; }
}
