/* ============================================================
   Central Property Restoration & Rebuild — cprdamage.com
   Brand: Navy #161E4A + Orange #E87729
   ============================================================ */

:root {
  --navy-950: #0A0E2A;
  --navy-900: #0F1638;
  --navy-800: #161E4A;
  --navy-700: #1F2860;
  --navy-600: #2A3478;
  --navy-500: #3A468F;

  --orange-700: #A14B0E;
  --orange-600: #C25E15;
  --orange-500: #E87729;
  --orange-400: #F08B3F;
  --orange-300: #F8A66A;
  --orange-50:  #FFF3E8;

  --cream: #FAF7F2;
  --paper: #F5F6FA;
  --gray-100: #EEF0F6;
  --gray-200: #DCE0EC;
  --gray-300: #C2C8DA;
  --gray-500: #7C8499;
  --gray-700: #444B62;
  --gray-900: #1A1F36;

  --white: #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(15, 22, 56, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 22, 56, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 22, 56, 0.22);
  --shadow-glow: 0 0 40px rgba(232, 119, 41, 0.35);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --container: 1240px;
  --container-narrow: 980px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
.display, h1, h2, h3 {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--navy-900);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 800; letter-spacing: -0.015em; }
h4 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-500);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange-500);
}
.eyebrow.light { color: var(--orange-400); }
.eyebrow.light::before { background: var(--orange-400); }

.lead { font-size: 1.15rem; color: var(--gray-700); line-height: 1.6; }

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 8rem 0; }

.bg-navy { background: var(--navy-800); color: var(--white); }
.bg-navy-deep { background: var(--navy-900); color: var(--white); }
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(232, 119, 41, 0.35);
}
.btn-primary:hover {
  background: var(--orange-400);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(232, 119, 41, 0.5);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy-800);
  border: 2px solid var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--navy-800);
  background: var(--navy-800);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--white); background: var(--white); color: var(--navy-800); }

.btn-phone {
  background: var(--orange-500);
  color: var(--white);
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-phone:hover { background: var(--orange-400); transform: translateY(-1px); }

.btn-lg { padding: 1.2rem 2.2rem; font-size: 1.05rem; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy-900);
  color: var(--white);
  padding: 0.55rem 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.85);
}
.topbar-item svg { width: 14px; height: 14px; color: var(--orange-400); }
.topbar-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange-400);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.topbar-pulse::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--orange-400);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  color: var(--navy-800);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--navy-800);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 28px; height: 28px; color: var(--orange-500); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .name { font-size: 0.95rem; letter-spacing: 0.02em; }
.logo-text .tagline { font-size: 0.7rem; color: var(--gray-500); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 0.4rem; }
.nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-800);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav a:hover { color: var(--orange-500); }
.nav a.active { color: var(--orange-500); }

.nav-item { position: relative; }
.nav-item .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s var(--ease);
  border: 1px solid var(--gray-100);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  flex-direction: column;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
}
.dropdown a:hover { background: var(--paper); }
.dropdown a strong { color: var(--navy-800); font-weight: 700; font-size: 0.92rem; }
.dropdown a span { color: var(--gray-500); font-size: 0.78rem; margin-top: 2px; font-weight: 500; }

.header-cta { display: flex; align-items: center; gap: 0.6rem; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--navy-800);
  color: var(--white);
  place-items: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: var(--white);
  padding: 5rem 0 6rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(232,119,41,0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(232,119,41,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: "";
  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: 60px 60px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { max-width: 640px; }
.hero h1 {
  color: var(--white);
  margin: 1.2rem 0 1.5rem;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--orange-300), var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero p { color: rgba(255,255,255,0.78); font-size: 1.15rem; max-width: 540px; }
.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.2rem 0 2.5rem;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.hero-trust-item svg { width: 18px; height: 18px; color: var(--orange-400); }

/* Hero side card */
.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.4rem;
}
.hero-card-header strong { font-family: 'Archivo'; font-weight: 800; font-size: 1.05rem; color: var(--white); letter-spacing: -0.01em; }
.hero-card-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange-400);
  background: rgba(232,119,41,0.12);
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
}
.hero-card-list { list-style: none; }
.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.65rem 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-card-list li:last-child { border-bottom: none; }
.hero-card-list svg { width: 18px; height: 18px; color: var(--orange-400); flex-shrink: 0; margin-top: 2px; }
.hero-card-list strong { color: var(--white); font-weight: 700; display: block; margin-bottom: 2px; }
.hero-card-list span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

