/* =========================================================
   AJR CONTRACTORS — OFFICIAL STYLESHEET
   Chicago & Chicagoland Premier Contracting, Masonry & Flooring
   Authentic Craftsman Aesthetic (Zero Neon, Natural & Grounded)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  /* Brand Craftsman Foundation (Deep Architectural Slate & Navy) */
  --craft-navy: #182A3A;
  --craft-navy-dark: #0F1C28;
  --craft-navy-deep: #0B151F;
  --craft-navy-light: #254058;
  --craft-navy-soft: #EEF3F8;
  --craft-navy-glow: rgba(24, 42, 58, 0.06);

  /* Earthy Warm Heritage Amber / Terracotta Accent (Zero neon, rich stone & brick tone) */
  --accent-warm: #B85D19;
  --accent-hover: #9C4D11;
  --accent-light: #FDF6F0;
  --accent-border: #E8CDBB;
  --accent-glow: rgba(184, 93, 25, 0.1);

  /* Aliases for backwards compatibility */
  --royal-blue: var(--craft-navy);
  --royal-blue-dark: var(--craft-navy-dark);
  --royal-blue-deep: var(--craft-navy-deep);
  --royal-blue-light: var(--craft-navy-light);
  --royal-blue-soft: var(--craft-navy-soft);
  --royal-blue-glow: var(--craft-navy-glow);

  --orange-accent: var(--accent-warm);
  --orange-hover: var(--accent-hover);
  --orange-light: var(--accent-light);
  --orange-glow: var(--accent-glow);
  --orange-border: var(--accent-border);

  /* Slate, Stone & Charcoal Palette */
  --grey-black: #0E141C;
  --grey-darkest: #151F2B;
  --grey-dark: #1E2B3B;
  --grey-charcoal: #334155;
  --grey-slate: #475569;
  --grey-muted: #64748B;
  --grey-light-muted: #94A3B8;
  --grey-border: #E2E8F0;
  --grey-border-light: #F1F5F9;
  --grey-bg: #F8FAFC;
  --grey-card-bg: #FFFFFF;

  /* Surfaces & Ink */
  --white: #FFFFFF;
  --ink-primary: #0F172A;
  --ink-secondary: #334155;
  --ink-muted: #64748B;

  /* Feedback Colors */
  --success: #2E7D32;
  --warning: #C05621;
  --yelp-red: #D32323;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Natural, Subtle Shadows — No Fluorescent Glows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 6px 16px rgba(15, 23, 42, 0.07), 0 2px 6px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 12px 28px rgba(15, 23, 42, 0.09), 0 4px 10px rgba(15, 23, 42, 0.03);
  --shadow-xl: 0 20px 40px rgba(15, 23, 42, 0.12);
  --shadow-blue: 0 4px 12px rgba(24, 42, 58, 0.12);
  --shadow-orange: 0 4px 12px rgba(184, 93, 25, 0.15);
}

/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--ink-secondary);
  background-color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--craft-navy);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--accent-warm);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--grey-darkest);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.015em;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-fluid {
  width: 100%;
  padding: 0 1.5rem;
}

/* =========================================================
   UTILITY BAR (TOPBAR)
   ========================================================= */
.topbar {
  background: var(--grey-black);
  color: #94A3B8;
  font-size: 0.84rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1001;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  flex-wrap: wrap;
  padding-top: 4px;
  padding-bottom: 4px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #CBD5E1;
}

.topbar-item svg {
  color: #D4803A;
  flex-shrink: 0;
}

.topbar a.topbar-item:hover {
  color: var(--white);
}

.topbar-yelp {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(211, 35, 35, 0.12);
  border: 1px solid rgba(211, 35, 35, 0.3);
  color: #FFA4A4;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.78rem;
  transition: all 0.2s ease;
}

.topbar-yelp svg {
  color: #FF5A5A;
}

.topbar-yelp:hover {
  background: var(--yelp-red);
  color: var(--white);
  border-color: var(--yelp-red);
}

