/* ============================================================
   DPC WALL DOCTOR - STYLESHEET
   Damp Proofing Specialist | Nottingham, UK
   Brand palette: teal / deeper-blue / dark navy only.
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --primary:        #4bb2c2;
  --primary-dark:   #3b8eb2;
  --primary-deep:   #1e5a73;
  --primary-light:  #7dd3df;
  --primary-tint:   rgba(75, 178, 194, 0.12);
  --primary-tint-2: rgba(75, 178, 194, 0.22);
  --primary-shadow: rgba(75, 178, 194, 0.32);

  --dark:           #0e2230;
  --dark-2:         #16344a;
  --text:           #2a3744;
  --muted:          #5d6d7c;
  --light:          #f5fafb;
  --light-2:        #eaf5f7;
  --bg:             #ffffff;
  --border:         #e3eaef;
  --border-strong:  #cfdce2;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 6px rgba(14, 34, 48, 0.06);
  --shadow:    0 10px 28px rgba(14, 34, 48, 0.08);
  --shadow-lg: 0 24px 60px rgba(14, 34, 48, 0.14);
  --shadow-glow: 0 14px 40px rgba(75, 178, 194, 0.32);

  --container: 1240px;
  --gutter: clamp(24px, 4vw, 60px);
  --nav-h: 105px;

  --font-head: 'Outfit', system-ui, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --t-fast: 180ms cubic-bezier(.4, 0, .2, 1);
  --t:      280ms cubic-bezier(.4, 0, .2, 1);
  --t-slow: 480ms cubic-bezier(.22, 1, .36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
ul { list-style: none; padding: 0; margin: 0; }
input, select, textarea { font: inherit; color: inherit; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--dark);
  margin: 0 0 0.6em;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); line-height: 1.1; font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.15; font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
p  { margin: 0 0 1em; color: var(--muted); }

.accent {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.accent-light { color: var(--primary-light); }

/* ============================================================
   LUXE EYEBROW PILL
   ============================================================ */
.eyebrow-luxe {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-deep);
  padding: 9px 18px 9px 16px;
  margin-bottom: 1.4em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 0 0 1px rgba(75, 178, 194, 0.35),
    0 6px 18px rgba(14, 34, 48, 0.06);
  overflow: hidden;
  isolation: isolate;
}
.eyebrow-luxe::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, var(--primary-light), transparent 35%, transparent 65%, var(--primary-dark));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.eyebrow-luxe::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: skewX(-20deg);
  animation: pill-shimmer 5s ease-in-out infinite;
  z-index: 0;
}
@keyframes pill-shimmer {
  0%, 100% { left: -60%; opacity: 0; }
  50%      { left: 130%; opacity: 1; }
}
.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-tint), 0 0 12px var(--primary);
  position: relative;
  z-index: 2;
  animation: dot-glow 2.4s ease-in-out infinite;
}
@keyframes dot-glow {
  0%, 100% { box-shadow: 0 0 0 3px var(--primary-tint), 0 0 4px var(--primary); }
  50%      { box-shadow: 0 0 0 4px var(--primary-tint-2), 0 0 14px var(--primary); }
}
.eyebrow-luxe > *:not(.eyebrow-dot) { position: relative; z-index: 2; }

.eyebrow-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 6px 18px rgba(0, 0, 0, 0.18);
}
.eyebrow-light .eyebrow-dot {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2), 0 0 12px #fff;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 100px 0; }
.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head p { font-size: 1.05rem; }

/* ============================================================
   BUTTONS — premium with animated icons + shine sweep
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform var(--t), box-shadow var(--t), color var(--t), background var(--t), border-color var(--t);
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}
.btn-lg { padding: 17px 32px; font-size: 1rem; }

.btn-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform var(--t);
}
.btn-icon svg { width: 100%; height: 100%; }
.btn-label { position: relative; z-index: 2; }

/* Phone icon - subtle ringing animation */
.btn-icon-phone {
  transform-origin: 50% 60%;
  animation: phone-ring 3.4s ease-in-out infinite;
}
@keyframes phone-ring {
  0%, 60%, 100% { transform: rotate(0deg); }
  65%  { transform: rotate(-12deg); }
  70%  { transform: rotate(12deg); }
  75%  { transform: rotate(-10deg); }
  80%  { transform: rotate(8deg); }
  85%  { transform: rotate(-4deg); }
  90%  { transform: rotate(0deg); }
}
.btn:hover .btn-icon-phone { animation-duration: 0.9s; }

/* Arrow icon - slides on hover */
.btn-icon-arrow { transition: transform var(--t); }
.btn:hover .btn-icon-arrow { transform: translateX(5px); }

/* Shine sweep */
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  z-index: 1;
  pointer-events: none;
}
.btn:hover .btn-shine { left: 130%; }

/* Primary button */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 28px var(--primary-shadow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px var(--primary-shadow);
}

