/* ================================================================
   D'ZUL RENOVATIONS — styles.css
   Terraform Studios Design System
================================================================ */

/* ============================================================
   1. RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--obsidian);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

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

/* --- Animated ambient background (drifting ember glows + blueprint grid) --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(600px circle at 15% 20%, rgba(232,80,30,0.14), transparent 60%),
    radial-gradient(700px circle at 85% 75%, rgba(255,107,53,0.10), transparent 65%),
    radial-gradient(500px circle at 50% 50%, rgba(232,80,30,0.06), transparent 70%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 60px 60px,
    var(--obsidian);
  animation: ambient-drift 28s ease-in-out infinite alternate;
}
@keyframes ambient-drift {
  0%   { background-position: 0% 0%, 100% 100%, 50% 50%, 0 0, 0 0, 0 0; }
  50%  { background-position: 20% 30%, 70% 60%, 60% 40%, 30px 30px, 30px 30px, 0 0; }
  100% { background-position: 10% 80%, 90% 20%, 40% 60%, 60px 60px, 60px 60px, 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}

/* ============================================================
   2. CUSTOM PROPERTIES
============================================================ */
:root {
  --obsidian:   #0A0A0A;
  --charcoal:   #1A1A1A;
  --gunmetal:   #2D2D2D;
  --zinc:       #3A3A3A;
  --concrete:   #7A7A7A;
  --limestone:  #B8B8B8;
  --ivory:      #F0EDE8;
  --ember:      #E8501E;
  --ember-glow: #FF6B35;
  --ember-dim:  rgba(232,80,30,0.1);

  --font-display: 'Outfit', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --nav-h: 80px;
  --pad:   100px;
  --max-w: 1240px;
  --r:     12px;
  --r-sm:  8px;
  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --t:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   3. TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--ivory);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--limestone);
  line-height: 1.75;
  max-width: 560px;
}

.ember-line {
  width: 44px;
  height: 3px;
  background: var(--ember);
  border-radius: 2px;
  margin: 12px 0 26px;
}

/* ============================================================
   4. LAYOUT UTILITIES
============================================================ */
.wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 36px; }
.section { padding: var(--pad) 0; }

