/* ============================================
   ALBEMARLE MOVING & JUNK REMOVAL — v2.0
   styles.css — Complete Site Stylesheet
   ============================================ */

:root {
  --green-dark: #102b08;
  --green-mid: #1f4a0f;
  --green-light: #35681a;
  --green-accent: #4d8b20;
  --green-pale: #e6f2d9;
  --green-ultra-pale: #f4f9ee;
  --white: #ffffff;
  --off-white: #f4f7ef;
  --gray-light: #eef1e8;
  --gray-mid: #c5d0ba;
  --gray-dark: #44523a;
  --text: #13200d;
  --text-light: #2a3a22;
  --gold: #d1a62a;
  --gold-light: #f4de8d;
  --red: #cf3e1f;
  --accent-ink: #091006;
  --shadow: 0 4px 24px rgba(30,58,16,0.12);
  --shadow-lg: 0 8px 48px rgba(30,58,16,0.18);
  --shadow-xl: 0 16px 64px rgba(30,58,16,0.22);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --max-width: 1220px;
  --transition: all 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; font-size: 17px; text-rendering: optimizeLegibility; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-dark); }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* ---- BUTTONS ---- */
.btn { display: inline-block; padding: 0.85rem 1.8rem; border-radius: var(--radius-sm); font-family: var(--font-body); font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition); text-align: center; border: 2px solid transparent; white-space: nowrap; letter-spacing: 0.01em; }
.btn-primary { background: var(--green-accent); color: var(--white); border-color: var(--green-accent); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74,128,34,0.35); }
.btn-outline { background: transparent; color: var(--green-accent); border-color: var(--green-accent); }
.btn-outline:hover { background: var(--green-accent); color: var(--white); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: var(--white); color: var(--green-dark); }
.btn-outline-dark { background: transparent; color: var(--green-dark); border-color: var(--green-dark); }
.btn-outline-dark:hover { background: var(--green-dark); color: var(--white); }
.btn-nav { background: var(--gold); color: var(--green-dark); border-color: var(--gold); font-size: 0.9rem; padding: 0.6rem 1.2rem; }
.btn-nav:hover { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.btn-call { background: #e74c3c; color: var(--white); border-color: #e74c3c; animation: pulse-btn 2s infinite; }
.btn-call:hover { background: #c0392b; border-color: #c0392b; color: var(--white); transform: translateY(-2px); }
@keyframes pulse-btn { 0%,100% { box-shadow: 0 0 0 0 rgba(231,76,60,0.4); } 50% { box-shadow: 0 0 0 8px rgba(231,76,60,0); } }

/* ---- POPUP ---- */
.popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 9999; align-items: center; justify-content: center; padding: 1rem; backdrop-filter: blur(4px); }
.popup-overlay.active { display: flex; }
.popup-box { background: var(--white); border-radius: 20px; padding: 2.75rem 2.25rem 2rem; max-width: 440px; width: 100%; text-align: center; position: relative; box-shadow: var(--shadow-xl); border-top: 6px solid var(--green-accent); animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes popIn { from { transform: scale(0.8) translateY(20px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.popup-close { position: absolute; top: 1rem; right: 1rem; background: var(--gray-light); border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1rem; color: var(--gray-dark); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.popup-close:hover { background: var(--gray-mid); }
.popup-ribbon { background: var(--red); color: white; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4rem 1.5rem; border-radius: 20px; display: inline-block; margin-bottom: 1rem; }
.popup-headline { font-family: var(--font-display); font-size: 2.6rem; font-weight: 900; color: var(--green-dark); line-height: 1.1; margin-bottom: 0.5rem; }
.popup-headline span { color: var(--red); }
.popup-sub { color: var(--text-light); font-size: 0.97rem; margin-bottom: 1.5rem; }
.popup-btn { width: 100%; text-align: center; font-size: 1.1rem; padding: 1.1rem; background: #e74c3c; border-color: #e74c3c; color: white; }
.popup-btn:hover { background: #c0392b; border-color: #c0392b; color: white; }
.popup-link { display: block; margin-top: 0.85rem; font-size: 0.88rem; color: var(--text-light); }
.popup-link:hover { color: var(--green-accent); }
.popup-fine { font-size: 0.75rem; color: var(--gray-dark); margin-top: 0.75rem; }

/* ---- STICKY CALL BAR ---- */
.sticky-call-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: linear-gradient(135deg, #e74c3c, #c0392b); text-align: center; padding: 0.9rem 1rem; box-shadow: 0 -4px 16px rgba(0,0,0,0.3); }
.sticky-call-bar a { color: white; font-weight: 800; font-size: 1.05rem; letter-spacing: 0.02em; text-decoration: none; }
@media (max-width: 768px) { .sticky-call-bar { display: block; } body { padding-bottom: 60px; } }

/* ---- HEADER ---- */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--green-dark); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; gap: 1rem; padding-top: 0.75rem; padding-bottom: 0.75rem; }
.logo { display: flex; flex-direction: column; line-height: 1.1; flex-shrink: 0; }
.logo-main { font-family: var(--font-display); font-weight: 900; font-size: 1.2rem; color: var(--white); }
.logo-sub { font-size: 0.65rem; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 0.1rem; margin-left: auto; }
.main-nav > a, .nav-dropdown > span { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 600; padding: 0.45rem 0.7rem; border-radius: 6px; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.main-nav > a:hover, .nav-dropdown > span:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.nav-dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 0.5rem); left: 0; background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-xl); min-width: 200px; padding: 0.5rem 0; z-index: 200; border-top: 3px solid var(--green-accent); }
.dropdown-menu-wide { min-width: 230px; }
.dropdown-menu a { display: block; padding: 0.6rem 1.2rem; color: var(--text); font-size: 0.9rem; font-weight: 500; }
.dropdown-menu a:hover { background: var(--green-pale); color: var(--green-dark); padding-left: 1.5rem; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; margin-left: 0.5rem; padding: 0.25rem; }

/* ---- HERO ---- */
.hero { position: relative; min-height: 600px; display: flex; align-items: center; background: linear-gradient(135deg, var(--green-dark) 0%, #1e4010 40%, #2d5a18 75%, #3a7020 100%); overflow: hidden; padding: 5rem 0; }
.hero::before { content: ''; position: absolute; inset: 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"); }
.hero-content { position: relative; z-index: 1; max-width: 750px; }
.hero-eyebrow { font-size: 0.85rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { color: rgba(255,255,255,0.94); font-size: 1.15rem; max-width: 610px; margin-bottom: 2rem; line-height: 1.75; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.5rem; }
.hero-badges span { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28); color: rgba(255,255,255,0.96); font-size: 0.8rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 20px; }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--off-white); border-top: 3px solid var(--green-accent); border-bottom: 1px solid var(--gray-mid); }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.25rem; font-size: 0.88rem; font-weight: 700; color: var(--green-dark); border-right: 1px solid var(--gray-mid); }
.trust-item:last-child { border-right: none; }

/* ---- COMPARISON TABLE ---- */
.compare-section { background: var(--white); padding: 5rem 0; }
.compare-table-wrap { overflow-x: auto; margin-top: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.compare-table th, .compare-table td { padding: 0.85rem 1.1rem; text-align: center; border-bottom: 1px solid var(--gray-mid); }
.compare-table th { background: var(--green-dark); color: var(--white); font-weight: 700; font-size: 0.85rem; line-height: 1.3; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; font-weight: 600; }
.compare-table .us-col { background: var(--green-pale); font-weight: 700; color: var(--green-dark); }
.compare-table th.us-col { background: var(--green-accent); }
.compare-table tr:nth-child(even) td { background: rgba(232,242,222,0.3); }
.compare-table .us-col { background: rgba(74,128,34,0.1) !important; }
.compare-table tr:hover td { background: rgba(74,128,34,0.06); }
.compare-table tr:last-child td { border-bottom: none; }

/* ---- SECTIONS ---- */
.section { padding: 5rem 0; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-accent); margin-bottom: 0.75rem; }
.section-label.light { color: var(--gold); }
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 680px; margin-bottom: 2.5rem; margin-top: 0.5rem; line-height: 1.75; }

/* ---- SERVICES GRID ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.service-card { background: var(--off-white); border: 1.5px solid var(--gray-mid); border-radius: var(--radius); padding: 1.75rem 1.5rem; transition: var(--transition); color: var(--text); display: block; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--green-accent); transform: scaleX(0); transition: transform 0.3s ease; }
.service-card:hover { border-color: var(--green-accent); box-shadow: var(--shadow); transform: translateY(-4px); background: var(--white); color: var(--text); }
.service-card:hover::after { transform: scaleX(1); }
.service-card-featured { border: 2px solid var(--green-accent) !important; background: var(--white) !important; }
.service-badge { position: absolute; top: -1px; right: 1.25rem; background: var(--gold); color: var(--green-dark); font-size: 0.68rem; font-weight: 900; padding: 0.25rem 0.7rem; border-radius: 0 0 8px 8px; letter-spacing: 0.06em; text-transform: uppercase; }
.service-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.service-card h3 { color: var(--green-dark); font-size: 1.1rem; }
.service-card p { font-size: 0.92rem; color: var(--text-light); margin-top: 0.4rem; }
.service-link { display: inline-block; margin-top: 0.85rem; font-size: 0.82rem; font-weight: 800; color: var(--green-accent); letter-spacing: 0.03em; text-transform: uppercase; }

/* ---- BAND CTA ---- */
.band-cta { background: var(--green-pale); border-top: 3px solid var(--green-accent); border-bottom: 3px solid var(--green-accent); padding: 3rem 0; }
.band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.band-label { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-accent); margin-bottom: 0.4rem; }
.band-inner h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.band-inner p { color: var(--text-light); max-width: 580px; font-weight: 600; }
.band-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ---- MISSION ---- */
.mission-section { background: linear-gradient(135deg, var(--green-dark) 0%, #1e4510 60%, #2a5a14 100%); padding: 5rem 0; }
.mission-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.mission-text h2 { color: var(--white); }
.mission-text p { color: rgba(255,255,255,0.85); margin-bottom: 1rem; font-size: 1.03rem; line-height: 1.75; }
.mission-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.stat-box { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--green-dark); line-height: 1.1; }
.stat-label { font-size: 0.83rem; color: rgba(255,255,255,0.84); font-weight: 600; margin-top: 0.25rem; display: block; }

/* ---- AREA MEGA GRID ---- */
.area-section { background: var(--off-white); }
.area-mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2.5rem; }
.area-mega-col h3 { color: var(--green-dark); font-size: 0.95rem; margin-bottom: 0.85rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--green-accent); font-family: var(--font-body); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.area-mega-col ul li { margin-bottom: 0.35rem; }
.area-mega-col ul li a { color: var(--text-light); font-size: 0.9rem; }
.area-mega-col ul li a:hover { color: var(--green-accent); }
.area-mega-col ul li { color: var(--text-light); font-size: 0.9rem; }

/* ---- IVY LANDFILL SECTION ---- */
.ivy-section { background: var(--green-dark); padding: 2.5rem 0; text-align: center; border-top: 3px solid var(--green-accent); }
.ivy-section h2 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.75rem; }
.ivy-section p { color: rgba(255,255,255,0.8); max-width: 680px; margin: 0 auto; font-size: 1rem; }

/* ---- DISCOUNTS ---- */
.discounts-section { background: var(--white); padding: 4.5rem 0; text-align: center; }
.discount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.discount-card { border: 2px solid var(--green-pale); border-radius: var(--radius); padding: 2rem 1rem; background: var(--off-white); transition: var(--transition); }
.discount-card:hover { border-color: var(--green-accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.discount-pct { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: var(--green-accent); line-height: 1; }
.discount-who { font-weight: 700; color: var(--green-dark); margin-top: 0.5rem; font-size: 0.92rem; }

/* ---- REVIEWS ---- */
.reviews-section { background: var(--off-white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); border-left: 4px solid var(--green-accent); transition: var(--transition); }
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.stars { font-size: 1.1rem; color: var(--gold); margin-bottom: 0.75rem; }
.review-card p { font-style: italic; color: var(--text); font-size: 0.97rem; line-height: 1.7; }
.reviewer { display: block; margin-top: 1rem; font-weight: 700; font-size: 0.86rem; color: var(--green-dark); font-style: normal; }
.review-source { font-size: 0.75rem; color: var(--gray-dark); margin-top: 0.25rem; display: block; }

/* ---- GOOGLE REVIEWS WIDGET ---- */
.google-reviews-section { background: var(--white); padding: 4rem 0; }
.google-rating-header { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem; padding: 1.75rem 2rem; background: var(--off-white); border-radius: var(--radius); border: 1px solid var(--gray-mid); }
.google-logo { display: flex; align-items: center; gap: 0.5rem; }
.google-logo-g { font-size: 2.5rem; font-weight: 900; background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC05, #34A853); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-family: var(--font-display); }
.google-overall { text-align: center; }
.google-score { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: var(--green-dark); line-height: 1; }
.google-stars-big { font-size: 1.6rem; color: #FBBC05; }
.google-count { font-size: 0.88rem; color: var(--text-light); }
.google-cta-box { margin-left: auto; text-align: center; }
.google-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.google-review-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: var(--transition); }
.google-review-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.grc-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.grc-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--green-dark); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; color: var(--white); flex-shrink: 0; }
.grc-name { font-weight: 700; font-size: 0.95rem; }
.grc-time { font-size: 0.78rem; color: var(--gray-dark); }
.grc-stars { color: #FBBC05; font-size: 0.95rem; margin-bottom: 0.5rem; }
.grc-text { font-size: 0.92rem; color: var(--text); line-height: 1.7; }
.grc-footer { margin-top: 0.75rem; display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--gray-dark); }

/* ---- SOCIAL SECTION ---- */
.social-section { background: var(--off-white); }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.social-card { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.75rem; border-radius: var(--radius); transition: var(--transition); color: var(--text); border: 1.5px solid transparent; }
.social-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--text); }
.social-card.facebook { background: #f0f4ff; border-color: #dbe4ff; }
.social-card.instagram { background: #fff0f8; border-color: #ffd6ec; }
.social-card.tiktok { background: #f0fffa; border-color: #c0ffe8; }
.social-icon { font-size: 2rem; flex-shrink: 0; }
.social-card h3 { margin-bottom: 0.3rem; }
.social-card p { font-size: 0.92rem; color: var(--text); }
.social-follow { display: inline-block; margin-top: 0.5rem; font-size: 0.85rem; font-weight: 700; color: var(--green-accent); }

/* ---- CTA SECTION ---- */
.cta-section { background: linear-gradient(135deg, #1a3a0d 0%, #2d5416 50%, #3a7020 100%); padding: 5rem 0; text-align: center; }
.cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,0.92); max-width: 620px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-inner .hero-ctas { justify-content: center; }

/* ---- FOOTER ---- */
.site-footer { background: #0b1805; color: rgba(255,255,255,0.88); padding: 4.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 900; color: var(--white); margin-bottom: 1rem; }
.footer-col p { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.82); margin-bottom: 0.75rem; }
.footer-col h4 { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 900; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a { color: rgba(255,255,255,0.8); font-size: 0.89rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col a { color: rgba(255,255,255,0.9); }
.footer-col a:hover { color: var(--gold); }
.social-links { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.social-links a { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.82); padding: 0.3rem 0.75rem; border: 1px solid rgba(255,255,255,0.22); border-radius: 20px; }
.social-links a:hover { color: var(--gold); border-color: var(--gold); }
.footer-bottom { margin-top: 3rem; border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.62); }
.footer-bottom a { color: rgba(255,255,255,0.82); }

/* ---- INTERIOR PAGE ---- */
.page-hero { background: linear-gradient(135deg, var(--green-dark) 0%, #1e4510 100%); padding: 4rem 0 3.5rem; }
.page-hero h1 { color: var(--white); max-width: 780px; }
.page-hero p { color: rgba(255,255,255,0.92); max-width: 660px; margin-top: 0.85rem; font-size: 1.05rem; }
.page-hero .breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.72); margin-bottom: 0.85rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.88); }
.page-content { padding: 4rem 0; }
.content-body p { margin-bottom: 1.25rem; color: var(--text); font-size: 1.03rem; line-height: 1.75; }
.content-body h2 { margin-top: 2.5rem; margin-bottom: 1rem; color: var(--green-dark); }
.content-body h3 { margin-top: 1.75rem; margin-bottom: 0.75rem; color: var(--green-mid); }
.content-body ul { margin: 1rem 0 1.5rem 1.5rem; list-style: none; }
.content-body ul li { margin-bottom: 0.5rem; padding-left: 1.25rem; position: relative; }
.content-body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green-accent); font-weight: 900; }
.sidebar-cta { background: var(--green-pale); border: 2px solid var(--green-accent); border-radius: var(--radius); padding: 2rem; position: sticky; top: 5.5rem; }
.sidebar-cta h3 { color: var(--green-dark); margin-bottom: 0.75rem; }
.sidebar-cta p { font-size: 0.94rem; color: var(--text-light); margin-bottom: 1rem; }
.sidebar-cta .phone { font-size: 1.5rem; font-weight: 900; color: var(--green-dark); display: block; margin: 0.75rem 0; font-family: var(--font-display); }
.two-col-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }

/* ---- NEARBY AREAS WIDGET ---- */
.nearby-areas { background: var(--off-white); border-radius: var(--radius); padding: 1.75rem; margin-top: 2.5rem; border: 1px solid var(--gray-mid); }
.nearby-areas h3 { color: var(--green-dark); margin-bottom: 0.75rem; font-size: 1rem; }
.nearby-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.nearby-tag { background: var(--white); border: 1px solid var(--gray-mid); border-radius: 20px; padding: 0.3rem 0.9rem; font-size: 0.85rem; color: var(--green-dark); font-weight: 600; transition: var(--transition); }
.nearby-tag a { color: var(--green-dark); }
.nearby-tag:hover { border-color: var(--green-accent); background: var(--green-pale); }

/* ---- FAQ ---- */
.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--gray-mid); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 1.25rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--green-dark); }
.faq-question::after { content: '+'; font-size: 1.5rem; flex-shrink: 0; color: var(--green-accent); transition: transform 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 1.25rem; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { color: var(--text-light); font-size: 1rem; line-height: 1.7; }

/* ---- PRICING PAGE ---- */
.pricing-hero-bar { background: var(--green-pale); border-radius: var(--radius); padding: 2rem; text-align: center; margin-bottom: 3rem; border: 1px solid var(--green-accent); }
.pricing-disclaimer { font-size: 0.9rem; color: var(--text-light); margin-top: 0.5rem; font-weight: 700; }
.pricing-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2.5rem 0; }
.tier-card { border: 2px solid var(--gray-mid); border-radius: var(--radius); padding: 2rem; text-align: center; transition: var(--transition); background: var(--white); }
.tier-card:hover { border-color: var(--green-accent); box-shadow: var(--shadow); transform: translateY(-4px); }
.tier-card.featured { border-color: var(--green-accent); background: var(--green-pale); }
.tier-name { font-size: 0.8rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-accent); }
.tier-price { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--green-dark); line-height: 1.1; margin: 0.75rem 0; }
.tier-price span { font-size: 1rem; }
.tier-desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.25rem; font-weight: 700; }
.tier-items { list-style: none; text-align: left; margin: 0; }
.tier-items li { padding: 0.4rem 0; border-bottom: 1px solid var(--gray-mid); font-size: 0.92rem; color: var(--text); }
.tier-items li::before { content: '✓ '; color: var(--green-accent); font-weight: 900; }
.price-chart-wrap { margin: 3rem 0; }
.price-calc { background: var(--off-white); border-radius: var(--radius); padding: 2.5rem; border: 1px solid var(--gray-mid); margin-top: 3rem; }
.calc-toolbar { display: flex; justify-content: space-between; gap: 1.5rem; align-items: end; margin: 1.75rem 0 1.5rem; flex-wrap: wrap; }
.calc-toolbar-label { font-size: 0.78rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 0.55rem; display: block; }
.calc-filter-group { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.calc-filter { border: 1px solid var(--gray-mid); background: var(--white); color: var(--green-dark); padding: 0.7rem 1rem; border-radius: 999px; font-size: 0.84rem; font-weight: 700; cursor: pointer; transition: var(--transition); }
.calc-filter:hover, .calc-filter.active { border-color: var(--green-accent); background: var(--green-pale); }
.calc-access-wrap { min-width: 260px; }
.calc-access-select { width: 100%; border: 1px solid var(--gray-mid); border-radius: var(--radius-sm); padding: 0.85rem 1rem; background: var(--white); color: var(--text); font-size: 0.94rem; }
.calc-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr); gap: 1.5rem; align-items: start; }
.calc-items-panel { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow); }
.calc-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.calc-item-card { background: var(--off-white); border: 1px solid var(--gray-mid); border-radius: var(--radius-sm); padding: 1rem; display: flex; flex-direction: column; gap: 0.85rem; }
.calc-item-top { display: flex; justify-content: space-between; gap: 0.8rem; align-items: start; }
.calc-item-card h3 { color: var(--green-dark); font-size: 1rem; margin: 0 0 0.35rem; }
.calc-item-note { color: var(--text-light); font-size: 0.84rem; line-height: 1.55; margin: 0; }
.calc-badge { display: inline-flex; align-items: center; justify-content: center; text-align: center; padding: 0.4rem 0.65rem; border-radius: 999px; font-size: 0.74rem; font-weight: 900; letter-spacing: 0.04em; white-space: nowrap; }
.calc-badge.volume { background: rgba(74,128,34,0.12); color: var(--green-dark); }
.calc-badge.special { background: rgba(177,35,35,0.1); color: var(--red); }
.calc-badge.call { background: rgba(33,44,52,0.1); color: var(--accent-ink); }
.calc-badge s { opacity: 0.65; margin-right: 0.3rem; }
.calc-stepper { display: inline-flex; align-items: center; gap: 0.65rem; }
.calc-step-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--gray-mid); background: var(--white); color: var(--green-dark); font-size: 1.2rem; font-weight: 900; cursor: pointer; transition: var(--transition); }
.calc-step-btn:hover { border-color: var(--green-accent); background: var(--green-pale); }
.calc-step-value { min-width: 1.5rem; text-align: center; font-size: 1rem; font-weight: 900; color: var(--green-dark); }
.calc-slider-wrap { margin: 1.5rem 0; }
.calc-label { font-weight: 700; color: var(--green-dark); margin-bottom: 0.5rem; display: flex; justify-content: space-between; }
.calc-slider { width: 100%; -webkit-appearance: none; height: 8px; border-radius: 4px; background: var(--gray-mid); outline: none; }
.calc-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--green-accent); cursor: pointer; box-shadow: 0 2px 8px rgba(74,128,34,0.4); }
.calc-result { background: var(--green-dark); color: white; border-radius: var(--radius); padding: 2rem; text-align: center; margin-top: 1.5rem; }
.calc-result-side { margin-top: 0; position: sticky; top: 5.5rem; }
.calc-result-price { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--gold); }
.calc-summary-note { font-size: 0.92rem; color: rgba(255,255,255,0.82); line-height: 1.65; margin-top: 0.5rem; }
.calc-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1.35rem; }
.calc-metric { background: rgba(255,255,255,0.08); border-radius: 10px; padding: 0.85rem; }
.calc-metric-label { display: block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 0.3rem; }
.calc-metric strong { font-size: 1rem; color: var(--white); }
.calc-selected-list { margin-top: 1rem; text-align: left; background: rgba(255,255,255,0.08); border-radius: 12px; padding: 1rem; font-size: 0.9rem; color: rgba(255,255,255,0.86); }
.calc-selected-row { display: flex; justify-content: space-between; gap: 0.75rem; padding: 0.45rem 0; border-bottom: 1px solid rgba(255,255,255,0.09); }
.calc-selected-row:last-child { border-bottom: none; }
.vs-competitor { display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; justify-content: center; }
.vs-item { background: rgba(255,255,255,0.1); border-radius: 8px; padding: 0.75rem 1.25rem; text-align: center; }
.vs-item .vs-label { font-size: 0.75rem; color: rgba(255,255,255,0.8); }
.vs-item .vs-price { font-size: 1.3rem; font-weight: 900; color: rgba(255,255,255,0.72); text-decoration: line-through; }
.vs-item.ours .vs-price { color: var(--gold); text-decoration: none; }
.pricing-note { margin-top: 1rem; padding: 1rem 1.1rem; border-radius: var(--radius-sm); background: #fff7df; border: 1px solid #efcf71; color: var(--accent-ink); font-size: 0.92rem; font-weight: 700; }
.specials-section { background: linear-gradient(180deg, #fffef9 0%, #f6f9f1 100%); }
.specials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2rem; }
.special-card { background: var(--white); border: 2px solid var(--gray-mid); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.special-card::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--gold), var(--green-accent)); }
.special-card.featured { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.special-label { display: inline-block; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-accent); margin-bottom: 0.75rem; }
.special-card h3 { color: var(--green-dark); font-size: 1.3rem; margin-bottom: 0.45rem; }
.special-price { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 0.7rem; }
.special-meta { color: var(--text-light); font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; }
.special-card p { color: var(--text); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.special-card ul { list-style: none; margin: 0; }
.special-card li { position: relative; padding-left: 1.1rem; margin-bottom: 0.45rem; color: var(--text); font-size: 0.92rem; }
.special-card li::before { content: "\2022"; position: absolute; left: 0; top: 0; color: var(--green-accent); font-weight: 900; }
.special-note { margin-top: 1.5rem; color: var(--text-light); font-size: 0.95rem; font-weight: 700; }
.search-answer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2rem; }
.answer-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.answer-card h3 { color: var(--green-dark); font-size: 1.1rem; margin-bottom: 0.55rem; }
.answer-card p { color: var(--text); font-size: 0.96rem; line-height: 1.7; }