/* Outline / ghost button */
.btn-outline {
  background: transparent;
  color: var(--primary-deep);
  border: 2px solid var(--primary-tint-2);
  box-shadow: inset 0 0 0 1px transparent;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(75, 178, 194, 0.06);
  transform: translateY(-3px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, #0a1a26 0%, #0e2230 100%);
  border-bottom: none;
  transition: box-shadow var(--t);
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.5;
}
.navbar.scrolled {
  border-bottom-color: rgba(75, 178, 194, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 24px;
}
.nav-inner > .nav-left        { flex: 1 1 0; min-width: 0; }
.nav-inner > .logo            { flex: 0 0 auto; }
.nav-inner > .nav-cta-cluster { flex: 1 1 0; min-width: 0; display: flex; justify-content: flex-end; align-items: center; }
.nav-inner > .nav-toggle      { flex: 0 0 auto; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transition: transform var(--t);
}
.logo:hover { transform: translateY(-1px); }
.logo-img {
  height: 140px;
  width: auto;
  max-width: 100%;
  display: block;
  transition: transform var(--t);
}
.logo:hover .logo-img { transform: scale(1.03); }
.logo-img-footer { height: 140px; }

@media (max-width: 1100px) {
  .logo-img { height: 60px; }
}
@media (max-width: 768px) {
  .logo-img { height: 110px; }
  .logo-img-footer { height: 110px; }
}
@media (max-width: 480px) {
  .logo-img { height: 100px; }
  .logo-img-footer { height: 96px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  position: relative;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 6px 0;
  transition: color var(--t);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--t);
}
.nav-links a:hover { color: var(--primary-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { flex-shrink: 0; padding: 11px 20px; font-size: 0.9rem; justify-self: end; }
.nav-cta .btn-icon { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(75, 178, 194, 0.1);
  border: 1px solid rgba(75, 178, 194, 0.2);
  transition: background var(--t), border-color var(--t);
  flex-direction: column;
  gap: 5px;
}
.nav-toggle:hover,
.nav-toggle.open {
  background: rgba(75, 178, 194, 0.18);
  border-color: rgba(75, 178, 194, 0.35);
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--primary-light);
  margin: 0 auto;
  border-radius: 2px;
  transition: all var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px var(--gutter) 28px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  border-top: 1px solid rgba(75, 178, 194, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  justify-content: center;
  overflow-y: auto;
}
.mobile-menu a:not(.btn) {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu a:not(.btn):last-of-type { border-bottom: none; }
.mobile-menu a:not(.btn):hover { background: rgba(75, 178, 194, 0.1); color: var(--primary-light); }
.mobile-menu .btn { justify-content: center; margin-top: 8px; }
.mobile-menu-logo {
  display: flex;
  justify-content: center;
  padding: 0;
  border: none !important;
  margin-bottom: 8px;
}
.mobile-menu-logo-img {
  height: 140px;
  width: auto;
  max-width: 80%;
}
.mobile-menu-close {
  align-self: flex-end;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(75, 178, 194, 0.1);
  border: 1px solid rgba(75, 178, 194, 0.2);
  color: var(--primary-light);
  margin-bottom: 0;
  transition: background var(--t);
}
.mobile-menu-close svg { width: 20px; height: 20px; }
.mobile-menu-close:hover { background: rgba(75, 178, 194, 0.2); }
.mobile-menu .mobile-cta-cluster { padding-top: 8px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.nav-toggle.open { display: none !important; }
.mobile-menu.open { display: flex; animation: slide-down 0.25s ease; }
.mobile-menu.open ~ .trust-badge-bar { display: none; }
body:has(.mobile-menu.open) .floating-call,
body:has(.mobile-menu.open) .floating-whatsapp,
body:has(.mobile-menu.open) .trust-badge-bar { display: none; }
@keyframes slide-down {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO — fits viewport, image composition, no amber
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 36px 0 60px;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.hero-blob-1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, var(--primary-tint-2), transparent 70%);
  animation: blob-float 14s ease-in-out infinite;
}
.hero-blob-2 {
  width: 460px;
  height: 460px;
  bottom: -160px;
  left: -100px;
  background: radial-gradient(circle, rgba(125, 211, 223, 0.25), transparent 70%);
  animation: blob-float 18s ease-in-out infinite reverse;
}
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20px, -30px) scale(1.06); }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.18;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 50px;
  width: 100%;
}

.hero-copy h1 { margin-bottom: 16px; }
.hero-sub {
  font-size: 1rem;
  margin-bottom: 26px;
  max-width: 540px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.trust-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}
.trust-badges .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-tint);
}

/* ---------- Hero visual: image composition ---------- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 5 / 4.6;
}
.hero-image {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary-tint), var(--primary-tint-2));
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s ease;
}
.hero-image:hover img { transform: scale(1.04); }
.hero-image-fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
}
/* Fallback gradient roof patterns if images missing */
.hero-image-fallback-1 {
  background:
    repeating-linear-gradient(110deg, rgba(14, 34, 48, 0.18) 0 6px, transparent 6px 14px),
    radial-gradient(ellipse at 30% 40%, var(--primary), var(--primary-deep));
}
.hero-image-fallback-2 {
  background:
    repeating-linear-gradient(95deg, rgba(255, 255, 255, 0.12) 0 4px, transparent 4px 10px),
    linear-gradient(135deg, var(--dark-2), var(--dark));
}

.hero-image-main {
  top: 0;
  right: 0;
  width: 78%;
  height: 78%;
  z-index: 1;
}
.hero-image-detail {
  bottom: 0;
  left: 0;
  width: 50%;
  height: 46%;
  z-index: 2;
  border: 5px solid #fff;
  animation: float-detail 7s ease-in-out infinite;
}
@keyframes float-detail {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* shine across main image */
.hero-image-shine {
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  animation: image-shine 6s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}
@keyframes image-shine {
  0%, 100% { left: -50%; opacity: 0; }
  45%      { left: 110%; opacity: 1; }
  60%      { left: 110%; opacity: 0; }
}

/* Floating glass cards */
.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius);
  padding: 16px 22px 16px 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 4;
  animation: card-bob 5s ease-in-out infinite;
}
.hero-card-top {
  top: 18px;
  left: -20px;
  max-width: 240px;
}
.hero-card-bottom {
  bottom: -18px;
  right: -10px;
  animation-delay: 1s;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(14, 34, 48, 0.95), rgba(20, 44, 62, 0.95));
  border: 1px solid rgba(75, 178, 194, 0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(75, 178, 194, 0.08);
}
@keyframes card-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero-floating-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow:
    0 10px 22px var(--primary-shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    inset 0 -2px 0 rgba(14, 34, 48, 0.08);
  position: relative;
  overflow: hidden;
  padding: 0;
  line-height: 0;
  align-self: center;
}
.hero-floating-icon::before {
  content: '';
  position: absolute;
  inset: 0 0 50% 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent);
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}
.hero-floating-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  stroke: #fff !important;
  fill: none !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(14, 34, 48, 0.25));
}
.hero-floating-card strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
  line-height: 1.2;
}
.hero-floating-card span {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 2px;
}

.hero-floating-card.hero-card-bottom strong {
  color: #ffffff;
  font-size: 0.9rem;
}
.hero-floating-card.hero-card-bottom span {
  color: rgba(255,255,255,0.55);
}
.hero-floating-card.hero-card-bottom .rating-stars {
  color: #f5c518;
}
.rating { display: flex; flex-direction: column; }
.rating-stars {
  color: #f5c518;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 4px rgba(245, 197, 24, 0.3));
}