/* ============================================================
   5. SCROLL PROGRESS BAR
============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--ember-glow));
  width: 0%;
  z-index: 10000;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ============================================================
   6. BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--ember); color: #fff; border: 1.5px solid var(--ember); }
.btn-primary:hover {
  background: var(--ember-glow);
  border-color: var(--ember-glow);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(232,80,30,0.45);
}
.btn-outline { background: transparent; color: var(--ivory); border: 1.5px solid var(--zinc); }
.btn-outline:hover { border-color: var(--ember); color: var(--ember); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ember); border: 1.5px solid var(--ember); }
.btn-ghost:hover {
  background: var(--ember);
  color: #fff;
  box-shadow: 0 10px 28px rgba(232,80,30,0.35);
  transform: translateY(-2px);
}

/* ============================================================
   7. NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--t), box-shadow var(--t), height var(--t);
}
.nav.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(232,80,30,0.22);
  height: 60px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex; align-items: flex-end; gap: 10px; flex-shrink: 0;
}
.nav-logo img { height: 48px; width: auto; object-fit: contain; display: block; }
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 1;
  height: 48px;
  display: flex;
  align-items: center;
  color: var(--ivory);
  transform: translateY(7px);
}
.nav-wordmark .apos { color: var(--ember); }
.logo-mark { width: 44px; height: auto; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 900; color: var(--ivory); letter-spacing: 0.07em; }
.logo-name .apos { color: var(--ember); }
.logo-tag { font-family: var(--font-display); font-size: 0.42rem; font-weight: 700; color: var(--concrete); letter-spacing: 0.35em; text-transform: uppercase; margin-top: 3px; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--limestone);
  letter-spacing: 0.02em;
  transition: color var(--t);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--ember);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--ivory); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-right .btn { padding: 9px 20px; font-size: 0.83rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1002;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--ivory); border-radius: 2px;
  transition: var(--t); transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  padding: 20px 28px 32px;
  border-bottom: 1px solid var(--gunmetal);
  z-index: 999;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--t), transform var(--t);
  pointer-events: none;
}
.mob-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mob-menu a {
  display: block;
  padding: 15px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--limestone);
  border-bottom: 1px solid var(--gunmetal);
  transition: color var(--t), padding-left var(--t);
}
.mob-menu a:last-of-type { border-bottom: none; }
.mob-menu a:hover { color: var(--ember); padding-left: 6px; }
.mob-menu .mob-cta { margin-top: 20px; display: block; text-align: center; border-bottom: none !important; padding-left: 0 !important; }

/* ============================================================
   8. HERO — HOME
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 15% 45%, rgba(232,80,30,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 85% 65%, rgba(45,45,45,0.5) 0%, transparent 65%),
    linear-gradient(165deg, var(--charcoal) 0%, var(--obsidian) 55%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, black 0%, transparent 80%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 80px) 0 140px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 2px;
  background: var(--ember);
  border-radius: 2px;
}
.hero-eyebrow span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--limestone);
}
.hero h1 {
  font-size: clamp(2.8rem, 7.5vw, 5.8rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--ivory);
  margin-bottom: 28px;
  max-width: 820px;
}
.hero h1 .accent { color: var(--ember); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--limestone);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 44px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-actions .btn { padding: 17px 34px; font-size: 1rem; }
.hero-trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8rem;
  color: var(--concrete);
  font-family: var(--font-display);
  font-weight: 500;
}
.hero-trust-item svg { width: 14px; height: 14px; color: var(--ember); }

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(18,18,18,0.9);
  border-top: 1px solid var(--gunmetal);
  backdrop-filter: blur(10px);
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: 26px 28px;
  border-right: 1px solid var(--gunmetal);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.stat:last-child { border-right: none; }
.stat-val { font-family: var(--font-display); font-size: 1.45rem; font-weight: 900; color: var(--ivory); line-height: 1; }
.stat-val em { color: var(--ember); font-style: normal; }
.stat-lbl { font-size: 0.78rem; color: var(--concrete); font-weight: 500; letter-spacing: 0.04em; }

/* ============================================================
   9. PAGE HERO (inner pages)
============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 72px;
  background:
    radial-gradient(ellipse 55% 55% at 20% 50%, rgba(232,80,30,0.07) 0%, transparent 60%),
    linear-gradient(165deg, var(--charcoal) 0%, var(--obsidian) 60%);
  border-bottom: 1px solid var(--gunmetal);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  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: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 80% at 30% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 30% 50%, black 0%, transparent 75%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 900; color: var(--ivory); margin-bottom: 18px; max-width: 700px; }
.page-hero h1 .accent { color: var(--ember); }
.page-hero-sub { font-size: 1.08rem; color: var(--limestone); max-width: 500px; line-height: 1.75; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 28px;
  font-size: 0.8rem; color: var(--concrete);
}
.breadcrumb a { color: var(--concrete); transition: color var(--t); }
.breadcrumb a:hover { color: var(--ember); }
.breadcrumb-sep { color: var(--zinc); font-size: 0.65rem; }
.breadcrumb-current { color: var(--limestone); }

/* ============================================================
   10. SERVICES
============================================================ */
.services { background: rgba(26,26,26,0.85); }
.services-hd { margin-bottom: 44px; }

.filter-tabs { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 28px; }
.filter-tab {
  padding: 8px 18px;
  border-radius: 40px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--zinc);
  color: var(--limestone);
  cursor: pointer;
  transition: var(--t);
  background: transparent;
}
.filter-tab:hover,
.filter-tab.active {
  border-color: var(--ember);
  color: var(--ember);
  background: var(--ember-dim);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gunmetal);
  border: 1px solid var(--gunmetal);
  border-radius: var(--r);
  overflow: hidden;
}
.why-dzul-sec .services-grid { grid-template-columns: repeat(2, 1fr); }
.svc-card {
  background: var(--charcoal);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--t);
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.svc-card:hover { background: var(--gunmetal); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover .svc-icon { color: var(--ember); }
.svc-card.hidden { display: none; }
.svc-icon { width: 42px; height: 42px; color: var(--limestone); margin-bottom: 20px; transition: color var(--t); }
.svc-tag { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--zinc); margin-bottom: 10px; font-family: var(--font-display); }
.svc-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--ivory); margin-bottom: 10px; }
.svc-desc { font-size: 0.86rem; color: var(--concrete); line-height: 1.65; }

