/* ============================================================
   PRINCIPAL ROOFING — DESIGN SYSTEM
   Aurora, Ontario | principalroofing.ca
   ============================================================ */

:root {
  /* Brand Palette */
  --navy:          #0B1F3A;
  --navy-dark:     #060f21;
  --navy-mid:      #122a52;
  --navy-light:    #1a3860;
  --gold:          #C8860A;
  --gold-light:    #E5A020;
  --gold-pale:     #FDF6E3;
  --gold-border:   rgba(200,134,10,0.3);
  --red:           #C0392B;
  --red-dark:      #922B21;
  --white:         #FFFFFF;
  --off-white:     #F7F9FC;
  --grey-light:    #EEF1F5;
  --grey-mid:      #8C95A4;
  --slate-text:    #2C3545;
  --body-text:     #4A5568;
  --border:        #DDE3ED;
  --green:         #27AE60;
  --whatsapp:      #25D366;

  /* Typography */
  --font-display:  'Outfit', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Sizing */
  --container-max: 1240px;
  --nav-height:    78px;
  --topbar-h:      40px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(11,31,58,0.07);
  --shadow-md:  0 6px 24px rgba(11,31,58,0.10);
  --shadow-lg:  0 16px 48px rgba(11,31,58,0.14);
  --shadow-xl:  0 24px 64px rgba(11,31,58,0.18);
  --shadow-gold: 0 8px 32px rgba(200,134,10,0.25);

  /* Radii */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  36px;
  --r-full: 9999px;

  /* Transitions */
  --ease:       all 0.3s cubic-bezier(0.4,0,0.2,1);
  --ease-fast:  all 0.18s ease-out;
  --ease-slow:  all 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--slate-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  padding-top: calc(var(--topbar-h) + var(--nav-height));
}

a { color: inherit; text-decoration: none; transition: var(--ease-fast); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: clamp(2.1rem, 5.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }
h5 { font-size: clamp(0.9rem, 1.8vw, 1.1rem); }

p { margin-bottom: 1rem; color: var(--body-text); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--body-text);
  line-height: 1.75;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 92%;
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
}

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,134,10,0.1);
  border: 1px solid var(--gold-border);
  padding: 0.35em 1em;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }

/* Grid Utilities */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85em 1.8em;
  border-radius: var(--r-full);
  transition: var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(200,134,10,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,134,10,0.45);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-secondary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.4);
}

.btn-lg { font-size: 1.05rem; padding: 1em 2.2em; }
.btn-sm { font-size: 0.85rem; padding: 0.6em 1.3em; }

.btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; fill: none; flex-shrink: 0; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-h);
  background: var(--navy-dark);
  display: flex;
  align-items: center;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--ease-fast);
}
.top-bar-item:hover { color: var(--gold-light); }
.top-bar-item svg { width: 13px; height: 13px; stroke: var(--gold); stroke-width: 2; flex-shrink: 0; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.top-bar-badge {
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2em 0.75em;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: var(--ease);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.nav-logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-text);
  padding: 0.5em 0.8em;
  border-radius: var(--r-sm);
  transition: var(--ease-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--grey-light);
}

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: var(--ease);
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate-text);
  border-radius: var(--r-sm);
  transition: var(--ease-fast);
}
.nav-dropdown a:hover {
  background: var(--grey-light);
  color: var(--navy);
  padding-left: 1.3rem;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}
.nav-phone:hover { color: var(--gold); }
.nav-phone svg { width: 16px; height: 16px; stroke: var(--gold); stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 90vw);
  height: 100dvh;
  background: var(--white);
  z-index: 2000;
  overflow-y: auto;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-xl);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open { right: 0; }
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--grey-light);
  color: var(--slate-text);
  font-size: 1.2rem;
  cursor: pointer;
}

.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-text);
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--grey-light);
  transition: var(--ease-fast);
}
.mobile-link:hover { color: var(--gold); padding-left: 1rem; }

.mobile-sub-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-mid);
  padding: 1rem 0.5rem 0.4rem;
}

.mobile-sub-link {
  display: block;
  font-size: 0.88rem;
  color: var(--body-text);
  padding: 0.55rem 0.5rem 0.55rem 1rem;
  border-bottom: 1px solid var(--grey-light);
  transition: var(--ease-fast);
}
.mobile-sub-link:hover { color: var(--gold); }