.hero-decor-grid {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  background-image:
    radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.35;
  border-radius: 50%;
  z-index: 0;
}

/* ============================================================
   ABOUT — Block 1: Hero Split (copy + video)
   ============================================================ */
.about-main-heading {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
}
.about-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 20px 0 0;
}
.about-hero-copy p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px;
}
.about-hero-copy p:first-child {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
}
.about-hero-copy p:last-of-type {
  margin-bottom: 0;
}
.about-hero-video {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--dark);
  box-shadow:
    0 30px 80px rgba(14, 34, 48, 0.22),
    0 0 0 1px rgba(75, 178, 194, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.about-hero-video::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(75, 178, 194, 0.15);
  z-index: 2;
  pointer-events: none;
}
.about-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .about-hero-split { grid-template-columns: 1fr; gap: 36px; }
  .about-hero-video { max-width: 600px; }
}

/* ============================================================
   ABOUT — Block 2: Doctor Difference Banner
   ============================================================ */
.doctor-diff-banner {
  margin-top: 70px;
  background: linear-gradient(135deg, #fff 0%, var(--light) 50%, var(--light-2) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.doctor-diff-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-dark));
}
.doctor-diff-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 15% 20%, rgba(75, 178, 194, 0.04), transparent),
    radial-gradient(ellipse 500px 350px at 85% 80%, rgba(75, 178, 194, 0.03), transparent);
  pointer-events: none;
}
.doctor-diff-inner {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.doctor-diff-inner h2 {
  color: var(--dark);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}
.doctor-diff-inner p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 28px;
}
.doctor-diff-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT — Block 3: Why Choose Cards (Premium)
   ============================================================ */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-choose-card {
  position: relative;
  background: linear-gradient(168deg, #fff 0%, var(--light) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px 30px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  overflow: hidden;
}
.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.22, 1, .36, 1);
}
.why-choose-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 200px 160px at 20% 0%, rgba(75, 178, 194, 0.06), transparent);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 24px 56px rgba(14, 34, 48, 0.12),
    0 0 0 1px rgba(75, 178, 194, 0.15);
  border-color: rgba(75, 178, 194, 0.3);
}
.why-choose-card:hover::before { transform: scaleX(1); }
.why-choose-card:hover::after { opacity: 1; }

.why-choose-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--primary-light);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(14, 34, 48, 0.18);
  position: relative;
  z-index: 1;
}
.why-choose-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.why-choose-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* --- 6th card: CTA card --- */
.why-choose-cta-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #1a3a50 100%);
  border: 1px solid rgba(75, 178, 194, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 34px 24px;
}
.why-choose-cta-card::before {
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-dark));
  transform: scaleX(1);
  opacity: 1;
}
.why-choose-cta-card::after {
  background:
    radial-gradient(ellipse 300px 200px at 30% 20%, rgba(75, 178, 194, 0.1), transparent),
    radial-gradient(ellipse 200px 200px at 80% 80%, rgba(75, 178, 194, 0.06), transparent);
  opacity: 1;
}
.why-choose-cta-card:hover {
  border-color: rgba(75, 178, 194, 0.4);
  box-shadow:
    0 24px 56px rgba(14, 34, 48, 0.25),
    0 0 40px rgba(75, 178, 194, 0.12);
}
.why-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.why-cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 8px 24px rgba(75, 178, 194, 0.35);
}
.why-cta-icon svg { width: 24px; height: 24px; }
.why-cta-inner strong {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 2px;
}
.why-cta-inner p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 14px;
  line-height: 1.5;
}
.why-cta-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
}
.why-cta-phone {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 0.04em;
  margin-top: 6px;
  transition: color var(--t);
}
.why-cta-phone:hover { color: #fff; }

@media (max-width: 1024px) {
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .why-choose-grid { grid-template-columns: 1fr; }
  .why-choose-card { padding: 28px 24px 26px; }
}

/* ============================================================
   ABOUT — base + CTAs
   ============================================================ */
.about { padding: 40px 0 60px; }
.about-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   STATS BAR — animated cards
   ============================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  background: linear-gradient(135deg, #fff 0%, var(--light) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-dark), var(--primary-light));
  background-size: 300% 100%;
  animation: stat-rainbow 6s linear infinite;
}
@keyframes stat-rainbow {
  0%   { background-position: 0% 0; }
  100% { background-position: 300% 0; }
}

.stat-card {
  position: relative;
  padding: 38px 28px 34px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--t-slow), transform var(--t);
  overflow: hidden;
  cursor: default;
}
.stat-card:last-child { border-right: 0; }
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, var(--primary-tint), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-slow);
  pointer-events: none;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transition: width var(--t-slow);
}
.stat-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #fff, var(--primary-tint));
}
.stat-card:hover::before { opacity: 1; }
.stat-card:hover::after { width: 70%; }

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-tint), var(--primary-tint-2));
  color: var(--primary-dark);
  margin-bottom: 18px;
  box-shadow: 0 6px 16px var(--primary-shadow);
  transition: transform var(--t-slow), box-shadow var(--t-slow), color var(--t-slow);
}
.stat-icon svg { width: 26px; height: 26px; }
.stat-card:hover .stat-icon {
  transform: rotate(-8deg) scale(1.1);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 10px 24px var(--primary-shadow);
}

.stat-num {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(120deg, var(--primary-deep), var(--primary-dark) 50%, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform var(--t-slow);
}
.stat-num small {
  font-size: 1.05rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card:hover .stat-num { transform: scale(1.06); }

.stat-label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--t-slow);
}
.stat-card:hover .stat-label { color: var(--dark); }

.stat-bar {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary-tint-2);
  border-radius: 2px;
  margin: 14px auto 0;
  position: relative;
  overflow: hidden;
}
.stat-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: translateX(-100%);
  animation: stat-bar-pulse 2.4s ease-in-out infinite;
}
@keyframes stat-bar-pulse {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--light); }