/* ---- SUPER QUOTE FORM ---- */
.quote-form-section { background: var(--off-white); padding: 5rem 0; }
.quote-form-wrap { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); overflow: hidden; }
.quote-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 0; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-xl); }
.quote-form-header { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); padding: 2.5rem 2.5rem 2rem; }
.quote-form-header h2 { color: var(--white); margin-bottom: 0.5rem; }
.quote-form-header p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.quote-form-body { padding: 2.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 0.4rem; color: var(--green-dark); text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.85rem 1rem; border: 2px solid var(--gray-mid); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.97rem; color: var(--text); background: var(--white); transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--green-accent); box-shadow: 0 0 0 4px rgba(74,128,34,0.1); }
.form-group textarea { min-height: 110px; resize: vertical; }
.photo-upload-zone { border: 2px dashed var(--gray-mid); border-radius: var(--radius-sm); padding: 2rem; text-align: center; cursor: pointer; transition: var(--transition); background: var(--off-white); }
.photo-upload-zone:hover { border-color: var(--green-accent); background: var(--green-pale); }
.photo-upload-zone input[type=file] { display: none; }
.photo-upload-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.photo-upload-zone h4 { color: var(--green-dark); margin-bottom: 0.25rem; }
.photo-upload-zone p { font-size: 0.85rem; color: var(--text-light); }
.photo-previews { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.photo-preview { width: 70px; height: 70px; border-radius: 6px; object-fit: cover; border: 2px solid var(--green-accent); }
.service-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.service-chip { padding: 0.6rem 0.8rem; border: 2px solid var(--gray-mid); border-radius: 8px; cursor: pointer; font-size: 0.82rem; font-weight: 600; text-align: center; transition: var(--transition); color: var(--text); }
.service-chip:hover { border-color: var(--green-accent); background: var(--green-pale); }
.service-chip.active { border-color: var(--green-accent); background: var(--green-pale); color: var(--green-dark); }
.urgency-options { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.urgency-btn { padding: 0.5rem 1rem; border: 2px solid var(--gray-mid); border-radius: 20px; cursor: pointer; font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.urgency-btn.active { border-color: var(--green-accent); background: var(--green-pale); color: var(--green-dark); }
.form-submit-area { background: var(--green-pale); padding: 2rem 2.5rem; border-top: 1px solid var(--gray-mid); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.form-submit-cta { font-size: 1.3rem; font-weight: 900; color: var(--green-dark); }
.form-submit-cta span { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-light); }
.quote-form-sidebar { padding: 2rem; background: var(--green-dark); color: white; }
.qfs-title { color: var(--gold); font-size: 0.8rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.5rem; }
.qfs-phone { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: white; display: block; margin-bottom: 1rem; }
.qfs-features li { font-size: 0.88rem; color: rgba(255,255,255,0.8); padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.qfs-features li::before { content: '✓ '; color: var(--gold); font-weight: 900; }

/* ---- SERVICE AREA MAP PAGE ---- */
.area-hero-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; margin-top: 2.5rem; }
.area-pill { background: var(--off-white); border: 1px solid var(--gray-mid); border-radius: var(--radius-sm); padding: 0.75rem 1rem; font-size: 0.85rem; font-weight: 600; color: var(--green-dark); text-align: center; transition: var(--transition); display: block; }
.area-pill:hover { background: var(--green-pale); border-color: var(--green-accent); color: var(--green-dark); transform: translateY(-2px); }
.area-pill-static { cursor: default; }
.area-pill-static:hover { background: var(--off-white); border-color: var(--gray-mid); color: var(--green-dark); transform: none; }

/* ---- SPECIALTY SERVICE PAGES ---- */
.service-highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2.5rem 0; }
.highlight-card { background: var(--off-white); border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--gray-mid); }
.highlight-card h3 { color: var(--green-dark); margin-bottom: 0.5rem; }
.highlight-card p { font-size: 0.92rem; color: var(--text-light); }
.process-steps { counter-reset: steps; margin: 2rem 0; }
.step { display: flex; gap: 1.25rem; margin-bottom: 1.5rem; align-items: flex-start; }
.step-num { background: var(--green-accent); color: white; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1rem; flex-shrink: 0; }
.step-body h3 { margin-bottom: 0.3rem; color: var(--green-dark); }
.step-body p { font-size: 0.93rem; color: var(--text-light); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .area-mega-grid { grid-template-columns: 1fr 1fr; }
  .discount-grid { grid-template-columns: 1fr 1fr; }
  .mission-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col-layout { grid-template-columns: 1fr; }
  .sidebar-cta { position: static; }
  .pricing-tiers { grid-template-columns: 1fr 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-result-side { position: static; }
  .google-reviews-grid { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .service-highlight-grid { grid-template-columns: 1fr 1fr; }
  .area-hero-grid { grid-template-columns: repeat(3, 1fr); }
  .specials-grid { grid-template-columns: 1fr 1fr; }
  .search-answer-grid { grid-template-columns: 1fr; }
  .calc-items { grid-template-columns: 1fr 1fr; }
  .quote-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--green-dark); padding: 1rem; gap: 0.1rem; z-index: 999; }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: 0.75rem 1rem; border-radius: var(--radius-sm); color: rgba(255,255,255,0.9); }
  .dropdown-menu { position: static; box-shadow: none; background: rgba(255,255,255,0.06); border-radius: 6px; border: none; }
  .dropdown-menu a { color: rgba(255,255,255,0.8); padding: 0.5rem 1.5rem; }
  .hamburger { display: block; }
  .site-header { position: relative; }
  .btn-nav { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .google-reviews-grid { grid-template-columns: 1fr; }
  .discount-grid { grid-template-columns: 1fr 1fr; }
  .area-mega-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--gray-mid); width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 3rem 0; min-height: auto; }
  .band-inner { flex-direction: column; }
  .pricing-tiers { grid-template-columns: 1fr; }
  .calc-items { grid-template-columns: 1fr; }
  .calc-metrics { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .service-selector { grid-template-columns: 1fr 1fr; }
  .area-hero-grid { grid-template-columns: repeat(2, 1fr); }
  .service-highlight-grid { grid-template-columns: 1fr; }
  .specials-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 0.6rem 0.7rem; }
  .google-rating-header { flex-direction: column; text-align: center; }
  .google-cta-box { margin-left: 0; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .discount-grid { grid-template-columns: 1fr; }
  .area-mega-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .area-hero-grid { grid-template-columns: 1fr 1fr; }
  .service-selector { grid-template-columns: 1fr 1fr; }
}
/* ============================================================
   ALBEMARLE — ELITE UPGRADE v3.0 — appended to styles.css
   All form fixes, AI overview styles, new components
   ============================================================ */