.mobile-cta-group {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--slate-text);
  font-size: 0.9rem;
  padding: 0.5rem 0;
}
.mobile-contact svg { width: 17px; height: 17px; stroke: var(--gold); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,15,33,0.78) 0%,
    rgba(11,31,58,0.65) 50%,
    rgba(18,42,82,0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 3rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,134,10,0.18);
  border: 1px solid rgba(200,134,10,0.5);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.45em 1.2em;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 600;
}
.hero-trust-item svg { width: 17px; height: 17px; stroke: var(--gold); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--navy);
  padding: 1.4rem 0;
  overflow: hidden;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.87rem;
  font-weight: 600;
  padding: 0.5rem 2rem;
  font-family: var(--font-display);
}
.trust-item svg { width: 16px; height: 16px; stroke: var(--gold-light); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   AWARD BANNER
   ============================================================ */
.awards-strip {
  background: linear-gradient(135deg, var(--gold-pale) 0%, #fffdf5 100%);
  border-top: 1px solid rgba(200,134,10,0.2);
  border-bottom: 1px solid rgba(200,134,10,0.2);
  padding: 2rem 0;
  overflow: hidden;
}

.awards-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.award-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.award-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.award-icon svg { width: 26px; height: 26px; stroke: var(--gold); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.award-icon .fill-gold { fill: var(--gold); stroke: none; }

.award-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.award-text span {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}

.award-divider {
  width: 1px;
  height: 40px;
  background: rgba(200,134,10,0.25);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--grey-light);
}
.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img { transform: scale(1.05); }

.service-card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3em 0.8em;
  border-radius: var(--r-full);
}
.service-card-tag.emergency { background: var(--red); }

.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--gold); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.service-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.service-card-body p {
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 1.25rem;
  transition: var(--ease-fast);
}
.service-link:hover { color: var(--navy); gap: 0.7rem; }
.service-link svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; transition: var(--ease-fast); }

/* ============================================================
   AWARDS LOGOS BAR (TRUST BUILDER)
   ============================================================ */
.awards-logos-bar {
  background: var(--off-white);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.awards-logos-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.award-logo-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  flex: 1;
  min-width: 250px;
  max-width: 290px;
  transition: var(--ease);
}
.award-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}
.award-logo-graphic {
  width: 60px;
  height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.award-logo-graphic img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.award-logo-info {
  display: flex;
  flex-direction: column;
}
.award-logo-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.award-logo-subtitle {
  font-size: 0.75rem;
  color: var(--grey-mid);
  margin-top: 0.2rem;
  font-weight: 500;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,134,10,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ============================================================
   WHY CHOOSE US / ABOUT
   ============================================================ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
}

.about-img-decor {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--r-lg);
  z-index: -1;
  opacity: 0.25;
}

.about-badge-float {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
}
.about-badge-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-badge-icon svg { width: 22px; height: 22px; fill: var(--white); }
.about-badge-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.about-badge-text span {
  font-size: 0.75rem;
  color: var(--grey-mid);
}

.about-content { max-width: 560px; }
.about-content h2 { margin-bottom: 1.25rem; }

.about-features { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.25rem; }

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-bullet {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-bullet svg { width: 14px; height: 14px; stroke: var(--white); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.feature-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.feature-text p { font-size: 0.9rem; margin: 0; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--off-white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 3px;
}
.review-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  stroke: none;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--body-text);
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-light);
}

.review-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--grey-mid);
}

.stars { display: flex; gap: 4px; }
.star { color: var(--gold); font-size: 1.1rem; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--body-text);
}
.g-icon { flex-shrink: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--white); }

.gallery-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5em 1.3em;
  border-radius: var(--r-full);
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--slate-text);
  cursor: pointer;
  transition: var(--ease-fast);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 4/3;
  background: var(--grey-light);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(11,31,58,0.85), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-display);
  transform: translateY(100%);
  transition: var(--ease);
}
.gallery-item:hover .gallery-item-label { transform: translateY(0); }

/* Gallery Large Item */
.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content { position: relative; z-index: 1; }

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 { margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--gold); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.contact-detail-text a, .contact-detail-text span {
  font-size: 0.9rem;
  color: var(--body-text);
}
.contact-detail-text a:hover { color: var(--gold); }