/* Services bento gallery */
.bento-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  margin: 0 0 56px;
  height: 420px;
}
.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(.22, 1, .36, 1);
}
.bento-item:hover img {
  transform: scale(1.08);
}
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 34, 48, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.bento-item:hover .bento-overlay {
  opacity: 1;
}
.bento-tag {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(75, 178, 194, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Large image spans 2 rows */
.bento-large {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.bento-sm-1 { grid-row: 1; grid-column: 2; }
.bento-sm-2 { grid-row: 1; grid-column: 3; }
.bento-sm-3 { grid-row: 2; grid-column: 2 / 4; }

@media (max-width: 768px) {
  .bento-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
  }
  .bento-large { grid-row: 1; grid-column: 1 / 3; aspect-ratio: 16 / 9; }
  .bento-sm-1 { grid-row: 2; grid-column: 1; aspect-ratio: 4 / 3; }
  .bento-sm-2 { grid-row: 2; grid-column: 2; aspect-ratio: 4 / 3; }
  .bento-sm-3 { grid-row: 3; grid-column: 1 / 3; aspect-ratio: 16 / 9; }
}
@media (max-width: 480px) {
  .bento-gallery { gap: 10px; }
}

/* Services divider heading */
.services-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 3rem 0 2.5rem;
}
.services-divider h2 {
  flex-shrink: 0;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-align: center;
  background: linear-gradient(120deg, var(--dark), var(--primary-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.services-divider h2 br { display: block; white-space: initial; }
.services-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.35;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card h3 { margin-top: 22px; margin-bottom: 10px; }
.service-card p {
  font-size: 0.94rem;
  margin-bottom: 18px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  transition: color var(--t), gap var(--t);
  gap: 4px;
}
.service-card:hover .card-link { gap: 10px; color: var(--primary-dark); }

/* Service icon container — luxe layered */
.service-icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #eaf6f8 100%);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 24px rgba(75, 178, 194, 0.18),
    inset 0 0 0 1px rgba(75, 178, 194, 0.18),
    inset 0 -2px 0 rgba(75, 178, 194, 0.08);
  transition: transform var(--t-slow), box-shadow var(--t-slow), color var(--t-slow);
  transform-origin: center;
  z-index: 1;
}
.service-icon::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--primary-tint), transparent 60%);
  opacity: 0.6;
  transition: opacity var(--t-slow);
  pointer-events: none;
}
.service-icon::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 8px;
  right: 8px;
  height: 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
  pointer-events: none;
}
.service-icon svg {
  width: 34px;
  height: 34px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(75, 178, 194, 0.25));
  transition: transform var(--t-slow);
}
.icon-glow {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-tint-2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--t-slow), transform var(--t-slow);
  pointer-events: none;
  z-index: 0;
}
.service-card:hover .service-icon,
.roof-card:hover .service-icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow:
    0 18px 36px var(--primary-shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}
.service-card:hover .service-icon::before,
.roof-card:hover .service-icon::before {
  opacity: 0;
}
.service-card:hover .service-icon svg,
.roof-card:hover .service-icon svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  transform: scale(1.05);
}
.service-card:hover .icon-glow,
.roof-card:hover .icon-glow {
  opacity: 1;
  transform: scale(1.2);
}

/* ---------- ICON ANIMATIONS ---------- */
.icon-damp .damp-arrow {
  stroke-dasharray: 16;
  stroke-dashoffset: 16;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: damp-rise 2.4s ease-in-out infinite;
}
.icon-damp .damp-arrow-1 { animation-delay: 0s; }
.icon-damp .damp-arrow-2 { animation-delay: 0.3s; }
.icon-damp .damp-arrow-3 { animation-delay: 0.6s; }
@keyframes damp-rise {
  0%   { stroke-dashoffset: 16; opacity: 0; }
  35%  { stroke-dashoffset: 0;  opacity: 1; }
  60%  { stroke-dashoffset: 0;  opacity: 1; }
  80%  { opacity: 0; }
  100% { stroke-dashoffset: 16; opacity: 0; }
}
.icon-damp .dpc-barrier {
  transform-box: fill-box;
  transform-origin: center;
  animation: dpc-pulse 2s ease-in-out infinite;
}
@keyframes dpc-pulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

.icon-plaster .trowel {
  transform-box: fill-box;
  transform-origin: center;
  animation: trowel-glide 2.8s ease-in-out infinite;
}
@keyframes trowel-glide {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(10px); }
  100% { transform: translateX(0); }
}
.icon-plaster .plaster-smooth {
  stroke-dasharray: 22;
  stroke-dashoffset: 22;
  animation: plaster-draw 2.8s ease-in-out infinite;
}
@keyframes plaster-draw {
  0%   { stroke-dashoffset: 22; }
  50%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 22; }
}

.icon-paint .paint-roller {
  transform-box: fill-box;
  transform-origin: center;
  animation: roller-bounce 1.8s cubic-bezier(.4, 0, .2, 1) infinite;
}
@keyframes roller-bounce {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(3px, 3px); }
}
.icon-paint .paint-stripe {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: stripe-draw 1.8s ease-in-out infinite;
}
@keyframes stripe-draw {
  0%   { stroke-dashoffset: 30; }
  60%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; opacity: 0.85; }
}
.icon-paint .can-fluid {
  transform-box: fill-box;
  transform-origin: bottom center;
  animation: fluid-wobble 1.8s ease-in-out infinite;
}
@keyframes fluid-wobble {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(1.05); }
}

.icon-roof .roof-loose-tile {
  transform-box: fill-box;
  transform-origin: center;
  animation: tile-settle 2.6s ease-out infinite;
}
@keyframes tile-settle {
  0%   { transform: translate(6px, -2px) rotate(8deg); }
  50%  { transform: translate(0, 0) rotate(0deg) scale(1.05); }
  60%  { transform: translate(0, 0) rotate(0deg) scale(1); }
  85%  { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(6px, -2px) rotate(8deg); }
}

