/* ================================================
   ALERT PIONEER PLUMBING — STYLESHEET
   style.css

   Color Palette:
   --navy        #0B1F3A  Primary dark / backgrounds
   --navy-mid    #142B50  Slightly lighter navy
   --amber       #F5A623  Accent / CTAs / highlights
   --amber-dark  #D4891A  Hover state for amber
   --white       #FFFFFF  Cards, surfaces
   --bg          #F8F9FB  Page background
   --bg-alt      #EEF1F6  Alternating sections
   --text        #111827  Body text
   --text-muted  #6B7280  Subtext, labels
   --text-light  #9CA3AF  Placeholders, captions
   --border      #E5E7EB  Dividers, card borders
   --success     #16A34A  Form confirmation
================================================ */


/* ------------------------------------------------
   1. CSS VARIABLES
------------------------------------------------ */
:root {
  --navy:         #0B1F3A;
  --navy-mid:     #142B50;
  --navy-light:   #1E3A6E;
  --amber:        #F5A623;
  --amber-dark:   #D4891A;
  --amber-glow:   rgba(245, 166, 35, 0.15);
  --white:        #FFFFFF;
  --bg:           #F8F9FB;
  --bg-alt:       #EEF1F6;
  --text:         #111827;
  --text-muted:   #6B7280;
  --text-light:   #9CA3AF;
  --border:       #E5E7EB;
  --success:      #16A34A;

  --shadow-sm:    0 2px 8px rgba(11, 31, 58, 0.08);
  --shadow-md:    0 8px 32px rgba(11, 31, 58, 0.12);
  --shadow-lg:    0 20px 60px rgba(11, 31, 58, 0.18);

  --radius:       12px;
  --radius-lg:    20px;

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --transition:   all 0.3s var(--ease);

  --max-width:    1200px;
  --section-pad:  100px;
}


/* ------------------------------------------------
   2. RESET & BASE
------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: 'DM Sans', sans-serif; cursor: pointer; }


/* ------------------------------------------------
   3. LAYOUT UTILITIES
------------------------------------------------ */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 18px;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.accent { color: var(--amber); }


/* ------------------------------------------------
   4. BUTTONS
------------------------------------------------ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid var(--amber);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid var(--navy);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-primary-small {
  display: block;
  width: 100%;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 20px;
  border-radius: 6px;
  border: 2px solid var(--amber);
  text-align: center;
  transition: var(--transition);
}
.btn-primary-small:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-1px);
}

.btn-outline-small {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 20px;
  border-radius: 6px;
  border: 2px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.btn-outline-small:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.btn-submit {
  width: 100%;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px;
  border-radius: 8px;
  border: none;
  transition: var(--transition);
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}


/* ------------------------------------------------
   5. NAVIGATION
------------------------------------------------ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(11, 31, 58, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.7rem;
  color: var(--amber);
  line-height: 1;
}

.logo-text strong {
  display: block;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  line-height: 1.1;
}

.logo-text small {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  border-radius: 1px;
  transition: width 0.25s var(--ease);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 20px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  padding: 8px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.75);
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--amber); }

.mobile-menu .mobile-call {
  margin-top: 18px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  border-bottom: none;
}

.mobile-menu.open { display: flex; }


/* ------------------------------------------------
   6. HERO
------------------------------------------------ */
#hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 166, 35, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 166, 35, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 68%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 18px;
  border-radius: 100px;
  width: fit-content;
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.hero-accent { color: var(--amber); }

.hero-subtext {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 8px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px 14px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat:last-child { border-right: none; }

.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 5px;
}

.hero-stat span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.hero-image-panel { position: relative; }

.hero-image-placeholder {
  background: var(--navy-mid);
  border: 2px dashed rgba(245, 166, 35, 0.25);
  border-radius: var(--radius-lg);
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.28);
}

.image-label { font-size: 0.9rem; text-align: center; }

.hero-availability-card {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
}

.avail-dot {
  width: 12px; height: 12px;
  background: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-green 2s infinite;
}

.hero-image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
}

.hero-availability-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 700;
}

.hero-availability-card small {
  font-size: 0.73rem;
  color: var(--text-muted);
}


/* ------------------------------------------------
   7. TRUST BAR
------------------------------------------------ */
#trust-bar { background: var(--amber); }

.trust-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.trust-icon { font-size: 1.1rem; }

.trust-divider {
  width: 1px; height: 26px;
  background: rgba(11, 31, 58, 0.18);
  flex-shrink: 0;
}


/* ------------------------------------------------
   8. SERVICES
------------------------------------------------ */
#services {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon { font-size: 2.4rem; line-height: 1; }

.service-card h3 { font-size: 1.2rem; color: var(--navy); }

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.service-link {
  color: var(--amber);
  font-weight: 700;
  font-size: 0.88rem;
  transition: letter-spacing 0.2s;
  display: inline-block;
  margin-top: 4px;
}

.service-link:hover { letter-spacing: 0.04em; }


/* ------------------------------------------------
   9. WHY CHOOSE US
------------------------------------------------ */
#why-us {
  padding: var(--section-pad) 0;
  background: var(--navy);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left { text-align: center; }

.big-number {
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}

.big-number span {
  color: var(--amber);
  font-size: 4rem;
  vertical-align: top;
  line-height: 1.4;
}

.big-number-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  margin-top: 14px;
  line-height: 1.55;
}

.why-quote {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  text-align: left;
}

.why-quote blockquote {
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  font-size: 0.93rem;
  line-height: 1.65;
}

.why-quote cite {
  display: block;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 10px;
  font-style: normal;
  letter-spacing: 0.04em;
}

.why-right .section-label { display: block; text-align: left; }