.topbar-phone {
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.9rem;
}

.topbar-phone svg {
  color: #D4803A;
}

.topbar-phone:hover {
  color: #F0A060 !important;
}

/* =========================================================
   MAIN HEADER & NAVIGATION
   ========================================================= */
.main-header {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--grey-border);
  transition: box-shadow 0.25s ease;
}

.main-header.scrolled {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding-top: 0;
  padding-bottom: 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.brand-logo-img {
  height: 62px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 72px;
  }
  .brand-logo-img {
    height: 48px;
  }
  .logo-title {
    font-size: 1.15rem;
  }
  .logo-tagline {
    font-size: 0.62rem;
  }
}

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--craft-navy);
  border-radius: var(--radius-md);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.logo-badge::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: var(--accent-warm);
}

.logo-badge svg {
  width: 24px;
  height: 24px;
}

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

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--grey-darkest);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.logo-title span {
  color: var(--accent-warm);
}

.logo-tagline {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-muted);
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--grey-dark);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-warm);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-warm);
  border-radius: var(--radius-full);
}

/* Dropdown Navigation */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-border);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem 0.4rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 1000;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  color: var(--grey-dark);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.15s ease;
}

.dropdown-item-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--craft-navy-soft);
  color: var(--craft-navy);
  border-radius: var(--radius-xs);
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.dropdown-item:hover {
  background: var(--grey-bg);
  color: var(--accent-warm);
}

.dropdown-item:hover .dropdown-item-icon {
  background: var(--accent-warm);
  color: var(--white);
}

.nav-cta-btn {
  background: var(--accent-warm);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s ease, transform 0.15s ease;
}

.nav-cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: space-around;
  z-index: 1002;
}

.menu-toggle span {
  width: 100%;
  height: 2.5px;
  background: var(--grey-darkest);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================================
   BUTTONS & BADGES
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.96rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background: var(--accent-warm);
  color: var(--white);
  border-color: var(--accent-warm);
  box-shadow: var(--shadow-xs);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--craft-navy);
  color: var(--white);
  border-color: var(--craft-navy);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: var(--craft-navy-dark);
  border-color: var(--craft-navy-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--grey-darkest);
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--craft-navy);
  border: 1px solid var(--grey-border);
}

.btn-outline-blue:hover {
  background: var(--grey-bg);
  border-color: var(--craft-navy);
  color: var(--craft-navy);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.86rem;
  border-radius: var(--radius-xs);
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1.02rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  width: 100%;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-xs);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-orange {
  background: var(--accent-light);
  color: var(--accent-warm);
  border: 1px solid var(--accent-border);
}

.badge-blue {
  background: var(--craft-navy-soft);
  color: var(--craft-navy);
  border: 1px solid #CBD5E1;
}

.badge-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-experience {
  background: var(--accent-warm);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Section Header Styles */
.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3rem auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-warm);
  margin-bottom: 0.6rem;
}

.section-eyebrow.orange {
  color: #D4803A;
}

.section-title {
  font-size: 2.3rem;
  color: var(--grey-darkest);
  margin-bottom: 0.85rem;
  font-weight: 750;
}

.section-title span {
  color: var(--craft-navy);
}

.section-title.title-white {
  color: var(--white);
}

.section-title.title-white span {
  color: #F0A060;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--grey-slate);
  line-height: 1.65;
}

.section-desc.desc-white {
  color: #CBD5E1;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: var(--grey-darkest);
  color: var(--white);
  padding: 4.5rem 0 5rem 0;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 20, 28, 0.94) 0%,
    rgba(14, 20, 28, 0.84) 55%,
    rgba(14, 20, 28, 0.58) 100%
  );
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  font-weight: 800;
}

.hero-title .text-gradient-orange {
  color: #F0A060;
}

.hero-title .text-royal-blue {
  color: #CBDCEB;
}

.hero-sub {
  font-size: 1.1rem;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 1.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-trust-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 1px;
}