.icon-gutter .gutter-flow {
  animation: water-flow 2s linear infinite;
}
@keyframes water-flow {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -10; }
}
.icon-gutter .gutter-drop {
  transform-box: fill-box;
  transform-origin: center;
  animation: drop-fall 1.6s ease-in infinite;
}
.icon-gutter .drop-a { animation-delay: 0s; }
.icon-gutter .drop-b { animation-delay: 0.5s; }
@keyframes drop-fall {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(4px); opacity: 0.6; }
  100% { transform: translateY(8px); opacity: 0; }
}

.icon-shield .shield-body {
  transform-box: fill-box;
  transform-origin: center;
  animation: shield-breathe 3.5s ease-in-out infinite;
}
@keyframes shield-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
.icon-shield .shield-droplet,
.icon-shield .shield-trowel,
.icon-shield .shield-roof {
  animation: inner-pulse 2.4s ease-in-out infinite;
}
.icon-shield .shield-droplet { animation-delay: 0s; }
.icon-shield .shield-trowel  { animation-delay: 0.4s; }
.icon-shield .shield-roof    { animation-delay: 0.8s; }
@keyframes inner-pulse {
  0%, 100% { opacity: 0.5; }
  30%      { opacity: 1; }
}

.icon-report .report-line {
  stroke-dasharray: 14;
  stroke-dashoffset: 14;
  animation: line-draw 3.5s ease-in-out infinite;
}
.icon-report .report-line-1 { animation-delay: 0s; }
.icon-report .report-line-2 { animation-delay: 0.3s; }
.icon-report .report-line-3 { animation-delay: 0.6s; }
@keyframes line-draw {
  0%, 5%   { stroke-dashoffset: 14; }
  35%      { stroke-dashoffset: 0; }
  90%, 100% { stroke-dashoffset: 0; }
}
.icon-report .report-stamp {
  transform-box: fill-box;
  transform-origin: center;
  animation: stamp-in 3.5s ease-out infinite;
  opacity: 0;
}
@keyframes stamp-in {
  0%, 35%  { transform: scale(0.6); opacity: 0; }
  45%      { transform: scale(1); opacity: 1; }
  90%      { transform: scale(1); opacity: 1; }
  100%     { transform: scale(0.6); opacity: 0; }
}
.icon-report .meter-bar {
  transform-box: fill-box;
  transform-origin: left center;
  animation: meter-read 2s ease-in-out infinite;
}
@keyframes meter-read {
  0%, 100% { transform: scaleX(0.1); }
  50%      { transform: scaleX(1); }
}
.icon-report .probe-ripple {
  transform-box: fill-box;
  transform-origin: center;
  animation: probe-pulse 2s ease-out infinite;
  opacity: 0;
}
.icon-report .ripple-1 { animation-delay: 0s; }
.icon-report .ripple-2 { animation-delay: 0.3s; }
@keyframes probe-pulse {
  0%   { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}

.icon-timber .timber-drop {
  stroke-dasharray: 6;
  stroke-dashoffset: 6;
  animation: timber-fall 2s ease-in infinite;
}
.icon-timber .drop-1 { animation-delay: 0s; }
.icon-timber .drop-2 { animation-delay: 0.4s; }
.icon-timber .drop-3 { animation-delay: 0.8s; }
@keyframes timber-fall {
  0%   { stroke-dashoffset: 6; opacity: 0; }
  40%  { stroke-dashoffset: 0; opacity: 1; }
  60%  { stroke-dashoffset: 0; opacity: 0.5; }
  100% { stroke-dashoffset: -6; opacity: 0; }
}

.icon-repair .repair-wrench {
  transform-box: fill-box;
  transform-origin: 28px 18px;
  animation: wrench-turn 2.4s ease-in-out infinite;
}
@keyframes wrench-turn {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(-15deg); }
}
.icon-external .repoint-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: repoint-ripple 2.2s ease-out infinite;
  opacity: 0;
}
@keyframes repoint-ripple {
  0%   { transform: scale(0.4); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Materials banner */
.materials-banner {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  padding: 32px 36px;
  background: linear-gradient(135deg, #fff 0%, var(--primary-tint) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.materials-mark {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  color: var(--primary);
}
.materials-banner h3 { margin-bottom: 6px; }
.materials-banner p { margin: 0; }

/* ============================================================
   ROOFING
   ============================================================ */
.roofing { background: var(--bg); }

/* Roofing hero split */
.roofing-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.roofing-hero-copy .eyebrow-luxe {
  margin-bottom: 1.2em;
}
.roofing-hero-copy h2 {
  margin-bottom: 18px;
  text-align: left;
}
.roofing-hero-copy p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
}
.roofing-hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow:
    0 30px 80px rgba(14, 34, 48, 0.18),
    0 0 0 1px rgba(75, 178, 194, 0.1);
}
.roofing-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.roofing-hero-image:hover img {
  transform: scale(1.04);
}

@media (max-width: 1024px) {
  .roofing-hero-split { grid-template-columns: 1fr; gap: 36px; }
  .roofing-hero-image { max-width: 600px; }
}

.roofing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.roof-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all var(--t);
}
.roof-card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.roof-card h3 { margin-top: 20px; margin-bottom: 8px; font-size: 1.1rem; }
.roof-card p  { font-size: 0.9rem; margin: 0; }