.why-right h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 40px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 44px;
}

.why-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  min-width: 28px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 900;
  font-size: 0.82rem;
  border-radius: 50%;
  margin-top: 2px;
}

.why-list strong {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.why-list p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.87rem;
  line-height: 1.6;
}


/* ------------------------------------------------
   10. REVIEWS
------------------------------------------------ */
#reviews {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  align-items: start;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-featured {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.review-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.review-stars {
  color: var(--amber);
  font-size: 1.05rem;
  letter-spacing: 3px;
}

.review-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.review-featured .review-text { color: rgba(255, 255, 255, 0.7); }

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.review-featured .reviewer { border-top-color: rgba(255, 255, 255, 0.1); }

.reviewer-avatar {
  width: 40px; height: 40px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
}

.review-featured .reviewer strong { color: var(--white); }

.reviewer small { font-size: 0.73rem; color: var(--text-light); }

.review-featured .reviewer small { color: rgba(255, 255, 255, 0.38); }

.reviews-cta { text-align: center; }


/* ------------------------------------------------
   11. PRICING + QUOTE FORM
------------------------------------------------ */
#pricing {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.pricing-tiers {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--amber);
}

.pricing-popular {
  border-color: var(--amber);
  box-shadow: 0 0 0 2px var(--amber);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.pricing-price {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pricing-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: var(--navy);
}

.pricing-card > p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.pricing-features {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text);
}

.quote-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 88px;
}

.quote-form-wrapper h3 {
  font-size: 1.65rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.quote-form-wrapper > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  transition: var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--amber-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group textarea { resize: vertical; }

.form-disclaimer {
  font-size: 0.73rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
}

.form-success {
  text-align: center;
  padding: 48px 20px;
}

.success-icon { font-size: 3.2rem; margin-bottom: 18px; }

.form-success h4 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}


/* ------------------------------------------------
   12. ABOUT
------------------------------------------------ */
#about {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-col { position: relative; }

.about-image-placeholder {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.28);
  font-size: 1rem;
  border: 2px dashed rgba(255, 255, 255, 0.1);
}

.about-image{
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.about-badge-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 270px;
}

.badge-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.badge-row > span { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }

.badge-row strong {
  display: block;
  font-size: 0.87rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2px;
}

.badge-row small { font-size: 0.73rem; color: var(--text-muted); }

.about-content .section-label { display: block; text-align: left; }

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 24px;
}

.about-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 16px;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 5px;
}

.about-stat span {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
}


/* ------------------------------------------------
   13. CONTACT + MAP
------------------------------------------------ */
#contact {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid var(--border);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-sm);
}

.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }

.contact-card strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 5px;
}

.contact-card a {
  display: block;
  color: var(--amber);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}

.contact-card a:hover { color: var(--amber-dark); }

.contact-card span,
.contact-card small {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.service-areas {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.service-areas strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.service-areas p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 440px;
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
}


/* ------------------------------------------------
   14. FOOTER
------------------------------------------------ */
#footer { background: var(--navy); }

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 0 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo .logo-icon { font-size: 1.6rem; color: var(--amber); }

.footer-logo .logo-text strong {
  display: block;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}

.footer-logo .logo-text small {
  display: block;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.footer-tagline {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: 22px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 18px;
  border-radius: 8px;
  transition: var(--transition);
}

.footer-phone:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
}

.footer-links h4,
.footer-contact-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 22px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--amber); }

.footer-contact-col p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-contact-col a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-contact-col a:hover { color: var(--amber); }

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}


/* ------------------------------------------------
   15. FLOATING CALL BUTTON (mobile only)
------------------------------------------------ */
.floating-call-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 62px; height: 62px;
  background: var(--amber);
  color: var(--navy);
  font-size: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition);
  animation: pulse-amber 2.5s infinite;
}

.floating-call-btn:hover {
  transform: scale(1.12);
  animation: none;
  box-shadow: 0 10px 36px rgba(245, 166, 35, 0.65);
}

@keyframes pulse-amber {
  0%, 100% { box-shadow: 0 6px 24px rgba(245, 166, 35, 0.55); }
  50%       { box-shadow: 0 6px 40px rgba(245, 166, 35, 0.8), 0 0 0 12px rgba(245, 166, 35, 0.08); }
}

@media (min-width: 769px) {
  .floating-call-btn { display: none; }
}


/* ------------------------------------------------
   16. SCROLL REVEAL ANIMATION CLASSES
------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }


/* ------------------------------------------------
   17. RESPONSIVE — TABLET (≤1024px)
------------------------------------------------ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .hero-content { grid-template-columns: 1fr; padding: 120px 24px 70px; }
  .hero-image-panel { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: 1fr; gap: 56px; }
  .why-left { text-align: left; }

  .pricing-layout { grid-template-columns: 1fr; }
  .quote-form-wrapper { position: static; }

  .about-badge-card { display: none; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}


/* ------------------------------------------------
   18. RESPONSIVE — MOBILE (≤768px)
------------------------------------------------ */
@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 100px 20px 56px; }
  .hero-headline { font-size: 2.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .trust-container {
    flex-wrap: wrap;
    height: auto;
    gap: 14px;
    padding: 18px 24px;
    justify-content: center;
  }
  .trust-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }
  .review-featured { transform: none; }
  .review-featured:hover { transform: translateY(-4px); }

  .form-row { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-placeholder { height: 280px; }
  .about-stats-row { grid-template-columns: 1fr; gap: 20px; }

  .contact-layout { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .big-number { font-size: 5rem; }
  .big-number span { font-size: 3rem; }

  .quote-form-wrapper { padding: 28px 20px; }
}