.hero-trust-text {
  display: flex;
  flex-direction: column;
}

.hero-trust-text strong {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.1;
}

.hero-trust-text span {
  font-size: 0.75rem;
  color: #94A3B8;
}

/* Hero Quick Estimate Card */
.hero-card {
  background: #1B2634;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-card-header {
  margin-bottom: 1.25rem;
  text-align: center;
}

.hero-card-title {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.hero-card-sub {
  font-size: 0.85rem;
  color: #94A3B8;
}

/* =========================================================
   PAGE HERO (INNER PAGES)
   ========================================================= */
.page-hero {
  position: relative;
  background: var(--grey-darkest);
  color: var(--white);
  padding: 4rem 0;
  border-bottom: 3px solid var(--accent-warm);
  overflow: hidden;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: #94A3B8;
  margin-bottom: 0.85rem;
}

.breadcrumbs a {
  color: #CBD5E1;
}
.breadcrumbs a:hover {
  color: #F0A060;
}

.page-hero-title {
  font-size: 2.6rem;
  color: var(--white);
  margin-bottom: 0.85rem;
  font-weight: 800;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: #CBD5E1;
  line-height: 1.65;
}

/* =========================================================
   EXPERIENCE / STATS STRIP
   ========================================================= */
.stats-strip {
  background: var(--grey-black);
  color: var(--white);
  padding: 2.5rem 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:last-child {
  border-right: none;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4803A;
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.82rem;
  color: #94A3B8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =========================================================
   4 MAIN SERVICE PILLARS (HOME & OVERVIEW)
   ========================================================= */
.section-services {
  padding: 5rem 0;
  background: var(--grey-bg);
}

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

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-border);
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.pillar-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pillar-card:hover .pillar-media img {
  transform: scale(1.03);
}

.pillar-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--craft-navy);
  color: var(--white);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-xs);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pillar-badge.orange {
  background: var(--accent-warm);
}

.pillar-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pillar-title {
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
  color: var(--grey-darkest);
}

.pillar-desc {
  font-size: 0.94rem;
  color: var(--grey-slate);
  margin-bottom: 1.25rem;
}

.pillar-subservices {
  list-style: none;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.pillar-subservice-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--grey-dark);
}

.pillar-subservice-item svg {
  color: var(--accent-warm);
  flex-shrink: 0;
}

.pillar-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid var(--grey-border-light);
}

/* =========================================================
   SERVICES DETAIL GRID (ALL 15 SERVICES)
   ========================================================= */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-box {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--craft-navy-light);
}

.service-box-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--craft-navy-soft);
  color: var(--craft-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}

.service-box:hover .service-box-icon {
  background: var(--craft-navy);
  color: var(--white);
}

.service-box-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--grey-darkest);
}

.service-box-desc {
  font-size: 0.9rem;
  color: var(--grey-slate);
  margin-bottom: 1rem;
}

.service-box-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.85rem;
}

.service-tag {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  background: var(--grey-bg);
  color: var(--grey-charcoal);
  border-radius: var(--radius-xs);
  border: 1px solid var(--grey-border);
}

/* =========================================================
   WHY CHOOSE AJR (30 YEARS TRUST)
   ========================================================= */
.section-why {
  padding: 5rem 0;
  background: var(--white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.why-media {
  position: relative;
}

.why-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.why-floating-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--grey-darkest);
  color: var(--white);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 240px;
}

.why-floating-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #F0A060;
  line-height: 1;
}

.why-floating-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #CBD5E1;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.why-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.why-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  color: var(--accent-warm);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--grey-darkest);
}

.why-feature-content p {
  font-size: 0.9rem;
  color: var(--grey-slate);
}

/* =========================================================
   INTERACTIVE COST ESTIMATOR / PROJECT CALCULATOR
   ========================================================= */
.section-calculator {
  padding: 5rem 0;
  background: var(--grey-darkest);
  color: var(--white);
  position: relative;
}