/* ============================================================
   11. PROCESS
============================================================ */
.process { background: rgba(10,10,10,0.82); }
.process-hd { text-align: center; margin-bottom: 72px; }
.process-hd .section-sub { margin: 0 auto; }
.process-hd .ember-line { margin: 12px auto 26px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 35px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gunmetal) 10%, var(--ember) 50%, var(--gunmetal) 90%, transparent 100%);
}
.proc-step { padding: 0 20px; text-align: center; }
.proc-circle {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--gunmetal);
  border: 2px solid var(--zinc);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  position: relative; z-index: 1;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.proc-step:hover .proc-circle {
  border-color: var(--ember);
  background: rgba(232,80,30,0.1);
  box-shadow: 0 0 28px rgba(232,80,30,0.2);
}
.proc-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--ember); }
.proc-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--ivory); margin-bottom: 10px; }
.proc-desc { font-size: 0.875rem; color: var(--concrete); line-height: 1.65; }

/* ============================================================
   12. TESTIMONIALS CAROUSEL
============================================================ */
.testimonials {
  position: relative;
  background: rgba(26,26,26,0.88);
  isolation: isolate;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("testimonial-bg.png") center/cover no-repeat;
  opacity: 0.18;
  z-index: -1;
  filter: grayscale(0.25) contrast(1.05);
}
.testimonials::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 50%, rgba(10,10,10,0.75) 100%);
  z-index: -1;
  pointer-events: none;
}
.test-hd { text-align: center; margin-bottom: 56px; }
.test-hd .section-sub { margin: 0 auto; }
.test-hd .ember-line { margin: 12px auto 26px; }

.test-carousel { position: relative; overflow: hidden; }
.test-track {
  display: flex;
  gap: 22px;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.test-card {
  background: var(--gunmetal);
  border: 1px solid var(--zinc);
  border-radius: var(--r);
  padding: 36px;
  position: relative;
  flex: 0 0 calc(33.333% - 15px);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.test-card:hover {
  border-color: var(--ember);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.test-card::before {
  content: '\201C';
  position: absolute;
  top: 18px; right: 26px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--ember);
  opacity: 0.18;
  line-height: 1;
}
.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.stars svg { width: 15px; height: 15px; fill: var(--ember); color: var(--ember); }
.test-quote { font-size: 0.93rem; color: var(--limestone); line-height: 1.78; font-style: italic; margin-bottom: 26px; }
.test-author { display: flex; align-items: center; gap: 13px; border-top: 1px solid var(--zinc); padding-top: 20px; }
.test-ava {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 0.9rem; color: #fff;
  flex-shrink: 0;
}
.ava-a { background: #5a3520; }
.ava-b { background: #1e3a52; }
.ava-c { background: #2a3a20; }
.ava-d { background: #3a2252; }
.ava-e { background: #4a2020; }
.ava-f { background: #20524a; }
.test-name { font-family: var(--font-display); font-size: 0.93rem; font-weight: 700; color: var(--ivory); }
.test-meta { font-size: 0.78rem; color: var(--concrete); margin-top: 2px; }

.carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 36px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--zinc);
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  border: none;
}
.carousel-dot.active { background: var(--ember); transform: scale(1.3); }
.carousel-arrows { display: flex; gap: 8px; margin-left: 20px; }
.carousel-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gunmetal);
  border: 1px solid var(--zinc);
  color: var(--limestone);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--t);
}
.carousel-arrow:hover { border-color: var(--ember); color: var(--ember); }
.carousel-arrow svg { width: 14px; height: 14px; }

/* ============================================================
   13. BUILDZOOM TRUST SECTION
============================================================ */
.trust { background: var(--obsidian); position: relative; overflow: hidden; }
.trust::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232,80,30,0.06) 0%, transparent 70%);
}
.trust-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.trust-content .section-sub { margin-bottom: 0; }

.trust-license {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--charcoal);
  border: 1px solid var(--gunmetal);
  border-radius: 6px;
  padding: 10px 18px;
  margin: 20px 0 28px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ivory);
}
.trust-license-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ember); flex-shrink: 0; }