.guarantee-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.guarantee-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(75, 178, 194, 0.18), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(125, 211, 223, 0.12), transparent 40%);
  pointer-events: none;
}
.guarantee {
  position: relative;
  padding: 32px 28px;
  text-align: center;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.guarantee:last-child { border-right: 0; }
.guarantee-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  background: linear-gradient(120deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.guarantee-num small {
  font-size: 1rem;
  margin-left: 2px;
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.guarantee-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.guarantee-details {
  max-width: 920px;
  margin: 1.75rem auto 0;
  background: #fff;
  border: 1px solid rgba(14,34,48,0.08);
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow: 0 8px 40px rgba(14,34,48,0.06), 0 1px 3px rgba(14,34,48,0.04);
}
.guarantee-details-title {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.guarantee-details-lead {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  margin: 0 0 10px;
}
.guarantee-details-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0 0 0 6px;
}
.guarantee-details-list li {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
}
.guarantee-details-list li strong {
  color: var(--dark);
  font-weight: 700;
}
.guarantee-details-note {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 12px;
}
.guarantee-details-note:last-child { margin-bottom: 0; }
.guarantee-details-note strong { color: var(--dark); font-weight: 700; }
@media (max-width: 640px) {
  .guarantee-details { padding: 28px 22px; border-radius: 14px; }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, var(--primary-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.10), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(125, 211, 223, 0.18), transparent 40%);
  pointer-events: none;
}
.why-us .container { position: relative; }
.why-us h2, .why-us .section-head p { color: #fff; }
.why-us .section-head p { opacity: 0.92; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-item {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  transition: all var(--t-slow);
  overflow: hidden;
  isolation: isolate;
}
.why-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 50%, transparent 80%, rgba(125, 211, 223, 0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
  transition: opacity var(--t-slow);
}
.why-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(125, 211, 223, 0.3), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-slow);
  pointer-events: none;
  z-index: 0;
}
.why-item:hover {
  transform: translateY(-8px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: var(--primary-light);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}
.why-item:hover::before { opacity: 1; }
.why-item:hover::after  { opacity: 1; }
.why-item-featured {
  background: linear-gradient(145deg, rgba(125, 211, 223, 0.18) 0%, rgba(75, 178, 194, 0.08) 100%);
  border-color: rgba(125, 211, 223, 0.4);
}
.why-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  background: linear-gradient(120deg, var(--primary-light), rgba(125, 211, 223, 0.4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
}
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: transform var(--t-slow), background var(--t-slow);
  position: relative;
  z-index: 2;
}
.why-icon svg { width: 30px; height: 30px; }
.why-item:hover .why-icon {
  transform: scale(1.08) rotate(-6deg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.32), rgba(125, 211, 223, 0.18));
}

.why-item h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.why-item p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  position: relative;
  z-index: 2;
}
.why-corner {
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 28px;
  height: 28px;
  border-bottom-left-radius: var(--radius-lg);
  border-left: 2px solid var(--primary-light);
  border-bottom: 2px solid var(--primary-light);
  opacity: 0;
  transition: opacity var(--t-slow), width var(--t-slow), height var(--t-slow);
  pointer-events: none;
}
.why-item:hover .why-corner {
  opacity: 1;
  width: 44px;
  height: 44px;
}

/* Why CTA strip */
.why-cta {
  margin-top: 50px;
  padding: 32px 38px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
}
.why-cta-text { display: flex; flex-direction: column; }
.why-cta-text strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 4px;
}
.why-cta-text span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}
.why-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-light {
  background: #fff;
  color: var(--primary-deep);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.btn-light:hover {
  background: var(--primary-light);
  color: var(--dark);
  transform: translateY(-3px);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--light); }

/* Contact hero split */
.contact-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.contact-hero-copy .eyebrow-luxe {
  margin-bottom: 1.2em;
}
.contact-hero-copy h2 {
  text-align: left;
  margin-bottom: 16px;
}
.contact-hero-copy p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
}
.contact-hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow:
    0 30px 80px rgba(14, 34, 48, 0.18),
    0 0 0 1px rgba(75, 178, 194, 0.1);
}
.contact-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.contact-hero-image:hover img {
  transform: scale(1.04);
}
.contact-trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: var(--radius);
  border: 1px solid rgba(75, 178, 194, 0.15);
}
.contact-trust-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--primary-light);
}
.contact-trust-icon svg { width: 100%; height: 100%; }
.contact-trust-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.contact-trust-badge span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .contact-hero-split { grid-template-columns: 1fr; gap: 36px; }
  .contact-hero-image { max-width: 600px; }
}

.deposit-notice {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 28px 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--primary);
  margin-bottom: 56px;
}
.deposit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.deposit-icon svg { width: 24px; height: 24px; }
.deposit-notice h3 { margin-bottom: 8px; font-size: 1.1rem; }
.deposit-notice p { margin: 0; font-size: 0.95rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: stretch;
}

/* Luxe info cards */
.info-card-luxe {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #ffffff 0%, var(--light) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-slow), background var(--t-slow);
  overflow: hidden;
  isolation: isolate;
}
.info-card-luxe::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), transparent 50%, transparent 80%, var(--primary-dark));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--t-slow);
  pointer-events: none;
  z-index: 2;
}
.info-card-glow {
  position: absolute;
  bottom: -50%;
  right: -30%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-tint-2), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-slow);
  pointer-events: none;
  z-index: 0;
}
.info-card-luxe:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(75, 178, 194, 0.18);
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}
.info-card-luxe:hover::before { opacity: 1; }
.info-card-luxe:hover .info-card-glow { opacity: 1; }