/* ── CSS VARS OVERRIDE ── */
:root {
  --green: #162e0a;
  --green-dark: #162e0a;
  --green-mid: #1f4a0f;
  --green-light: #35681a;
  --green-accent: #4d8b20;
  --green-pale: #eaf3dc;
  --gold: #c8a030;
  --gold-light: #f4de8d;
  --cream: #f5f0e8;
  --off-white: #f8f6f0;
  --text-dark: #0e1c09;
  --text-mid: #344028;
  --text-light: #3d5230;
  --gray-light: #e8ecde;
  --gray-mid: #c0caa8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-head: 'Bebas Neue', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(22,46,10,0.10);
  --shadow-lg: 0 12px 48px rgba(22,46,10,0.16);
  --shadow-xl: 0 24px 80px rgba(22,46,10,0.22);
}

/* ── FORM FIXES — text always readable ── */
input, textarea, select {
  background: #fff !important;
  color: #0e1c09 !important;
  border: 2px solid #c0caa8 !important;
  border-radius: 10px !important;
  padding: 0.9rem 1.1rem !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  width: 100% !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  -webkit-appearance: none !important;
}
input:focus, textarea:focus, select:focus {
  outline: none !important;
  border-color: #4d8b20 !important;
  box-shadow: 0 0 0 3px rgba(77,139,32,0.18) !important;
}
input::placeholder, textarea::placeholder { color: #7a8e6a !important; }
label { display: block; font-weight: 600; color: #162e0a; margin-bottom: 0.35rem; font-size: 0.92rem; }
.form-group { margin-bottom: 1.25rem; }

/* ── STICKY CALL BAR ── */
.sticky-call-bar {
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.sticky-call-bar a { color: var(--gold-light); text-decoration: none; }
.sticky-call-bar a:hover { color: #fff; }

/* ── SITE HEADER ── */
.site-header {
  background: #fff;
  border-bottom: 2px solid var(--gray-light);
  position: sticky;
  top: 36px;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(22,46,10,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.logo { text-decoration: none; flex-shrink: 0; }
.logo-main { display: block; font-family: var(--font-head); font-size: 1.4rem; color: var(--green-dark); line-height: 1; letter-spacing: 0.03em; }
.logo-sub { display: block; font-size: 0.62rem; color: var(--text-light); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 1.4rem; margin-left: auto; }
.main-nav a { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); transition: color 0.2s; white-space: nowrap; }
.main-nav a:hover { color: var(--green-accent); }
.nav-dropdown { position: relative; }
.nav-dropdown > span { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); cursor: pointer; white-space: nowrap; user-select: none; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.5rem;
  z-index: 2000;
}
.dropdown-menu-wide { min-width: 320px; display: grid; grid-template-columns: 1fr 1fr; gap: 0.15rem; }
.nav-dropdown:hover .dropdown-menu { display: grid; }
.dropdown-menu a { display: block; padding: 0.55rem 0.85rem; border-radius: 8px; font-size: 0.87rem; color: #0e1c09; font-weight: 600; }
.dropdown-menu a:hover { background: var(--green-pale); color: var(--green-dark); }
.hamburger { display: none; background: none; border: 2px solid var(--green-dark); border-radius: 8px; padding: 0.4rem 0.65rem; font-size: 1.2rem; cursor: pointer; color: var(--green-dark); }
@media(max-width: 900px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 80%; max-width: 320px; background: #fff; box-shadow: var(--shadow-xl); z-index: 1001; padding: 4rem 1.5rem 2rem; align-items: flex-start; gap: 0.5rem; overflow-y: auto; }
  .main-nav.open a, .main-nav.open .nav-dropdown { width: 100%; }
  .main-nav.open .dropdown-menu { display: block; position: static; box-shadow: none; border: none; background: var(--green-pale); }
  .hamburger { display: block; }
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: #fff;
  padding: 4rem 0 3.5rem;
}
.page-hero .container { max-width: 900px; }
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { opacity: 0.95; font-size: 1.1rem; line-height: 1.7; }
.page-hero p a { color: var(--gold-light); }
.breadcrumb { font-size: 0.82rem; opacity: 0.88; margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* ── TWO COLUMN LAYOUT ── */
.two-col-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; padding: 3rem 0; }
@media(max-width: 950px) { .two-col-layout { grid-template-columns: 1fr; } }
.page-content { padding: 0; }
.page-content .container { max-width: 1200px; }

/* ── SIDEBAR ── */
.sidebar-cta {
  background: var(--green-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  position: sticky;
  top: 120px;
}
.sidebar-cta h3 { color: #fff; margin-bottom: 0.5rem; }
.sidebar-cta p { opacity: 0.95; color: rgba(255,255,255,0.95); font-size: 0.9rem; }
.sidebar-cta .btn-primary { width: 100%; text-align: center; display: block; background: var(--gold); color: var(--green-dark); border-color: var(--gold); font-weight: 800; }
.sidebar-cta .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ── CTA SECTION ── */
.cta-section { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); color: #fff; padding: 5rem 0; text-align: center; }
.cta-section h2 { color: #fff; font-size: clamp(2rem,4vw,3rem); margin-bottom: 1rem; }
.cta-section p { opacity: 0.95; max-width: 600px; margin: 0 auto 2rem; font-size: 1.1rem; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── AI OVERVIEW SECTION ── */
.ai-overview-section {
  background: linear-gradient(135deg, #0a1f05 0%, #162e0a 60%, #1f4a0f 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 3rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ai-overview-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,160,48,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.ai-overview-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,160,48,0.15);
  border: 1px solid rgba(200,160,48,0.4);
  border-radius: 20px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.ai-overview-badge .ai-dot {
  width: 8px; height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: ai-pulse 1.5s infinite;
}
@keyframes ai-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.ai-overview-section h2 { color: #fff; font-size: 1.5rem; margin-bottom: 1rem; }
.ai-qa-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; margin-top: 1.25rem; }
.ai-qa-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,160,48,0.2);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
}
.ai-qa-card .ai-q {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}
.ai-qa-card .ai-a {
  font-size: 0.87rem;
  opacity: 1.0; color: rgba(255,255,255,0.95);
  line-height: 1.65;
}

/* ── NEARBY AREAS TAGS ── */
.nearby-areas { margin: 1.5rem 0; }
.nearby-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.nearby-tag { background: var(--green-pale); border: 1px solid var(--gray-mid); border-radius: 20px; padding: 0.3rem 0.9rem; font-size: 0.82rem; font-weight: 600; transition: all 0.2s; }
.nearby-tag a { color: var(--green-dark); text-decoration: none; }
.nearby-tag:hover { background: var(--green-dark); border-color: var(--green-dark); }
.nearby-tag:hover a { color: #fff; }

/* ── FOOTER ── */
.site-footer { background: #0a1a04; color: rgba(255,255,255,0.75); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; padding-bottom: 3rem; }
@media(max-width:800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { font-family: var(--font-head); font-size: 1.4rem; color: #fff; margin-bottom: 0.75rem; letter-spacing: 0.04em; }
.site-footer h4 { color: var(--gold-light); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-body); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: 0.55rem; }
.site-footer ul a { color: rgba(255,255,255,0.88); font-size: 0.88rem; transition: color 0.2s; }
.site-footer ul a:hover { color: var(--gold-light); }
.site-footer p { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.88); }
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; text-align: center; font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); }

/* ── MOBILE STICKY BAR ── */
.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--green-dark); z-index: 998; padding: 0.75rem 1rem; display: flex; gap: 0.75rem; }
@media(min-width:768px) { .mobile-sticky-cta { display: none !important; } }
.mobile-sticky-cta a { flex: 1; text-align: center; padding: 0.8rem 0; border-radius: var(--radius-sm); font-weight: 800; font-size: 0.9rem; text-decoration: none; }
.mobile-sticky-cta .msc-call { background: var(--gold); color: var(--green-dark); }
.mobile-sticky-cta .msc-quote { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
@media(max-width:767px) { body { padding-bottom: 70px; } }

/* ── SPEAKABLE / AEO ANSWER BOX ── */
.answer-box {
  background: var(--green-pale);
  border-left: 5px solid var(--green-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.answer-box .ab-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green-accent); margin-bottom: 0.4rem; }
.answer-box p { font-size: 0.97rem; line-height: 1.75; margin: 0; color: var(--text-dark); }

/* ── MISSION STATS STRIP ── */
.stats-strip { background: var(--gold); padding: 1.5rem 0; }
.stats-strip .container { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 2.2rem; color: var(--green-dark); line-height: 1; }
.stat-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(22,46,10,0.75); }

/* ── REVIEW CARDS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin: 2rem 0; }
.review-card { background: #fff; border: 1px solid var(--gray-light); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.5rem; letter-spacing: 0.1em; }
.review-text { font-size: 0.9rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 0.75rem; font-style: italic; }
.review-author { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); }
.review-loc { font-size: 0.78rem; color: var(--text-mid); font-weight: 600; }

/* ── PROCESS STEPS ── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; margin: 2rem 0; counter-reset: steps; }
.process-step { counter-increment: steps; position: relative; padding: 1.4rem; background: var(--off-white); border-radius: var(--radius); border: 1px solid var(--gray-light); }
.process-step::before { content: counter(steps); position: absolute; top: -14px; left: 1.2rem; background: var(--green-dark); color: #fff; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; }
.process-step h4 { color: var(--green-dark); font-size: 0.95rem; margin-bottom: 0.4rem; margin-top: 0.4rem; }
.process-step p { font-size: 0.85rem; color: #2d3a26; margin: 0; line-height: 1.65; }

/* ── HIGH-TECH ESTIMATOR ── */
.estimator-section { background: #0e1c09; padding: 4rem 0; }
.estimator-section .est-head { text-align: center; margin-bottom: 2.5rem; }
.estimator-section .est-head h2 { color: #fff; }
.estimator-section .est-head p { color: rgba(255,255,255,0.7); }
.est-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; }
@media(max-width:900px) { .est-layout { grid-template-columns: 1fr; } }

.est-item-panel { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,160,48,0.2); border-radius: var(--radius); overflow: hidden; }
.est-cat-tabs { display: flex; overflow-x: auto; background: rgba(0,0,0,0.3); scrollbar-width: none; }
.est-cat-tabs::-webkit-scrollbar { display: none; }
.est-cat-tab { padding: 0.75rem 1.25rem; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; cursor: pointer; color: rgba(255,255,255,0.5); border-bottom: 3px solid transparent; transition: all 0.2s; }
.est-cat-tab.active, .est-cat-tab:hover { color: var(--gold-light); border-bottom-color: var(--gold); background: rgba(200,160,48,0.08); }

.est-items-grid { padding: 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
@media(max-width:600px) { .est-items-grid { grid-template-columns: 1fr; } }
.est-item { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.06); border-radius: 10px; padding: 0.7rem 0.9rem; border: 1px solid rgba(255,255,255,0.08); transition: background 0.2s; }
.est-item:hover { background: rgba(200,160,48,0.1); }
.est-item-name { font-size: 0.83rem; color: rgba(255,255,255,0.88); flex: 1; }
.est-item-controls { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.est-qty-btn { width: 26px; height: 26px; border-radius: 6px; border: 1px solid rgba(200,160,48,0.4); background: rgba(200,160,48,0.1); color: var(--gold-light); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; line-height: 1; transition: all 0.15s; }
.est-qty-btn:hover { background: var(--gold); color: var(--green-dark); }
.est-qty-num { font-size: 0.9rem; font-weight: 800; color: #fff; min-width: 20px; text-align: center; }

.est-result-panel { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,160,48,0.25); border-radius: var(--radius); padding: 1.75rem; position: sticky; top: 100px; }
.est-truck-wrap { margin: 1rem 0; }
.est-truck-svg { width: 100%; border-radius: 10px; background: rgba(0,0,0,0.2); overflow: visible; }
.est-fill-bar-wrap { margin-top: 0.75rem; }
.est-fill-bg { background: rgba(255,255,255,0.1); border-radius: 8px; height: 12px; overflow: hidden; }
.est-fill-fg { height: 100%; border-radius: 8px; background: linear-gradient(90deg, #4d8b20, var(--gold)); transition: width 0.5s cubic-bezier(0.34,1.56,0.64,1); width: 0%; }
.est-fill-pct { color: rgba(255,255,255,0.92); font-size: 0.78rem; margin-top: 0.3rem; text-align: right; }
.est-price-display { font-family: var(--font-head); font-size: 4rem; color: var(--gold-light); line-height: 1; margin: 1rem 0 0.25rem; }
.est-tier-name { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.5rem; }
.est-price-note { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 1.25rem; }
.est-cta-call { display: block; background: var(--gold); color: var(--green-dark); font-weight: 800; text-align: center; padding: 1rem; border-radius: 10px; font-size: 1rem; text-decoration: none; margin-bottom: 0.75rem; transition: background 0.2s; }
.est-cta-call:hover { background: var(--gold-light); color: var(--green-dark); }
.est-cta-form { display: block; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); text-align: center; padding: 0.8rem; border-radius: 10px; font-size: 0.88rem; text-decoration: none; border: 1px solid rgba(255,255,255,0.15); }
.est-cta-form:hover { background: rgba(255,255,255,0.15); color: #fff; }
.est-multiload-note { background: rgba(200,160,48,0.15); border: 1px solid rgba(200,160,48,0.3); border-radius: 8px; padding: 0.75rem; font-size: 0.78rem; color: var(--gold-light); line-height: 1.6; margin-top: 0.75rem; display: none; }

/* ── CONTACT FORM FULL REBUILD ── */
.contact-form-wrap { background: #fff; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-lg); }
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap p { color: var(--text-mid); margin-bottom: 1.75rem; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media(max-width:600px) { .form-row { grid-template-columns: 1fr; } }
.form-submit { background: var(--green-accent); color: #fff; border: none; border-radius: 10px; padding: 1rem 2rem; font-size: 1.05rem; font-weight: 800; cursor: pointer; width: 100%; transition: all 0.2s; letter-spacing: 0.02em; }
.form-submit:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(22,46,10,0.3); }
.form-success { background: var(--green-pale); border: 2px solid var(--green-accent); border-radius: var(--radius); padding: 1.5rem; text-align: center; display: none; }
.form-success.show { display: block; }

/* ── SPEAKABLE JSON-LD ANSWER DISPLAY ── */
.speakable-answer { background: var(--off-white); border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; border-left: 4px solid var(--gold); margin: 1.5rem 0; }
.speakable-answer p { margin: 0; font-size: 0.95rem; line-height: 1.8; }

/* ── SCHEMA ENHANCEMENTS VISUAL ── */
.trust-bar { display: flex; flex-wrap: wrap; gap: 1.5rem; padding: 1.25rem 0; border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); margin: 2rem 0; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-mid); font-weight: 600; }
.trust-item .t-icon { font-size: 1.1rem; }

/* ── ARTICLE BODY IMPROVEMENTS ── */
.article-body { max-width: 860px; }
.article-body h2 { margin-top: 2.5rem; border-bottom: 2px solid var(--gray-light); padding-bottom: 0.5rem; }
.article-body h3 { margin-top: 1.75rem; color: var(--green-dark); }
.article-body p { margin-bottom: 1.2rem; line-height: 1.85; }
.article-body ul, .article-body ol { padding-left: 1.4rem; margin-bottom: 1.2rem; line-height: 2.1; }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.95rem; }
.article-body th { background: var(--green-dark); color: #fff; padding: 0.85rem 1rem; text-align: left; }
.article-body td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--gray-light); }
.article-body tr:nth-child(even) td { background: var(--off-white); }

/* ── MOBILE IMPROVEMENTS ── */
@media(max-width: 600px) {
  .page-hero { padding: 2.5rem 0 2rem; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .sidebar-cta { position: static; }
  .two-col-layout { gap: 2rem; padding: 2rem 0; }
  .ai-overview-section { padding: 1.5rem; }
  .ai-qa-grid { grid-template-columns: 1fr; }
  .stats-strip .container { gap: 1rem; }
  .stat-num { font-size: 1.6rem; }
  .trust-bar { gap: 1rem; }
}

/* ── PRINT ── */
@media print {
  .sticky-call-bar, .site-header, .hamburger, .mobile-sticky-cta { display: none !important; }
  .page-content { padding-top: 0 !important; }
}

/* ═══════════════════════════════════════════════════════
   CONTRAST FIX LAYER — v4.0 — All text always readable
   ═══════════════════════════════════════════════════════ */

/* ── DARK GREEN BACKGROUNDS: Force white readable text ── */

/* Any element with dark green background */
[style*="background:#162e0a"] *, [style*="background:#0a1f05"] *,
[style*="background:#1f4a0f"] *, [style*="background:linear-gradient(135deg,#0a1f05"] *,
[style*="background:linear-gradient(135deg,#162e0a"] * {
  /* Ensure children have legible color by default */
}

/* Sticky call bar */
.sticky-call-bar { color: #fff !important; }
.sticky-call-bar a { color: #f4de8d !important; }

/* Page hero — white text on dark green */
.page-hero h1 { color: #fff !important; }
.page-hero p { color: rgba(255,255,255,0.97) !important; opacity: 1 !important; }
.page-hero .breadcrumb { color: rgba(255,255,255,0.9) !important; opacity: 1 !important; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.88) !important; }

/* CTA section */
.cta-section h2, .cta-section p { color: #fff !important; opacity: 1 !important; }
.cta-inner p { opacity: 1 !important; color: rgba(255,255,255,0.96) !important; }

/* Sidebar CTA — dark green bg */
.sidebar-cta { background: var(--green-dark) !important; }
.sidebar-cta h3 { color: #fff !important; }
.sidebar-cta p { color: rgba(255,255,255,0.95) !important; opacity: 1 !important; }
.sidebar-cta a:not(.btn) { color: var(--gold-light) !important; }
.sidebar-cta hr { border-color: rgba(255,255,255,0.2) !important; }

/* Stats strip — gold background, dark text */
.stats-strip .stat-num { color: var(--green-dark) !important; }
.stats-strip .stat-label { color: rgba(22,46,10,0.85) !important; }

/* Footer — dark bg */
.site-footer { color: rgba(255,255,255,0.92) !important; }
.site-footer h4 { color: var(--gold-light) !important; opacity: 1 !important; }
.site-footer p { color: rgba(255,255,255,0.92) !important; }
.site-footer a { color: rgba(255,255,255,0.9) !important; }
.site-footer ul a { color: rgba(255,255,255,0.9) !important; }
.site-footer ul a:hover { color: var(--gold-light) !important; }
.footer-logo { color: #fff !important; }
.footer-bottom { color: rgba(255,255,255,0.75) !important; }
.footer-bottom a { color: rgba(255,255,255,0.7) !important; }

/* Mobile sticky CTA */
.mobile-sticky-cta .msc-call { color: var(--green-dark) !important; }
.mobile-sticky-cta .msc-quote { color: rgba(255,255,255,0.95) !important; }

/* ── ESTIMATOR / PRICING CALCULATOR ── */
.est-result-panel { color: #fff; }
.est-result-panel * { color: inherit; }
.est-tier-name { color: rgba(255,255,255,0.9) !important; }
.est-price-note { color: rgba(255,255,255,0.88) !important; }
.est-fill-pct { color: rgba(255,255,255,0.9) !important; }
.fill-ticks { color: rgba(255,255,255,0.9) !important; }
.fill-ticks span { color: rgba(255,255,255,0.9) !important; }
.price-note { color: rgba(255,255,255,0.92) !important; }
.item-units { color: rgba(255,255,255,0.85) !important; opacity: 1 !important; }
.est-item-name { color: rgba(255,255,255,0.95) !important; }
.est-cat-tab { color: rgba(255,255,255,0.85) !important; }
.est-cat-tab.active { color: var(--gold-light) !important; }

/* Pricing result panel */
#tierName { color: rgba(255,255,255,0.9) !important; }
#priceDisplay { color: var(--gold-light) !important; }
.tier-badge { color: #fff !important; }

/* ── AI OVERVIEW SECTIONS ── */
.ai-overview-section * { color: inherit; }
.ai-overview-badge { color: var(--gold-light) !important; }
.ai-qa-card .ai-q { color: var(--gold-light) !important; }
.ai-qa-card .ai-a { color: rgba(255,255,255,0.95) !important; opacity: 1 !important; }

/* ── TRUST BAR / PROCESS STEPS ── */
.trust-bar { color: var(--text-mid); }
.trust-item { color: var(--green-dark) !important; font-weight: 600; }

/* ── NEARBY TAGS ── */
.nearby-tag a { color: var(--green-dark) !important; }
.nearby-tag:hover a { color: #fff !important; }

/* ── NAV ── */
.main-nav a { color: #0e1c09 !important; }
.main-nav a:hover { color: var(--green-accent) !important; }
.nav-dropdown > span { color: #0e1c09 !important; }
.dropdown-menu a { color: #0e1c09 !important; }
.dropdown-menu a:hover { color: var(--green-dark) !important; background: var(--green-pale) !important; }

/* ── BREADCRUMB ── */
.breadcrumb { color: rgba(255,255,255,0.9) !important; opacity: 1 !important; }
.breadcrumb a { color: rgba(255,255,255,0.85) !important; }
.breadcrumb a:hover { color: #fff !important; }

/* ── REVIEW CARDS ── */
.review-text { color: var(--text-dark) !important; }
.review-author { color: var(--green-dark) !important; font-weight: 700 !important; }
.review-loc { color: var(--text-mid) !important; font-weight: 600 !important; }

/* ── FAQ ACCORDIONS ── */
.faq-accordion summary { color: var(--green-dark) !important; }
.faq-body { color: var(--text-dark) !important; line-height: 1.85 !important; }
.faq-body p { color: var(--text-dark) !important; }
.faq-body a { color: var(--green-accent) !important; }

/* ── FORM ELEMENTS — always readable ── */
input, textarea, select {
  color: #0e1c09 !important;
  background: #fff !important;
  -webkit-text-fill-color: #0e1c09 !important;
}
input::placeholder, textarea::placeholder {
  color: #6b8060 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #6b8060 !important;
}
label { color: inherit !important; }

/* On dark bg, labels must be white */
.quote-form-section label,
section[style*="background:#162e0a"] label,
section[style*="background:#0a1f05"] label,
div[style*="background:#162e0a"] label,
div[style*="background:#0a1f05"] label { color: #fff !important; }

/* ── LOCATION CARDS ── */
.loc-name { color: var(--green-dark) !important; font-weight: 700 !important; }
.loc-desc { color: var(--text-mid) !important; }
.loc-svc-tag { color: var(--green-dark) !important; }
.loc-card.featured .loc-name { color: var(--green-dark) !important; }

/* ── TEAM CARDS ── */
.team-name { color: #fff !important; }
.team-role { color: var(--gold-light) !important; }
.team-bio { color: var(--text-dark) !important; }

/* ── PRICING TABLE ── */
.comp-table th { color: #fff !important; }
.comp-table td.us-col { color: var(--green-dark) !important; }
.comp-table td.us-col.best { color: #1a6b1a !important; font-weight: 800 !important; }
.price-badge.pb-cheap { color: #1b5e20 !important; }
.price-badge.pb-mid { color: #bf360c !important; }
.price-badge.pb-expensive { color: #b71c1c !important; }

/* ── ATOMIC ANSWER CARDS ── */
.atomic-answer { color: var(--text-mid) !important; }
.atomic-answer strong { color: var(--green-dark) !important; }
.atomic-service { color: #fff !important; }
.atomic-price { color: var(--gold-light) !important; }

/* ── SAVINGS / PROCESS BARS ── */
.savings-number { color: var(--gold-light) !important; }
.savings-label { color: rgba(255,255,255,0.95) !important; opacity: 1 !important; }
.savings-note { color: rgba(255,255,255,0.88) !important; opacity: 1 !important; }
.process-bar h2 { color: #fff !important; }
.process-bar p { color: rgba(255,255,255,0.92) !important; opacity: 1 !important; }
.pstep h4 { color: var(--gold-light) !important; }
.pstep p { color: rgba(255,255,255,0.88) !important; opacity: 1 !important; }

/* ── CONTENT BODY LINKS ── */
.content-body a, .article-body a { color: var(--green-accent) !important; }
.content-body a:hover, .article-body a:hover { color: var(--green-dark) !important; }

/* ── MISC FIX: Reddit post brand mentions ── */
.rp-body .brand { color: #0e1c09 !important; font-weight: 800 !important; }

/* ── HIGH CONTRAST MODE SUPPORT ── */
@media (prefers-contrast: high) {
  :root {
    --text-light: #1a2b14 !important;
    --text-mid: #0e1c09 !important;
  }
  .page-hero p, .cta-section p { opacity: 1 !important; color: #fff !important; }
}

/* ── ENSURE NO INVISIBLE TEXT ── */
* { min-color: transparent; }

/* Fix any remaining low-alpha text on dark sections via attribute selectors */
[style*="opacity:0.4"], [style*="opacity:0.5"], [style*="opacity:0.6"],
[style*="opacity:.4"], [style*="opacity:.5"], [style*="opacity:.6"] {
  /* Only apply if text-related - can't easily filter in CSS, but catch most */
}

/* Context-specific: on dark green parent, ensure children have white text */
.est-item-panel .est-item { border-color: rgba(200,160,48,0.2) !important; }
.est-item-name { color: rgba(255,255,255,0.97) !important; }
.qty-display, .est-qty-num { color: #fff !important; }

/* Donation mission page specific */
.mission-stat { color: #fff !important; }
.mission-stat .num { color: var(--gold-light) !important; }
.mission-stat .lbl { color: rgba(255,255,255,0.92) !important; }

/* All white text on green backgrounds — belt and suspenders */
.stats-strip { background: var(--green-dark) !important; }
.stats-strip .stat-num { color: #fff !important; font-size: 2rem !important; }
.stats-strip .stat-label { color: rgba(255,255,255,0.85) !important; }


/* ═══════════════════════════════════════════════════════
   STATS BAR — FINAL FIX: always dark green bg, white nums
   ═══════════════════════════════════════════════════════ */
.stats-strip { background: var(--green-dark) !important; padding: 1.5rem 0 !important; }
.stats-strip .stat-item { text-align: center; }
.stats-strip .stat-num { color: #fff !important; font-size: 2rem !important; font-family: var(--font-display) !important; font-weight: 900 !important; display: block !important; line-height: 1.1 !important; }
.stats-strip .stat-label { color: rgba(255,255,255,0.82) !important; font-size: .82rem !important; font-weight: 600 !important; display: block !important; margin-top: .2rem !important; }

/* DEALS PAGE countdown */
#countdown-display { font-family: 'Bebas Neue', sans-serif !important; color: #f4de8d !important; }

/* Ensure pricing tier cards are centered */
.tier-cards { margin: 2rem auto !important; max-width: 900px !important; }
.tier-card { text-align: center !important; }

/* Deals link in nav */
.main-nav a[href*="deals"] { color: var(--gold) !important; font-weight: 700 !important; }
.main-nav a[href*="deals"]:hover { color: var(--green-dark) !important; }