.trust-cards { display: flex; flex-direction: column; gap: 16px; }
.trust-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--charcoal);
  border: 1px solid var(--gunmetal);
  border-radius: var(--r-sm);
  padding: 22px 26px;
  transition: border-color var(--t), transform var(--t);
}
.trust-card:hover { border-color: var(--ember); transform: translateX(4px); }
.trust-card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--ember-dim);
  border: 1px solid rgba(232,80,30,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-card-icon svg { width: 22px; height: 22px; color: var(--ember); }
.trust-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-bottom: 4px;
  font-family: var(--font-display);
}
.trust-card-val {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ivory);
}

.trust-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 28px; }
.trust-verified-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem;
  color: var(--concrete);
  font-family: var(--font-display);
}
.trust-verified-badge svg { width: 16px; height: 16px; color: var(--ember); }

/* ============================================================
   14. ABOUT SECTION
============================================================ */
.about { background: rgba(10,10,10,0.82); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.about-visual { position: relative; }
.brand-card {
  width: 100%; aspect-ratio: 1;
  background: var(--charcoal);
  border-radius: var(--r);
  border: 1px solid var(--gunmetal);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(232,80,30,0.11) 0%, transparent 68%);
}
.brand-card-logo {
  width: 62%;
  height: auto;
  position: relative; z-index: 1;
  filter: drop-shadow(0 0 32px rgba(232,80,30,0.2));
}
.brand-card--photo::before {
  background: rgba(10,10,10,0.72);
}
.brand-card--photo > * {
  position: relative; z-index: 2;
}

/* Why D'ZUL differentiator section */
.why-dzul-sec { background: rgba(26,26,26,0.85); }
.about-badge {
  position: absolute;
  bottom: -22px; right: -22px;
  width: 116px; height: 116px;
  border-radius: 50%;
  background: var(--ember);
  border: 4px solid var(--obsidian);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); color: #fff; z-index: 2;
}
.badge-n { font-size: 1.9rem; font-weight: 900; line-height: 1; }
.badge-t { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; margin-top: 4px; line-height: 1.3; }

.about-features { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
.about-feat { display: flex; gap: 16px; align-items: flex-start; }
.feat-ico {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--ember-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-ico svg { width: 18px; height: 18px; color: var(--ember); }
.feat-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ivory); margin-bottom: 4px; }
.feat-desc { font-size: 0.875rem; color: var(--concrete); line-height: 1.65; }

/* ============================================================
   15. FAQ ACCORDION
============================================================ */
.faq { background: var(--charcoal); }
.faq-hd { margin-bottom: 48px; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--gunmetal);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--gunmetal); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  background: var(--charcoal);
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.faq-q:hover { background: var(--gunmetal); color: var(--ember); }
.faq-q.open { background: var(--gunmetal); color: var(--ember); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--ember); transition: transform var(--t); }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); background: var(--gunmetal); }
.faq-a.open { max-height: 300px; }
.faq-a-inner { padding: 20px 28px 26px; font-size: 0.93rem; color: var(--limestone); line-height: 1.78; }

/* ============================================================
   16. CONTACT FORM
============================================================ */
.contact-section { background: rgba(10,10,10,0.82); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }

.contact-info-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--charcoal);
  border: 1px solid var(--gunmetal);
  border-radius: var(--r-sm);
  padding: 20px 22px;
  transition: border-color var(--t), transform var(--t);
}
.contact-info-card:hover { border-color: var(--ember); transform: translateX(4px); }
.contact-info-card-icon {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: var(--ember-dim);
  border: 1px solid rgba(232,80,30,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-card-icon svg { width: 18px; height: 18px; color: var(--ember); }
.contact-info-card-label {
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--concrete); margin-bottom: 5px;
}
.contact-info-card-val { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--ivory); }
.contact-info-card-val a { color: var(--ivory); transition: color var(--t); }
.contact-info-card-val a:hover { color: var(--ember); }

