/* =============================================
   ZOMPA PLUMBING & HEATING — Light Theme
   ============================================= */

/* === TOKENS === */
:root {
  --bg: #ffffff;
  --bg-section: #f0f6ff;
  --bg-card: #ffffff;
  --bg-elevated: #f4f8fe;

  --blue: #1b6ec2;
  --blue-mid: #2480d4;
  --blue-light: #e8f2fd;
  --blue-glow: rgba(27, 110, 194, 0.12);

  --red: #dc3726;
  --red-light: #fff0ee;
  --red-glow: rgba(220, 55, 38, 0.12);

  --navy: #0c1c36;
  --navy-mid: #1a3256;

  --text: #0c1c36;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  --border: #e0eaf5;
  --border-dark: #c7d8ed;

  --nav-height: 72px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; scroll-behavior: smooth; }
html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* === IAB BANNER === */
#iab-banner {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: #0d1a30;
  color: #fff;
  padding: 10px 16px;
  font-size: 0.875rem;
  line-height: 1.4;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  font-family: system-ui, sans-serif;
}
#iab-banner-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.125rem;
  cursor: pointer;
  padding: 0 4px;
  flex-shrink: 0;
  line-height: 1;
}

/* === UTILITY === */
.section { padding: 128px 0; }
.section-blue { background: var(--bg-section); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 48px; }
.section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-top: 18px;
  line-height: 1.7;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(27,110,194,0.25);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27,110,194,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-dark);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(220,55,38,0.25);
}
.btn-red:hover {
  background: #b72d1e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(220,55,38,0.3);
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
  margin-left: 24px;
}
.nav-phone:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue);
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(27,110,194,0.2);
}
.nav-cta:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translate(0, 7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translate(0, -7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 99;
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--navy); }
.mobile-menu-phone {
  padding: 16px 0 4px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue) !important;
  border-bottom: none !important;
}
.mobile-menu-cta {
  margin-top: 12px;
  background: var(--blue);
  color: #fff !important;
  border: none !important;
  border-radius: 8px;
  text-align: center;
  padding: 14px 0 !important;
  font-weight: 600 !important;
}

/* Mobile phone centered in nav */
.nav-mobile-phone {
  display: none;
  position: absolute;
  left: 65%;
  transform: translateX(-50%);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0f6ff 0%, #ffffff 60%);
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,110,194,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(220,55,38,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  border: 1.5px solid rgba(27,110,194,0.2);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-title .blue { color: var(--blue); }
.hero-title .red { color: var(--red); }
.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  box-shadow: var(--shadow-sm);
}
.hero-trust-pill svg { color: var(--blue); }

/* Hero image side */
.hero-visual {
  position: relative;
}
.hero-img-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-img-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.hero-img-badge-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.hero-img-badge strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
}
.hero-img-badge span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.hero-float-stat {
  position: absolute;
  top: 24px;
  right: -20px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border);
}
.hero-float-stat-num {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-float-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 3px;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--navy);
  padding: 0;
}
.trust-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #60a5fa;
  flex-shrink: 0;
}
.trust-text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.trust-text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(27,110,194,0.08);
  transform: translateY(-2px);
}
.service-card.heating-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(220,55,38,0.08);
}
.service-card-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.heating-card .service-card-icon {
  background: var(--red-light);
  color: var(--red);
}
.service-card h3 {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-body);
}
.service-list li svg { color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.heating-card .service-list li svg { color: var(--red); }
.service-emergency {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--red);
}

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text { padding-top: 8px; }
.about-text h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.about-text h2 em {
  font-style: normal;
  color: var(--blue);
}
.about-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card.red-stat .stat-num { color: var(--red); }
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.about-image-badge svg { color: var(--blue); }
.about-image-badge strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
}
.about-image-badge span { font-size: 0.8rem; color: var(--text-muted); }