.hero-card-footer {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.hero-card-footer .price { font-family: 'Archivo'; font-weight: 900; font-size: 1.4rem; color: var(--white); letter-spacing: -0.02em; }
.hero-card-footer .price small { font-size: 0.7rem; color: rgba(255,255,255,0.5); display: block; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* ===== STATS STRIP ===== */
.stats {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 0;
  color: var(--white);
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 0.8rem;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Archivo';
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--orange-400);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--white);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-strip-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gray-500);
  flex-shrink: 0;
}
.trust-badges {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-700);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.trust-badge svg { width: 28px; height: 28px; color: var(--navy-800); }

/* ===== SECTION HEADER ===== */
.section-header {
  max-width: 720px;
  margin-bottom: 4rem;
}
.section-header.center { margin: 0 auto 4rem; text-align: center; }
.section-header h2 { margin: 1rem 0 1.2rem; }
.section-header p { font-size: 1.1rem; color: var(--gray-700); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-300);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(232,119,41,0.25);
}
.service-icon svg { width: 32px; height: 32px; }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { color: var(--gray-700); font-size: 0.95rem; margin-bottom: 1.2rem; }
.service-features { list-style: none; margin-bottom: 1.8rem; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--gray-700);
}
.service-features svg { width: 16px; height: 16px; color: var(--orange-500); flex-shrink: 0; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy-800);
  font-weight: 700;
  font-size: 0.92rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 1.2rem;
  width: 100%;
  transition: color 0.2s var(--ease);
}
.service-link svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.service-card:hover .service-link { color: var(--orange-500); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ===== PROCESS ===== */
.process {
  background: var(--cream);
  padding: 7rem 0;
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange-300) 10%, var(--orange-300) 90%, transparent);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}
.process-num {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem;
  background: var(--white);
  border: 3px solid var(--orange-500);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Archivo';
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--navy-800);
  box-shadow: 0 8px 24px rgba(232,119,41,0.18);
  transition: all 0.3s var(--ease);
}
.process-step:hover .process-num {
  background: var(--orange-500);
  color: var(--white);
  transform: scale(1.06);
}
.process-step h4 { color: var(--navy-800); font-size: 1.15rem; margin-bottom: 0.6rem; font-family: 'Archivo'; font-weight: 800; }
.process-step p { color: var(--gray-700); font-size: 0.92rem; }

/* ===== WHY US (split) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-content h2 { margin: 1rem 0 1.5rem; }
.split-content > p { font-size: 1.1rem; color: var(--gray-700); margin-bottom: 2rem; }

.feature-list { display: grid; gap: 1.2rem; margin: 2rem 0; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
}
.feature-item:hover {
  border-color: var(--orange-300);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-50);
  color: var(--orange-500);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-text h4 { margin-bottom: 0.3rem; color: var(--navy-800); font-weight: 800; }
.feature-text p { color: var(--gray-700); font-size: 0.92rem; }

/* Image placeholder */
.split-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
}
.split-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(232,119,41,0.3), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(232,119,41,0.15), transparent 50%);
}
.split-visual-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(15,22,56,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--white);
}
.split-visual-overlay h4 { color: var(--white); margin-bottom: 0.4rem; }
.split-visual-overlay p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.split-visual-quote {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 64px;
  height: 64px;
  background: var(--orange-500);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: 'Archivo';
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
}