.contact-form-wrap {
  background: var(--charcoal);
  border: 1px solid var(--gunmetal);
  border-radius: var(--r);
  padding: 44px;
}
.form-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--ivory); margin-bottom: 6px; }
.form-sub { font-size: 0.88rem; color: var(--concrete); margin-bottom: 32px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { position: relative; display: flex; flex-direction: column; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--concrete); margin-bottom: 7px;
  transition: color var(--t);
}
.form-group:focus-within label { color: var(--ember); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--gunmetal);
  border: 1.5px solid var(--zinc);
  border-radius: 6px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 16px;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--zinc); }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7A7A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group select option { background: var(--gunmetal); color: var(--ivory); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--ember); box-shadow: 0 0 0 3px rgba(232,80,30,0.1); }
.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid { border-color: #4caf50; }
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid { border-color: #f44336; }

.form-error { font-size: 0.78rem; color: #f44336; margin-top: 5px; display: none; }
.form-error.show { display: block; }
.form-submit-row { margin-top: 24px; display: flex; align-items: center; gap: 14px; }
.btn-submit { padding: 15px 36px; font-size: 0.98rem; }

@keyframes spin { to { transform: rotate(360deg); } }
.btn-loader {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .btn-loader { display: block; }

.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success.show { display: block; }
.form-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(76,175,80,0.1);
  border: 2px solid #4caf50;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success-icon svg { width: 28px; height: 28px; color: #4caf50; }
.form-success h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--ivory); margin-bottom: 10px; }
.form-success p { color: var(--limestone); font-size: 0.93rem; }

/* ============================================================
   17. TRUST STRIP (compact, homepage)
============================================================ */
.trust-strip {
  background: var(--charcoal);
  border-top: 1px solid var(--gunmetal);
  border-bottom: 1px solid var(--gunmetal);
  padding: 18px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-strip-inner svg { width: 18px; height: 18px; color: var(--ember); flex-shrink: 0; }
.trust-strip-inner span { font-size: 0.88rem; color: var(--limestone); font-family: var(--font-display); font-weight: 500; }
.trust-strip-inner strong { color: var(--ivory); }
.trust-strip-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ember);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  transition: opacity var(--t);
}
.trust-strip-link:hover { opacity: 0.8; }

/* ============================================================
   18. CTA SECTION
============================================================ */
.cta-sec {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.70) 45%, rgba(10,10,10,0.88) 100%),
    url("cta-bg.png") center/cover no-repeat;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 80% at 50% 50%, rgba(232,80,30,0.09) 0%, transparent 68%);
}
.cta-sec::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(232,80,30,0.07);
  pointer-events: none;
}
.cta-sec .wrap { position: relative; z-index: 1; }
.cta-sec h2 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 900; color: var(--ivory); margin-bottom: 16px; }
.cta-sec h2 .accent { color: var(--ember); }
.cta-sec p { font-size: 1.08rem; color: var(--limestone); max-width: 480px; margin: 0 auto 48px; line-height: 1.75; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btns .btn { padding: 17px 36px; font-size: 1rem; }
.cta-info {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px;
  font-size: 0.85rem; color: var(--concrete);
  font-family: var(--font-display); font-weight: 500;
}
.cta-info svg { width: 14px; height: 14px; color: var(--ember); }

/* ============================================================
   19. FOOTER
============================================================ */
.footer { background: var(--charcoal); border-top: 1px solid var(--gunmetal); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--gunmetal); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo .logo-mark { width: 36px; }
.footer-logo img { height: 58px; width: auto; padding: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; object-fit: contain; }
.footer-desc { font-size: 0.875rem; color: var(--concrete); line-height: 1.7; max-width: 270px; margin-bottom: 14px; }
.footer-lic { font-size: 0.8rem; color: var(--zinc); }
.footer-lic strong { color: var(--concrete); }
.footer-h { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--limestone); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.875rem; color: var(--concrete); transition: color var(--t), padding-left var(--t); }
.footer-links a:hover { color: var(--ember); padding-left: 4px; }
.f-contact { display: flex; flex-direction: column; gap: 14px; }
.f-ci { display: flex; gap: 11px; align-items: flex-start; }
.f-ci svg { width: 15px; height: 15px; color: var(--ember); flex-shrink: 0; margin-top: 2px; }
.f-ci span,
.f-ci a { font-size: 0.875rem; color: var(--concrete); line-height: 1.55; transition: color var(--t); }
.f-ci a:hover { color: var(--ember); }
.footer-bot { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; flex-wrap: wrap; gap: 10px; }
.footer-bot p { font-size: 0.78rem; color: var(--zinc); }
.footer-bot a { color: var(--concrete); transition: color var(--t); }
.footer-bot a:hover { color: var(--ember); }
.built { font-size: 0.78rem; color: var(--zinc); }
.built a { color: var(--ember); font-weight: 600; }