.info-card-whatsapp .info-icon {
  background: linear-gradient(145deg, #25D366, #128C7E) !important;
  box-shadow: 0 8px 18px rgba(37,211,102,0.3), inset 0 0 0 1px rgba(255,255,255,0.18) !important;
}
.info-card-whatsapp:hover .info-icon {
  box-shadow: 0 12px 24px rgba(37,211,102,0.4), inset 0 0 0 1px rgba(255,255,255,0.3) !important;
}
.info-card-whatsapp .info-action { color: #25D366; }

.info-card-luxe .info-icon {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px var(--primary-shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  z-index: 2;
}
.info-card-luxe .info-icon svg { width: 24px; height: 24px; position: relative; z-index: 2; }
.info-card-luxe:hover .info-icon {
  transform: rotate(-8deg) scale(1.06);
  box-shadow: 0 12px 24px var(--primary-shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.info-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.info-card-luxe strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.74rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.info-card-luxe .info-value {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
  word-break: break-word;
}
.info-card-luxe .info-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}
.info-card-luxe .info-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 8px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity var(--t-slow), max-height var(--t-slow), color var(--t-slow);
}
.info-card-luxe .info-action svg { width: 12px; height: 12px; transition: transform var(--t); }
.info-card-luxe:hover .info-action {
  opacity: 1;
  max-height: 24px;
}
.info-card-luxe:hover .info-action svg { transform: translateX(4px); }

/* Phone icon ring on hover */
.info-icon-phone svg {
  transform-origin: 50% 60%;
  transition: transform var(--t);
}
.info-card-luxe:hover .info-icon-phone svg {
  animation: phone-ring 0.9s ease-in-out infinite;
}
.icon-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--primary);
  opacity: 0;
  pointer-events: none;
}
.info-card-luxe:hover .icon-pulse-ring {
  animation: ring-expand 1.6s ease-out infinite;
}
.info-card-luxe:hover .icon-pulse-ring-2 { animation-delay: 0.5s; }
@keyframes ring-expand {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Mail flap animation */
.info-icon-mail .mail-flap {
  transform-origin: 12px 6px;
  transition: transform var(--t-slow);
}
.info-card-luxe:hover .info-icon-mail .mail-flap {
  animation: mail-open 1.8s ease-in-out infinite;
}
@keyframes mail-open {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(-0.6) translateY(-2px); }
}

/* Pin animation */
.info-icon-pin .pin-body {
  transform-origin: 12px 23px;
  transition: transform var(--t);
}
.info-icon-pin .pin-dot { transition: transform var(--t); }
.info-card-luxe:hover .info-icon-pin .pin-body {
  animation: pin-bounce 1.4s ease-in-out infinite;
}
@keyframes pin-bounce {
  0%, 100% { transform: translateY(0); }
  40%      { transform: translateY(-4px); }
  60%      { transform: translateY(-4px); }
}

/* Clock hands rotate */
.info-icon-clock svg {
  transform-origin: 50% 50%;
  transition: transform var(--t);
}
.info-card-luxe:hover .info-icon-clock svg {
  animation: clock-spin 4s linear infinite;
}
@keyframes clock-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Trust block — fills remaining space */
.info-trust {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  margin-top: 4px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.info-trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(75, 178, 194, 0.22), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(125, 211, 223, 0.14), transparent 50%);
  pointer-events: none;
}
.info-trust-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px var(--primary-shadow);
}
.info-trust-icon svg { width: 22px; height: 22px; }
.info-trust > div { position: relative; z-index: 1; }
.info-trust strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.info-trust span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form h3 { margin-bottom: 6px; }
.form-sub { font-size: 0.95rem; margin-bottom: 22px; }

.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 0.95rem;
  transition: all var(--t-fast);
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-tint);
}
.field textarea { resize: vertical; }
.form-submit {
  width: 100%;
  margin-top: 6px;
}
.form-note {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}
.form-note a { color: var(--primary); font-weight: 600; }

.form-success {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  display: none;
  line-height: 1.5;
}
.form-success.show { display: block; }
.form-success.is-ok {
  background: rgba(75, 178, 194, 0.10);
  border: 1px solid var(--primary-tint-2);
  color: var(--primary-deep);
}
.form-success.is-error {
  background: rgba(220, 80, 80, 0.08);
  border: 1px solid rgba(220, 80, 80, 0.28);
  color: #a93232;
}
.form-success a { color: inherit; text-decoration: underline; font-weight: 700; }

.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo-footer .logo-name,
.logo-footer .logo-name strong { color: #fff; }
.logo-footer .logo-slogan { color: var(--primary-light); }
.footer-brand p { margin-top: 18px; color: rgba(255, 255, 255, 0.65); font-size: 0.9rem; }

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 0.78rem;
  margin-bottom: 8px;
}
.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: color var(--t-fast);
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-links a svg,
.footer-contact a svg,
.footer-contact span svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary-light);
  opacity: 0.85;
  transition: opacity var(--t-fast);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--primary-light); }
.footer-links a:hover svg,
.footer-contact a:hover svg { opacity: 1; }

.footer-bottom { padding: 22px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom .credit a {
  color: var(--primary-light);
  font-weight: 600;
  transition: color var(--t-fast);
}
.footer-bottom .credit a:hover { color: var(--primary); }


.footer-terms-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--t-fast);
  font-size: 0.85rem;
}
.footer-terms-link:hover { color: var(--primary-light); }

/* ============================================================
   TRUST BADGE BAR
   ============================================================ */
.trust-badge-bar {
  background: linear-gradient(135deg, #0e2230 0%, #1a3a4f 100%);
  border-bottom: 1px solid rgba(75,178,194,0.15);
  padding: 10px 0;
  position: sticky;
  top: var(--navbar-h, 0px);
  z-index: 89;
  overflow: hidden;
}
.trust-ticker {
  overflow: hidden;
  width: 100%;
}
.trust-ticker-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.trust-ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-light);
  flex-shrink: 0;
}
.trust-ticker-track span::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(75,178,194,0.2);
  color: var(--primary);
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-ticker-track:hover {
  animation-play-state: paused;
}

/* ============================================================
   HOW WE WORK SECTION
   ============================================================ */