.calculator-wrapper {
  background: #1C2735;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

.calc-group {
  margin-bottom: 1.5rem;
}

.calc-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 0.5rem;
}

.calc-select, .calc-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #131D28;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.96rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.calc-select:focus, .calc-input:focus {
  border-color: #D4803A;
}

.calc-range-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-range-val {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #CBD5E1;
}

.calc-range {
  width: 100%;
  accent-color: var(--accent-warm);
  cursor: pointer;
}

.calc-result-box {
  background: #141E2A;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.calc-result-title {
  font-size: 0.95rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.calc-result-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #F0A060;
  line-height: 1.1;
  margin-bottom: 0.65rem;
}

.calc-result-note {
  font-size: 0.82rem;
  color: #94A3B8;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* =========================================================
   BEFORE & AFTER INTERACTIVE SLIDER
   ========================================================= */
.section-before-after {
  padding: 5rem 0;
  background: var(--white);
}

.ba-container {
  position: relative;
  width: 100%;
  max-width: 920px;
  height: 460px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-border);
  user-select: none;
}

.ba-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.ba-before img {
  position: absolute;
  top: 0;
  left: 0;
  width: 920px;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  cursor: ew-resize;
  z-index: 3;
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
  transform: translateX(-50%);
}

.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background: var(--accent-warm);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--white);
}

.ba-label {
  position: absolute;
  top: 1rem;
  padding: 0.3rem 0.75rem;
  background: rgba(14, 20, 28, 0.8);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-xs);
  letter-spacing: 0.05em;
  z-index: 4;
}

.ba-label-before {
  left: 1rem;
}

.ba-label-after {
  right: 1rem;
}

/* =========================================================
   GALLERY & PORTFOLIO
   ========================================================= */
.section-gallery {
  padding: 5rem 0;
  background: var(--grey-bg);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-xs);
  background: var(--white);
  color: var(--grey-dark);
  border: 1px solid var(--grey-border);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--craft-navy);
  color: var(--craft-navy);
}

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

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: auto;
  aspect-ratio: 4/3;
  background: var(--grey-darkest);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--grey-border);
  transition: all 0.25s ease;
}

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 20, 28, 0.9) 0%, rgba(14, 20, 28, 0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.gallery-item-category {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #F0A060;
  margin-bottom: 0.25rem;
}

.gallery-item-title {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 20, 28, 0.94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 860px;
  width: 100%;
  background: var(--grey-darkest);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #000;
}

.lightbox-details {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--grey-darkest);
  color: var(--white);
}

.lightbox-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(14, 20, 28, 0.8);
  color: var(--white);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--accent-warm);
}

/* =========================================================
   REVIEWS & YELP TESTIMONIALS
   ========================================================= */
.section-reviews {
  padding: 5rem 0;
  background: var(--white);
}

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

.review-card {
  background: var(--grey-bg);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--grey-border);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: #CBD5E1;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.review-stars {
  color: #F59E0B;
  font-size: 1.05rem;
}

.review-yelp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--yelp-red);
}

.review-text {
  font-size: 0.94rem;
  color: var(--grey-charcoal);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

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

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--craft-navy);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.review-meta h5 {
  font-size: 0.92rem;
  color: var(--grey-darkest);
  margin-bottom: 0.1rem;
}

.review-meta span {
  font-size: 0.76rem;
  color: var(--grey-muted);
}

/* =========================================================
   CHICAGO SERVICE AREAS SECTION & MAP
   ========================================================= */
.section-service-areas {
  padding: 5rem 0;
  background: var(--grey-bg);
}

.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.map-card {
  background: var(--white);
  padding: 0.6rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-border);
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  display: block;
}

.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin: 1.25rem 0 1.75rem 0;
}

.neighborhood-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-xs);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--grey-dark);
}

.neighborhood-pill svg {
  color: var(--accent-warm);
  flex-shrink: 0;
}

/* =========================================================
   PROCESS SECTION (4 STEPS)
   ========================================================= */