.contact-hours {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.25rem;
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--grey-light);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--slate-text); }
.hours-time { color: var(--body-text); }
.hours-time.closed { color: var(--red); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.75rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-text);
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85em 1em;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--slate-text);
  background: var(--white);
  transition: var(--ease-fast);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,58,0.08);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Calendar */
.calendar-wrap {
  margin: 2rem 0 1.5rem;
}
.calendar-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.calendar-title svg { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.calendar {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  background: var(--navy);
  color: var(--white);
}
.cal-header-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}
.cal-nav-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--ease-fast);
}
.cal-nav-btn:hover { background: rgba(255,255,255,0.2); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}
.cal-day-header {
  text-align: center;
  padding: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey-mid);
  background: var(--grey-light);
  border-bottom: 1px solid var(--border);
}
.cal-day {
  text-align: center;
  padding: 0.55rem;
  font-size: 0.85rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--ease-fast);
  color: var(--slate-text);
}
.cal-day:hover:not(.disabled):not(.empty) {
  background: var(--gold-pale);
  color: var(--navy);
}
.cal-day.today {
  background: var(--grey-light);
  font-weight: 700;
}
.cal-day.selected {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-sm);
  font-weight: 700;
}
.cal-day.disabled {
  color: var(--border);
  cursor: not-allowed;
}
.cal-day.empty { cursor: default; }

.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}
.time-slot {
  padding: 0.5em;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--ease-fast);
  font-family: var(--font-display);
}
.time-slot:hover { border-color: var(--navy); color: var(--navy); }
.time-slot.selected {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ============================================================
   ROOF COLORS VISUALIZER
   ============================================================ */
.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.color-card {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--ease);
}
.color-card:hover { border-color: var(--navy); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.color-card.selected { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,134,10,0.25); }

.color-swatch {
  height: 100px;
}
.color-card-info {
  padding: 0.75rem;
  background: var(--white);
}
.color-card-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.color-card-info span {
  font-size: 0.75rem;
  color: var(--grey-mid);
}

/* ============================================================
   LOCATION HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-bg-art {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  pointer-events: none;
}

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 2rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================================
   LOCATIONS GRID
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.location-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: var(--ease);
  text-decoration: none;
  display: block;
}
.location-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.location-card h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.location-card p {
  font-size: 0.82rem;
  color: var(--grey-mid);
  margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--off-white); }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--ease-fast);
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 22px;
  height: 22px;
  background: var(--grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--navy); color: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--body-text);
  line-height: 1.75;
}

/* ============================================================
   ESTIMATE GUIDE
   ============================================================ */
.estimate-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.estimate-table thead {
  background: var(--navy);
  color: var(--white);
}

.estimate-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
}

.estimate-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--ease-fast);
}
.estimate-table tbody tr:hover { background: var(--off-white); }
.estimate-table tbody tr:last-child { border-bottom: none; }

.estimate-table td {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--slate-text);
  vertical-align: middle;
}
.estimate-table td:first-child { font-weight: 600; color: var(--navy); }
.estimate-table .best { color: var(--green); font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding-top: 4rem;
  position: relative;
  overflow: hidden;
}

/* Roofline SVG Art */
.footer-art {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  opacity: 0.06;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease-fast);
}
.social-btn:hover { background: var(--gold); transform: translateY(-3px); }
.social-btn svg { width: 17px; height: 17px; stroke: var(--white); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.footer-col h5 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--ease-fast);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 0.3rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.75rem;
}
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--gold); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  order: 1;
}
.footer-bottom-text a { color: rgba(255,255,255,0.55); }
.footer-bottom-text a:hover { color: var(--gold-light); }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  order: 2;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: var(--ease-fast);
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* Disclaimer note */
.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 0.75rem;
  width: 100%;
  order: 3;
}

/* ============================================================
   FLOATING WIDGETS
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 900;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.12); }

.float-btn-call {
  background: var(--gold);
}
.float-btn-call svg { width: 22px; height: 22px; stroke: var(--white); stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}

.legal-content h1 { margin-bottom: 0.5rem; }
.legal-date {
  font-size: 0.85rem;
  color: var(--grey-mid);
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p, .legal-content li {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.liability-box {
  background: var(--off-white);
  border: 2px solid var(--gold-border);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.92rem;
  color: var(--slate-text);
  line-height: 1.75;
}

/* ============================================================
   SERVICE PAGE SPECIFIC
   ============================================================ */