/* ============================================================
   20. SCROLL REVEAL
============================================================ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.on { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; } .d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; } .d6 { transition-delay: 0.48s; }
.d7 { transition-delay: 0.56s; } .d8 { transition-delay: 0.64s; }
.d9 { transition-delay: 0.72s; }

/* ============================================================
   21. BACK TO TOP
============================================================ */
.back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ember);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  opacity: 0; transform: translateY(16px);
  transition: opacity var(--t), transform var(--t), box-shadow var(--t), background var(--t);
  z-index: 900;
  box-shadow: 0 4px 16px rgba(232,80,30,0.4);
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--ember-glow); box-shadow: 0 8px 24px rgba(232,80,30,0.55); }
.back-top svg { width: 18px; height: 18px; }

/* ============================================================
   22. MISC
============================================================ */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--obsidian); }
::-webkit-scrollbar-thumb { background: var(--gunmetal); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--zinc); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ============================================================
   23. MEDIA QUERIES
============================================================ */
@media (max-width: 1080px) {
  :root { --pad: 80px; }
  .wrap { padding: 0 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-visual { max-width: 420px; }
  .trust-inner { grid-template-columns: 1fr; gap: 52px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}
@media (max-width: 768px) {
  :root { --pad: 64px; }
  .wrap { padding: 0 20px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .mob-menu { display: block; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .hero {
    min-height: 0 !important;
    height: auto !important;
    display: block !important;
    justify-content: initial;
  }
  .hero-content { padding: calc(var(--nav-h) + 40px) 0 24px; }
  .hero-stats {
    display: block !important;
    position: static !important;
    background: rgba(18,18,18,0.85);
    border-top: 1px solid var(--gunmetal);
    backdrop-filter: none;
    margin-top: 20px;
  }
  .hero-stats .wrap { padding: 0; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat { padding: 18px 16px; gap: 6px; min-width: 0; border-bottom: 1px solid var(--gunmetal); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .stat-val { font-size: 1.05rem; line-height: 1.15; word-break: break-word; }
  .stat-lbl { font-size: 0.7rem; line-height: 1.35; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 44px; }
  .process-steps::before { display: none; }
  .test-card { flex: 0 0 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bot { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 28px 22px; }
}
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .filter-tabs { gap: 6px; }
  .filter-tab { padding: 7px 13px; font-size: 0.78rem; }
  .stats-row { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--gunmetal); padding: 14px 18px; flex-direction: row; align-items: baseline; gap: 12px; flex-wrap: wrap; }
  .stat:last-child { border-bottom: none; }
  .stat-val { font-size: 1.1rem; flex: 0 0 auto; }
  .stat-lbl { flex: 1 1 auto; font-size: 0.72rem; }
  .hero-trust { gap: 14px 18px; }
  .hero-trust-item { font-size: 0.72rem; }
}

/* ============================================================
   UPGRADE v2 — Visual & Animation Enhancements
============================================================ */

/* --- Canvas particles overlay --- */
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

/* --- Hero floating construction emojis --- */
.hero-floats { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.hf { position: absolute; font-size: 1.9rem; opacity: 0.06; animation: hfloat linear infinite; }
.hf-1 { left: 7%;  top: 20%; animation-duration: 14s; }
.hf-2 { left: 80%; top: 38%; animation-duration: 19s; animation-delay: -6s; }
.hf-3 { left: 55%; top: 70%; animation-duration: 16s; animation-delay: -9s; }
.hf-4 { left: 18%; top: 75%; animation-duration: 22s; animation-delay: -4s; }
.hf-5 { left: 88%; top: 12%; animation-duration: 13s; animation-delay: -11s; }
.hf-6 { left: 40%; top: 35%; animation-duration: 17s; animation-delay: -7s; }
@keyframes hfloat {
  0%   { transform: translateY(0)    rotate(-4deg) scale(1);    }
  50%  { transform: translateY(-26px) rotate(7deg) scale(1.05); }
  100% { transform: translateY(0)    rotate(-4deg) scale(1);    }
}

/* --- Typing cursor --- */
.typed-cursor {
  display: inline-block;
  color: var(--ember);
  font-weight: 300;
  margin-left: 1px;
  animation: blink-cur 1s step-end infinite;
}
@keyframes blink-cur { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* --- Hero split layout --- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
}
.hero-left  { position: relative; z-index: 2; }
.hero-right { position: relative; z-index: 2; }

/* --- Hero photo collage --- */
.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}
.hero-photo {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.07);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.55s var(--ease);
}
.hero-photo:hover img { transform: scale(1.06); }
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.hero-photo-main {
  grid-column: 1 / 3;
  height: 226px;
}
.hero-photo-sm-1 {
  height: 155px;
  transform: translateX(-5px);
}
.hero-photo-sm-2 {
  height: 155px;
  transform: translateX(5px);
  border-color: rgba(232,80,30,0.25);
}
.hero-photo-badge {
  position: absolute; bottom: 10px; left: 12px; z-index: 2;
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
  color: rgba(255,255,255,0.9); letter-spacing: 0.07em; text-transform: uppercase;
  background: rgba(0,0,0,0.52); backdrop-filter: blur(6px);
  padding: 4px 9px; border-radius: 4px;
}
.hero-photo-float-badge {
  position: absolute;
  top: -14px; right: -14px;
  background: var(--ember);
  border: 3px solid var(--obsidian);
  border-radius: 50%;
  width: 78px; height: 78px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); color: #fff; z-index: 5;
  text-align: center;
  box-shadow: 0 6px 24px rgba(232,80,30,0.45);
}
.fpb-n { font-size: 1.2rem; font-weight: 900; line-height: 1; }
.fpb-t { font-size: 0.48rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; margin-top: 3px; line-height: 1.3; }

/* --- CTA pulse ring --- */
.btn-pulse { position: relative; }
.btn-pulse::before {
  content: '';
  position: absolute; inset: -5px;
  border-radius: 10px;
  border: 2px solid rgba(232,80,30,0.55);
  animation: pulse-ring 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: 0.75; }
  100% { transform: scale(1.18); opacity: 0;    }
}

/* --- Stat glow enhancement --- */
.stat-val { text-shadow: 0 0 28px rgba(232,80,30,0.4); }
.stat-val em { text-shadow: 0 0 34px rgba(232,80,30,0.65); }

/* --- Trust marquee (replaces static trust strip) --- */
.trust-marquee {
  background: var(--charcoal);
  border-top: 1px solid var(--gunmetal);
  border-bottom: 1px solid var(--gunmetal);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
}
.trust-marquee::before,
.trust-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.trust-marquee::before { left: 0;  background: linear-gradient(90deg,  var(--charcoal), transparent); }
.trust-marquee::after  { right: 0; background: linear-gradient(270deg, var(--charcoal), transparent); }
.trust-marquee-track {
  display: flex; align-items: center;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.trust-marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tmi {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 0 28px;
  font-family: var(--font-display); font-size: 0.84rem; font-weight: 600;
  color: var(--limestone); white-space: nowrap;
  border-right: 1px solid var(--gunmetal);
}
.tmi svg { width: 13px; height: 13px; color: var(--ember); flex-shrink: 0; }
.tmi strong { color: var(--ivory); }
.tmi .bz-sm {
  display: inline-flex; align-items: center; justify-content: center;
  background: #00B4A0; border-radius: 3px;
  padding: 1px 6px; font-size: 0.6rem; font-weight: 900;
  letter-spacing: 0.06em; color: #fff;
}

/* --- BuildZoom badge variants --- */
.bz-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #00B4A0; border-radius: 6px;
  padding: 4px 11px;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  color: #fff; letter-spacing: 0.04em; vertical-align: middle;
  white-space: nowrap;
  transition: background 0.2s;
}
.bz-badge:hover { background: #00a090; }
.bz-badge svg { width: 13px; height: 13px; flex-shrink: 0; }

.bz-badge-lg {
  display: inline-flex; align-items: center; gap: 8px;
  background: #00B4A0; border-radius: 8px;
  padding: 8px 16px;
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 700;
  color: #fff; letter-spacing: 0.02em;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.bz-badge-lg:hover { background: #00a090; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,180,160,0.35); }
.bz-badge-lg svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Footer BZ widget */
.footer-bz { margin-top: 18px; }
.footer-bz-inner {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gunmetal); border: 1px solid var(--zinc); border-radius: 10px;
  padding: 11px 14px; transition: border-color var(--t), transform var(--t);
  text-decoration: none;
}
.footer-bz-inner:hover { border-color: #00B4A0; transform: translateY(-2px); }
.footer-bz-text { display: flex; flex-direction: column; }
.footer-bz-lbl { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--concrete); }
.footer-bz-nm  { font-family: var(--font-display); font-size: 0.86rem; font-weight: 600; color: var(--ivory); transition: color var(--t); }
.footer-bz-inner:hover .footer-bz-nm { color: #00B4A0; }

/* Updated trust strip with BZ badge */
.trust-strip-bz {
  background: var(--charcoal);
  border-top: 1px solid var(--gunmetal);
  border-bottom: 1px solid var(--gunmetal);
  padding: 20px 0;
}
.trust-strip-bz-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 22px; flex-wrap: wrap;
}
.trust-strip-divider {
  width: 1px; height: 22px;
  background: var(--gunmetal); flex-shrink: 0;
}
.trust-strip-bz-inner span {
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 500; color: var(--limestone);
}
.trust-strip-bz-inner strong { color: var(--ivory); }
.trust-strip-bz-link {
  font-size: 0.82rem; font-weight: 600; color: var(--ember);
  font-family: var(--font-display); letter-spacing: 0.02em;
  transition: opacity var(--t);
}
.trust-strip-bz-link:hover { opacity: 0.75; }

/* --- "Our Work" gallery --- */
.gallery-sec { background: var(--obsidian); }
.gallery-hd  { margin-bottom: 44px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  grid-auto-rows: 220px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--r); cursor: pointer;
  background: var(--gunmetal);
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(4) { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,0.88) 100%);
  opacity: 0; transition: opacity 0.38s var(--ease);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
  font-family: var(--font-display); font-size: 0.97rem; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.gallery-loc {
  font-size: 0.78rem; color: rgba(255,255,255,0.6); font-family: var(--font-display);
}
.gallery-cta { text-align: center; margin-top: 44px; }

/* --- Shimmer on service cards (::before) --- */
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.045), transparent);
  transform: skewX(-15deg); pointer-events: none;
}
.svc-card:hover::before { animation: shimmer-sweep 0.75s ease forwards; }
@keyframes shimmer-sweep { from { left: -80%; } to { left: 160%; } }