.section-process {
  padding: 5rem 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-card {
  background: var(--grey-bg);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-border);
  position: relative;
  transition: all 0.2s ease;
}

.process-card:hover {
  transform: translateY(-2px);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-color: #CBD5E1;
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #CBD5E1;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process-title {
  font-size: 1.18rem;
  margin-bottom: 0.6rem;
  color: var(--grey-darkest);
}

.process-desc {
  font-size: 0.9rem;
  color: var(--grey-slate);
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.section-faq {
  padding: 5rem 0;
  background: var(--grey-bg);
}

.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: #94A3B8;
  box-shadow: var(--shadow-xs);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--grey-darkest);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grey-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--craft-navy);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--craft-navy);
  color: var(--white);
}

.faq-answer {
  padding: 0 1.4rem 1.2rem 1.4rem;
  font-size: 0.92rem;
  color: var(--grey-slate);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* =========================================================
   CONTACT & ESTIMATE FORMS
   ========================================================= */
.section-contact {
  padding: 5rem 0;
  background: var(--white);
}

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

.contact-info-card {
  background: var(--grey-darkest);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-header h3 {
  color: var(--white);
  font-size: 1.65rem;
  margin-bottom: 0.65rem;
}

.contact-info-header p {
  color: #CBD5E1;
  font-size: 0.94rem;
  margin-bottom: 1.75rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #D4803A;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item h6 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94A3B8;
  margin-bottom: 0.15rem;
}

.contact-detail-item a, .contact-detail-item p {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.contact-detail-item a:hover {
  color: #F0A060;
}

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

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--grey-dark);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.94rem;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-sm);
  background: var(--grey-bg);
  color: var(--grey-darkest);
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-control:focus {
  border-color: var(--craft-navy);
  background: var(--white);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: var(--grey-slate);
  cursor: pointer;
}

.checkbox-label input {
  accent-color: var(--accent-warm);
  width: 15px;
  height: 15px;
}

/* =========================================================
   CTA STRIP
   ========================================================= */
.section-cta-strip {
  background: var(--craft-navy-dark);
  color: var(--white);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.cta-strip-content h2 {
  color: var(--white);
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}

.cta-strip-content p {
  color: #CBD5E1;
  font-size: 1.05rem;
}

.cta-strip-actions {
  display: flex;
  gap: 0.85rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   ========================================================= */
.main-footer {
  background: var(--grey-black);
  color: #94A3B8;
  padding: 4.5rem 0 2rem 0;
  border-top: 3px solid var(--accent-warm);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent-warm);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  color: #94A3B8;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #CBD5E1;
  font-size: 0.88rem;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-links a:hover {
  color: #F0A060;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: #CBD5E1;
}

.footer-contact-item svg {
  color: #D4803A;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: #CBD5E1;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-yelp-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1.25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: #D4803A;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #F0A060;
  text-decoration: underline;
}

/* =========================================================
   FLOATING ACTION BUTTON & TOAST NOTIFICATION
   ========================================================= */
.floating-call-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent-warm);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 999;
  transition: background 0.2s ease, transform 0.15s ease;
}

.floating-call-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  color: var(--white);
}

/* Toast Message */
.toast-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--grey-darkest);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--accent-warm);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3000;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-notice.toast-success {
  border-color: #2b8a3e;
}

.toast-notice.toast-error {
  border-color: #e53e3e;
}

/* Inline Form Feedback */
.form-feedback {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  line-height: 1.45;
  animation: fadeIn 0.25s ease-in-out;
}

.form-feedback.success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}