/* ===== EMERGENCY CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,119,41,0.18), transparent 70%);
  pointer-events: none;
}
.cta-band .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.cta-band h2 { color: var(--white); margin: 1rem 0; }
.cta-band p { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 540px; }
.cta-band-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.cta-band-phone {
  font-family: 'Archivo';
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--orange-400);
  letter-spacing: -0.01em;
  display: block;
  text-align: right;
}
.cta-band-phone small {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-300);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--orange-500);
}
.testimonial-stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial-text {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--navy-800);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gray-100);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: 'Archivo';
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.testimonial-info strong { color: var(--navy-800); font-weight: 700; display: block; font-size: 0.95rem; }
.testimonial-info span { color: var(--gray-500); font-size: 0.82rem; }

/* ===== AREAS ===== */
.areas {
  background: var(--navy-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.areas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(232,119,41,0.12), transparent 50%);
}
.areas .container { position: relative; }
.areas h2 { color: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 3rem;
}
.area-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.25s var(--ease);
  cursor: default;
}
.area-pill:hover {
  background: rgba(232,119,41,0.12);
  border-color: var(--orange-500);
  transform: translateY(-2px);
}
.area-pill svg { width: 18px; height: 18px; color: var(--orange-400); flex-shrink: 0; }
.area-pill span { font-weight: 600; font-size: 0.92rem; }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq-item.open { border-color: var(--orange-300); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  text-align: left;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-800);
  transition: color 0.2s var(--ease);
}
.faq-q:hover { color: var(--orange-500); }
.faq-q-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
}
.faq-q-icon svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q-icon { background: var(--orange-500); color: var(--white); }
.faq-item.open .faq-q-icon svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-inner { padding: 0 1.6rem 1.5rem; color: var(--gray-700); line-height: 1.7; }

/* ===== BLOG / PROJECTS CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.blog-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  position: relative;
  overflow: hidden;
}
.blog-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(232,119,41,0.3), transparent 50%);
}
.blog-image.fire { background: linear-gradient(135deg, #2A1810, #5A2A14); }
.blog-image.fire::before { background: radial-gradient(circle at 40% 60%, rgba(232,119,41,0.5), transparent 60%); }
.blog-image.water { background: linear-gradient(135deg, #0F2845, #1B3F6B); }
.blog-image.water::before { background: radial-gradient(circle at 50% 40%, rgba(80,150,220,0.4), transparent 60%); }
.blog-image.rebuild { background: linear-gradient(135deg, #1A1F36, #3A2818); }
.blog-image.rebuild::before { background: radial-gradient(circle at 50% 60%, rgba(232,119,41,0.4), transparent 60%); }

.blog-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--orange-500);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  z-index: 2;
}
.blog-body { padding: 1.6rem 1.8rem 1.8rem; }
.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}
.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-card h3 a { transition: color 0.2s var(--ease); }
.blog-card:hover h3 a { color: var(--orange-500); }
.blog-card p { color: var(--gray-700); font-size: 0.92rem; margin-bottom: 1.2rem; }
.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--orange-500);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}
.footer-brand .logo { color: var(--white); }
.footer-brand .logo .name { color: var(--white); }
.footer-brand .logo-mark { background: var(--orange-500); }
.footer-brand .logo-mark svg { color: var(--white); }
.footer-about {
  margin: 1.2rem 0 1.6rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.65;
}
.footer-contact { display: grid; gap: 0.6rem; font-size: 0.88rem; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.75);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--orange-400); flex-shrink: 0; }

.footer h5 {
  font-family: 'Archivo';
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: grid; gap: 0.7rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: var(--orange-400); }

.footer-newsletter {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-top: 1.2rem;
}
.footer-newsletter form {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.8rem;
}
.footer-newsletter input {
  flex: 1;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.88rem;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter button {
  background: var(--orange-500);
  color: var(--white);
  padding: 0 1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.2s var(--ease);
}
.footer-newsletter button:hover { background: var(--orange-400); }

.footer-bottom {
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.82rem;
}
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: color 0.2s var(--ease); }
.footer-bottom-links a:hover { color: var(--orange-400); }

/* ===== STICKY PHONE BUTTON ===== */
.sticky-phone {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: var(--orange-500);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(232,119,41,0.5);
  z-index: 99;
  animation: phonePulse 2s infinite;
}
.sticky-phone svg { width: 26px; height: 26px; }
@keyframes phonePulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(232,119,41,0.5), 0 0 0 0 rgba(232,119,41,0.5); }
  50% { box-shadow: 0 12px 32px rgba(232,119,41,0.5), 0 0 0 16px rgba(232,119,41,0); }
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(232,119,41,0.18), transparent 50%);
}
.page-header .container { position: relative; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(255,255,255,0.75); transition: color 0.2s var(--ease); }
.breadcrumb a:hover { color: var(--orange-400); }
.breadcrumb-sep { color: rgba(255,255,255,0.4); }
.page-header h1 { color: var(--white); max-width: 800px; }
.page-header p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 640px;
  margin-top: 1.2rem;
}