/* --- Testimonial 3D tilt --- */
.test-card { transform-style: preserve-3d; will-change: transform; }

/* --- BuildZoom card color accent on about page --- */
.trust-card-bz { border-color: rgba(0,180,160,0.2) !important; }
.trust-card-bz:hover { border-color: #00B4A0 !important; transform: translateX(4px); }
.trust-card-bz .trust-card-icon { background: rgba(0,180,160,0.1) !important; border-color: rgba(0,180,160,0.25) !important; }
.trust-card-bz .trust-card-icon svg { color: #00B4A0 !important; }

/* --- Media query additions for new elements --- */
@media (max-width: 1080px) {
  .hero-split { grid-template-columns: 1fr !important; }
  .hero-right { display: none !important; }
  .hero {
    min-height: 0 !important;
    height: auto !important;
    display: block !important;
    justify-content: initial !important;
  }
  .hero-content { padding: calc(var(--nav-h) + 60px) 0 28px !important; }
  .hero-stats {
    display: block !important;
    position: static !important;
    background: rgba(18,18,18,0.85) !important;
    border-top: 1px solid var(--gunmetal) !important;
    backdrop-filter: none !important;
    margin-top: 16px !important;
  }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-row: span 1; }
  .trust-strip-bz-inner { gap: 14px; }
  .trust-strip-divider { display: none; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .trust-marquee-track { animation-duration: 22s; }
}