.form-feedback.error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-card {
    max-width: 540px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .services-full-grid, .gallery-grid, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-inner, .calculator-wrapper, .areas-layout, .contact-layout {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Container & Global Spacing */
  .container {
    padding: 0 1.25rem;
  }
  .section-services,
  .section-why,
  .section-reviews,
  .section-service-areas,
  .section-gallery,
  .section-faq,
  .section-cta-strip,
  .section-calculator,
  .section-before-after,
  .section-process,
  .section-contact {
    padding: 3.25rem 0 !important;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }
  .section-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Navigation & Mobile Drawer */
  .topbar {
    display: none;
  }
  .header-inner {
    min-height: 64px;
  }
  .brand-logo img, .brand-logo-mark {
    height: 38px !important;
    max-width: 190px !important;
  }
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 0;
    align-items: stretch;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--grey-darkest);
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--grey-border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .main-nav .nav-link:hover,
  .main-nav .nav-link.active {
    color: #000000;
    background: #fffde6;
    padding-left: 0.75rem;
    border-radius: var(--radius-xs);
  }
  .main-nav .nav-cta-btn {
    margin-top: 1.25rem;
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }
  .nav-item-dropdown {
    width: 100%;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    padding-left: 0.75rem;
    background: var(--grey-bg);
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    padding: 3rem 0 3.5rem 0;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .hero-title br {
    display: none;
  }
  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-trust-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding-top: 1rem;
  }
  .hero-card {
    padding: 1.5rem 1.25rem;
    max-width: 100%;
    border-radius: var(--radius-md);
  }
  .hero-card-title {
    font-size: 1.3rem;
  }

  /* Stats Strip */
  .stats-strip {
    padding: 2rem 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .stat-card {
    padding: 0.75rem 0.5rem;
    border-right: none;
    border-bottom: none;
    gap: 0.75rem;
  }
  .stat-number {
    font-size: 1.75rem;
  }
  .stat-icon {
    width: 40px;
    height: 40px;
  }
  .stat-label {
    font-size: 0.75rem;
  }

  /* Service Pillars */
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pillar-media {
    height: 190px;
  }
  .pillar-body {
    padding: 1.25rem;
  }
  .pillar-title {
    font-size: 1.25rem;
  }
  .pillar-subservices {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .pillar-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .pillar-footer .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Why Choose Section */
  .why-img-main {
    height: 260px;
  }
  .why-floating-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
    padding: 1.25rem;
  }
  .why-features {
    gap: 1rem;
    margin-top: 1.25rem;
  }

  /* Reviews & Areas */
  .services-full-grid, .reviews-grid, .process-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .gallery-item {
    border-radius: 8px;
    height: auto;
    aspect-ratio: 4/3;
  }
  .review-card {
    padding: 1.25rem;
  }
  .neighborhoods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .neighborhood-pill {
    font-size: 0.82rem;
    padding: 0.45rem 0.65rem;
  }
  .map-card iframe {
    height: 280px;
  }

  /* FAQ */
  .faq-question {
    padding: 1rem 1.15rem;
    font-size: 0.95rem;
  }
  .faq-answer {
    padding: 0 1.15rem 1.15rem 1.15rem;
    font-size: 0.88rem;
  }

  /* CTA Strip */
  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .cta-strip-content h2 {
    font-size: 1.6rem;
  }
  .cta-strip-content p {
    font-size: 0.95rem;
  }
  .cta-strip-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }
  .cta-strip-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .main-footer {
    padding: 3rem 0 5.5rem 0;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .form-grid-2, .checkbox-group {
    grid-template-columns: 1fr;
  }
  .ba-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .hero-title {
    font-size: 1.65rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .gallery-item {
    border-radius: 6px;
    height: auto;
    aspect-ratio: 4/3;
  }
  .neighborhoods-grid {
    grid-template-columns: 1fr;
  }
  .floating-call-btn {
    bottom: 1rem;
    right: 1rem;
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
  }
}

/* ===== Shared components (components.js) ===== */
app-header, app-footer { display: contents; }
.brand-logo-mark { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: var(--accent-warm); color: #fff; flex: 0 0 auto; }
/* A client logo dropped into the brand link by the generator: sized here so
   an unstyled <img> can never render at its natural (screen-covering) size. */
.brand-logo img { display: block; height: 62px; width: auto; max-width: 240px; object-fit: contain; }
.main-footer .brand-logo img { height: 52px; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