.how-we-work {
  padding: 70px 0 60px;
  background: linear-gradient(180deg, var(--light) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.hww-title {
  text-align: center;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hww-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.6;
}
.hww-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.hww-step {
  text-align: center;
  padding: 36px 20px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  margin: 0 10px;
}
.hww-step:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 12px 40px rgba(14,34,48,0.1);
  border-color: rgba(75,178,194,0.3);
}
.hww-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(75,178,194,0.35);
}
.hww-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: rgba(75,178,194,0.1);
  border: 1px solid rgba(75,178,194,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), transform var(--t);
}
.hww-step:hover .hww-icon-wrap {
  background: rgba(75,178,194,0.18);
  transform: scale(1.08);
}
.hww-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--primary-light);
}
.hww-step h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.hww-step p {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
}
/* Connector arrows between steps */
.hww-connector {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(75,178,194,0.3);
  border-bottom: 2px solid rgba(75,178,194,0.3);
  transform: translateY(-50%) rotate(-45deg);
  z-index: 2;
}
.hww-step-last .hww-connector { display: none; }
@media (max-width: 1024px) {
  .hww-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .hww-step { margin: 0; }
  .hww-connector { display: none; }
}
@media (max-width: 768px) {
  .hww-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .how-we-work { padding: 50px 0 40px; }
  .hww-connector { display: none; }
}
@media (max-width: 480px) {
  .hww-steps { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hww-step { padding: 30px 14px 22px; }
  .hww-icon-wrap { width: 48px; height: 48px; }
  .hww-icon-wrap svg { width: 22px; height: 22px; }
}

/* ============================================================
   FLOATING CALL BUTTON (Landline)
   ============================================================ */
.floating-call {
  position: fixed;
  bottom: 86px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 8px 25px var(--primary-shadow);
  transition: transform var(--t), box-shadow var(--t);
}
.floating-call:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 35px rgba(75,178,194,0.45);
}
.floating-call svg {
  width: 22px;
  height: 22px;
  animation: phone-ring 3s ease-in-out infinite;
}
.floating-call-label {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .floating-call { padding: 14px 20px; font-size: 0.85rem; bottom: 84px; right: 16px; }
  .floating-call svg { width: 22px; height: 22px; }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  transition: transform var(--t), box-shadow var(--t);
  animation: wa-bounce 3s ease-in-out infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 35px rgba(37,211,102,0.55);
}
.floating-whatsapp svg {
  width: 24px;
  height: 24px;
}
.floating-whatsapp-label {
  white-space: nowrap;
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@media (max-width: 768px) {
  .floating-whatsapp { padding: 14px 20px; font-size: 0.85rem; right: 16px; }
  .floating-whatsapp svg { width: 24px; height: 24px; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-bottom: 1px solid var(--border); }
  .stat-card:nth-child(2) { border-right: 0; }
  .stat-card:nth-child(3),
  .stat-card:nth-child(4) { border-bottom: 0; }
}
@media (max-width: 1024px) {
  .hero { min-height: auto; padding: 50px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-image-frame { max-width: 460px; margin: 0 auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .roofing-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid     { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-inner { display: flex; align-items: center; position: relative; }
  .nav-links, .nav-cta, .nav-cta-cluster { display: none !important; }
  .nav-inner > .logo { margin: 0 auto; }
  .nav-inner { padding-left: 8px; padding-right: 8px; }
  .nav-toggle { display: flex; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); }
  .section-head { margin-bottom: 48px; }
  .stats-bar    { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .stat-card    { border-right: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .roofing-grid { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .guarantee-strip { grid-template-columns: 1fr; }
  .guarantee { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .guarantee:last-child { border-bottom: 0; }
  .field-row { grid-template-columns: 1fr; }
  .about { padding-top: 16px; }
  .materials-banner { flex-direction: column; text-align: center; padding: 28px 24px; }
  .deposit-notice { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .contact-form { padding: 28px 24px; }
  .hero-ctas {
    justify-content: center;
    text-align: center;
  }
  .hero-ctas .btn { flex: 0 0 auto; width: auto; }
  .hero-copy { text-align: center; }
  .hero-copy h1 { text-align: center; }
  .about-ctas { justify-content: center; }
  .about-checks { grid-template-columns: 1fr; }
  .why-cta-buttons { justify-content: center; width: 100%; }
  .hero-card-top, .hero-card-bottom { display: none; }
  .eyebrow-luxe { font-size: 0.66rem; padding: 8px 14px; letter-spacing: 0.12em; }
}

@media (max-width: 480px) {
  :root { --gutter: 18px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 40px 0 60px; }
  .hero-image-frame { aspect-ratio: 5 / 5.4; }
  .logo-text .logo-name { font-size: 0.95rem; }
}

/* ============================================================
   TERMS & CONDITIONS PAGE
   ============================================================ */
.terms-page {
  padding-top: 40px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, var(--light) 0%, #fff 100%);
  min-height: 100vh;
}
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 56px 48px;
  box-shadow: 0 8px 40px rgba(14,34,48,0.07), 0 1px 3px rgba(14,34,48,0.04);
  border: 1px solid rgba(14,34,48,0.06);
}
.terms-content h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.terms-subtitle {
  font-size: 1.05rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--light-2);
}
.terms-section {
  margin-bottom: 36px;
}
.terms-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-2);
}
.terms-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 20px;
  margin-bottom: 10px;
}
.terms-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 12px;
}
.terms-section p strong {
  color: var(--dark);
  font-weight: 600;
}
.terms-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.terms-section ul li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 8px;
}
.terms-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.7;
}
.terms-guarantees li {
  font-weight: 500;
}
.terms-guarantees li strong {
  color: var(--dark);
}
.terms-back {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 2px solid var(--light-2);
  text-align: center;
}
@media (max-width: 768px) {
  .terms-page { padding-top: 30px; padding-bottom: 48px; }
  .terms-content { padding: 36px 24px; border-radius: 16px; }
}
@media (max-width: 480px) {
  .terms-page { padding-top: 20px; }
  .terms-content { padding: 28px 18px; }
}

/* ============================================================
   BRIGHT QUOTE BUTTON
   ============================================================ */
.btn-quote-bright {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6b35, #e85d26);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 8px 25px rgba(255,107,53,0.4);
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}
.btn-quote-bright:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(255,107,53,0.55);
}
.btn-quote-bright svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .btn-quote-bright { padding: 16px 28px; font-size: 0.92rem; }
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  padding: 50px 0 60px;
  background: linear-gradient(180deg, #fff 0%, var(--light) 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  text-align: center;
}
.testimonial-stars {
  display: block;
  font-size: 1.3rem;
  color: #f5a623;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.testimonials-tagline {
  text-align: center;
  margin: 36px auto 0;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 700px;
}
.testimonials-tagline::before,
.testimonials-tagline::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 24px 20px; }
}

/* ============================================================
   DAMP SERVICES SUMMARY LIST
   ============================================================ */
.damp-services-summary {
  max-width: 700px;
  margin: 0 auto 40px;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.damp-services-summary h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.damp-services-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.damp-services-summary li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 0.92rem;
  color: var(--body);
  border-bottom: 1px solid var(--border);
}
.damp-services-summary li:last-child { border-bottom: none; }
.damp-services-summary li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(75,178,194,0.15);
  color: var(--primary);
  font-size: 0.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .damp-services-summary { padding: 24px 20px; }
}

/* ============================================================
   BIGGER HERO PILL HEADLINE
   ============================================================ */
.hero .eyebrow-luxe {
  font-size: 0.88rem;
  padding: 10px 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