.service-hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.process-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-number {
  counter-increment: step;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-content strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.step-content p { font-size: 0.9rem; margin: 0; }

/* ============================================================
   SERVICE PAGES — Hero Image
   ============================================================ */
.service-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  display: block;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  padding-bottom: 2rem;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-border), transparent);
}
.process-step:last-child::before { display: none; }

.step-number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.step-content strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-text);
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
}

.step-content p {
  font-size: 0.92rem;
  color: var(--body-text);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   LOCATION CARDS
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.location-card {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-decoration: none;
  color: var(--slate-text);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.location-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--slate-text);
}

.location-card:hover::before {
  transform: scaleY(1);
}

.location-card h4 {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.location-card p {
  font-size: 0.82rem;
  color: var(--grey-mid);
  margin: 0;
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  stroke: var(--gold);
  stroke-width: 1;
}

.review-text {
  font-size: 0.92rem;
  color: var(--body-text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--slate-text);
}

.review-meta {
  font-size: 0.78rem;
  color: var(--grey-mid);
}

/* ============================================================
   GALLERY FILTER
   ============================================================ */
.gallery-filter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: var(--r-full);
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--body-text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  width: 36px;
  height: 36px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(11,31,58,0.85));
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-label {
  transform: translateY(0);
}

.gallery-section {
  background: var(--off-white);
}

/* ============================================================
   BUTTON VARIANTS (additional)
   ============================================================ */
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  transition: var(--ease);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  transition: var(--ease);
  box-shadow: 0 4px 16px rgba(192,57,43,0.35);
}

.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.btn-red svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  body { padding-top: calc(var(--topbar-h) + var(--nav-height)); }

  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; margin-bottom: 2rem; }
  .about-img {
    height: 440px;
    object-position: center 15%;
  }
  .about-badge-float {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 90%;
    padding: 0.75rem 1rem;
  }
  .about-content { max-width: 100%; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(2n) { border-bottom: none; }

  .reviews-grid { grid-template-columns: 1fr; }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    order: -1;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .locations-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 1; aspect-ratio: 4/3; }

  .reviews-grid { grid-template-columns: 1fr; }

  .service-hero-img { height: 300px; }

  .process-step { gap: 1rem; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .trust-divider { display: none; }
  .trust-item { padding: 0.4rem 1rem; }

  .awards-inner { gap: 1.5rem; }
  .award-divider { display: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .time-slots { grid-template-columns: repeat(3, 1fr); }

  .section-pad { padding: 60px 0; }
}

@media (max-width: 768px) {
  :root { --topbar-h: 0px !important; }
  .top-bar { display: none !important; }
  .navbar { top: 0 !important; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  :root { --nav-height: 64px; }

  body { padding-top: var(--nav-height); }

  .nav-logo-img { height: 40px; }

  .hero { padding: 4.5rem 0 3rem; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-trust { gap: 1rem; }

  .services-grid { grid-template-columns: 1fr; }

  .stats-section { padding: 2.5rem 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .awards-logos-bar { padding: 1.5rem 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand, .footer-col:last-child { grid-column: span 2; }
  .footer-brand { max-width: 100%; }

  .gallery-grid { grid-template-columns: 1fr; }

  .locations-grid { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 1.25rem; }

  .section-pad { padding: 32px 0; }

  .page-hero { padding: 3rem 0 2.5rem; }

  .cta-section { padding: 3rem 0; }
  .cta-actions { flex-direction: column; align-items: center; }

  .footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
  }
  .footer-bottom-text {
    font-size: 0.75rem;
    order: 1;
    width: 100%;
    margin: 0;
  }
  .footer-bottom-links {
    font-size: 0.75rem;
    order: 2;
    width: 100%;
    justify-content: center;
    gap: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.68rem;
    width: 100%;
    order: 3;
    margin-top: 0.4rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    line-height: 1.5;
  }

  .estimate-table { font-size: 0.8rem; }
  .estimate-table th, .estimate-table td { padding: 0.65rem 0.75rem; }

  .float-cta { bottom: 1rem; right: 1rem; }
}