/* === GALLERY === */
.gallery-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,28,54,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { font-size: 0.8125rem; font-weight: 600; color: #fff; }
.gallery-item-cat {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 5px;
}
.gallery-item-cat.cat-heating { background: var(--red); }
.gallery-item-cat.cat-commercial { background: var(--navy-mid); }

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 8px;
}
.lb-close {
  position: absolute;
  top: -44px; right: 0;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.25); }
.lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lb-nav:hover { background: rgba(255,255,255,0.25); }
.lb-prev { left: -60px; }
.lb-next { right: -60px; }
.lb-caption {
  text-align: center;
  margin-top: 14px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

/* === SERVICE AREA === */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.area-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.area-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.area-card-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.area-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}
.area-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.area-license {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  margin-top: 4px;
}

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: inherit;
}
.faq-q:hover { color: var(--blue); }
.faq-icon { color: var(--blue); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 22px 20px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-info-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-info-text span { font-size: 0.9375rem; color: var(--text-muted); }
.contact-info-text a { color: var(--text-muted); transition: color 0.2s; }
.contact-info-text a:hover { color: var(--blue); }

.contact-emergency {
  margin-top: 32px;
  background: #fff0ee;
  border: 1.5px solid rgba(220,55,38,0.2);
  border-radius: var(--radius);
  padding: 22px;
}
.contact-emergency-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 6px;
}
.contact-emergency p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.contact-emergency .btn { width: 100%; justify-content: center; }

/* FORM */
.contact-form {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-group label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-group input, .form-group textarea {
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9375rem;
  color: var(--navy);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,110,194,0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }

/* Custom Select */
.custom-select { position: relative; }
.custom-select-trigger {
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9375rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  user-select: none;
}
.custom-select-trigger span { color: var(--text-light); }
.custom-select-trigger span.selected-value { color: var(--navy); }
.custom-select-trigger:hover, .custom-select.open .custom-select-trigger {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,110,194,0.1);
}
.custom-select-trigger svg { color: var(--text-muted); transition: transform 0.2s; }
.custom-select.open .custom-select-trigger svg { transform: rotate(180deg); }
.custom-select-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  z-index: 50;
  box-shadow: var(--shadow-lg);
}
.custom-select.open .custom-select-dropdown { display: block; }
.custom-select-option {
  padding: 11px 16px;
  font-size: 0.9375rem;
  color: var(--text-body);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.custom-select-option:hover { background: var(--blue-light); color: var(--blue); }
.custom-select-option.selected { color: var(--blue); font-weight: 600; background: var(--blue-light); }

.form-submit { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; margin-top: 4px; }
.form-note { text-align: center; font-size: 0.8125rem; color: var(--text-light); margin-top: 10px; }
.form-success {
  display: none;
  background: #f0fdf4;
  border: 1.5px solid rgba(34,197,94,0.3);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  color: #16a34a;
  font-weight: 600;
  margin-top: 16px;
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo { height: 44px; width: auto; margin-bottom: 14px; background: #fff; border-radius: 8px; padding: 4px 10px; }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8125rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }
.footer-webkraft { font-size: 0.8125rem; color: rgba(255,255,255,0.3); }
.footer-webkraft span { color: #00e87a; font-weight: 600; }

/* === SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .hero-float-stat { right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  .nav-links { gap: 22px; }
  .nav-phone { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .hero-float-stat { top: 16px; right: 16px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); border-top: 1px solid rgba(255,255,255,0.08); }
  .trust-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-badge { bottom: 16px; right: 16px; }
  .about-image-main img { height: 380px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .container { padding: 0 28px; }
  .nav-inner { padding: 0 28px; }
  .section { padding: 96px 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-mobile-phone { display: block; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-logo img { height: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .lb-prev { left: -44px; }
  .lb-next { right: -44px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .trust-item {
    padding: 16px 12px;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 10px;
  }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-bottom: none; }
  .trust-item:first-child { padding-left: 12px; }
  .trust-icon { width: 34px; height: 34px; flex-shrink: 0; }
  .trust-text strong { font-size: 0.8rem; }
  .trust-text span { font-size: 0.7rem; }
  .hero-float-stat { display: none; }
  .hero-trust { gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