/* ===== FORM ===== */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--navy-800);
  transition: border-color 0.2s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(232,119,41,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.form-group small { color: var(--gray-500); font-size: 0.78rem; }
.form-card .btn { width: 100%; padding: 1.1rem; font-size: 1rem; }

/* ===== INFO CARDS ===== */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  transition: all 0.25s var(--ease);
}
.info-card:hover {
  border-color: var(--orange-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.info-card-icon {
  width: 56px; height: 56px;
  background: var(--orange-50);
  color: var(--orange-500);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
}
.info-card-icon svg { width: 28px; height: 28px; }
.info-card h4 { margin-bottom: 0.5rem; color: var(--navy-800); }
.info-card p { color: var(--gray-700); font-size: 0.9rem; }
.info-card a { color: var(--orange-500); font-weight: 700; }

/* ===== SERVICE PAGE ===== */
.service-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}
.service-main h2 { margin: 2.5rem 0 1rem; }
.service-main p { color: var(--gray-700); margin-bottom: 1.2rem; }
.service-main ul { margin: 1rem 0 1.5rem 1.2rem; color: var(--gray-700); }
.service-main ul li { padding: 0.3rem 0; }

.service-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 1.5rem;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.sidebar-card.dark { background: var(--navy-800); color: var(--white); border: none; }
.sidebar-card.dark h4 { color: var(--white); margin-bottom: 1rem; }
.sidebar-card.dark p { color: rgba(255,255,255,0.75); font-size: 0.92rem; margin-bottom: 1.2rem; }
.sidebar-card.dark .btn { width: 100%; }
.sidebar-phone {
  font-family: 'Archivo';
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--orange-400);
  letter-spacing: -0.01em;
  display: block;
  margin: 0.5rem 0;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-card { max-width: 480px; }
  .services-grid, .testimonials-grid, .blog-grid, .info-cards { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process-grid::before { display: none; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
  .footer-grid > div:nth-child(n+4) { grid-column: span 1; }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split-visual { aspect-ratio: 16 / 9; }
  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .cta-band .container { grid-template-columns: 1fr; }
  .cta-band-actions, .cta-band-phone { text-align: left; justify-content: flex-start; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .section-lg { padding: 5rem 0; }
  .topbar-left { display: none; }
  .topbar .container { justify-content: center; }
  .nav { display: none; }
  .menu-toggle { display: grid; }
  .header-cta .btn-secondary { display: none; }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 1.5rem; margin-bottom: 0.5rem; }
  .services-grid, .testimonials-grid, .blog-grid, .info-cards { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
  .hero { padding: 3rem 0 4rem; }
  .trust-strip .container { justify-content: center; }
  .trust-badges { gap: 1.5rem; justify-content: center; }
}

@media (max-width: 480px) {
  .areas-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--navy-900);
  z-index: 200;
  padding: 2rem 1.5rem;
  transition: right 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: grid;
  place-items: center;
}
.mobile-menu nav { margin-top: 4rem; display: grid; gap: 0.4rem; }
.mobile-menu a {
  color: var(--white);
  font-weight: 600;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-size: 1.05rem;
  transition: background 0.2s var(--ease);
}
.mobile-menu a:hover, .mobile-menu a.active { background: rgba(255,255,255,0.06); color: var(--orange-400); }
.mobile-menu .btn { margin-top: 1.5rem; }
.menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}
.menu-backdrop.show { opacity: 1; visibility: visible; }
