/* ============================================================
   ONE WORLD ROOFING — MAIN STYLESHEET
   Version: 1.0.0
   Colors: Gold #F5A800 | Orange #F07B00 | Red #CC1111
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  --gold: #F5A800;
  --gold-dark: #D48F00;
  --orange: #F07B00;
  --red: #CC1111;
  --dark: #0F0F0F;
  --dark-2: #1A1A1A;
  --dark-3: #242424;
  --dark-4: #2E2E2E;
  --gray-light: #F6F6F6;
  --gray-mid: #E0E0E0;
  --gray-text: #6B6B6B;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --font-heading: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.18);
  --transition: 0.2s ease;
  --max-w: 1240px;
  --max-w-sm: 900px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === LAYOUT UTILITIES === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: var(--max-w-sm); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-dark-2 { background: var(--dark-2); color: var(--white); }
.bg-gray { background: var(--gray-light); }
.bg-white { background: var(--white); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; font-family: var(--font-heading); font-weight: 700; font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; border-radius: var(--radius); transition: all var(--transition); white-space: nowrap; }
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,168,0,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark) !important; }

/* Outline button on dark backgrounds — gold border, white text, gold fill on hover */
.btn-outline-dark { background: transparent; color: var(--white) !important; border: 2px solid var(--dark-4); }
.btn-outline-dark:hover { background: var(--gold); color: var(--dark) !important; border-color: var(--gold); }

/* Outline button on light backgrounds — dark border, dark text, dark fill on hover */
.btn-outline-light { background: transparent; color: var(--text-dark) !important; border: 2px solid var(--gray-mid); }
.btn-outline-light:hover { background: var(--dark); color: var(--white) !important; border-color: var(--dark); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #a50e0e; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(204,17,17,0.4); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-full { width: 100%; }

/* === TOP BAR === */
.top-bar { background: var(--dark-2); padding: 9px 0; font-size: 0.825rem; color: #ccc; border-bottom: 1px solid var(--dark-4); }
.top-bar a { color: var(--gold); transition: color var(--transition); }
.top-bar a:hover { color: var(--white); }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.top-bar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; }
.top-bar-cta { background: var(--gold); color: var(--dark) !important; padding: 5px 14px; border-radius: var(--radius); font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; transition: background var(--transition); }
.top-bar-cta:hover { background: var(--orange) !important; color: var(--white) !important; }

/* === HEADER === */
.site-header { background: var(--dark); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; }
.site-logo { flex-shrink: 0; }
.site-logo img { height: 52px; width: auto; }
.site-logo a { display: block; }

.scrolled .has-mega > .mega-menu{ top: 65px; }



/* === MAIN NAVIGATION === */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a { display: flex; align-items: center; gap: 5px; padding: 10px 14px; font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--white); border-radius: var(--radius); transition: color var(--transition), background var(--transition); white-space: nowrap; }
.main-nav > li > a:hover, .main-nav > li.current-menu-item > a { color: var(--gold); }
.main-nav > li > a .chevron { width: 10px; height: 10px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform var(--transition); }
.main-nav > li:hover > a .chevron { transform: rotate(180deg); }
.nav-cta-btn { background: var(--gold) !important; color: var(--dark) !important; padding: 10px 20px !important; border-radius: var(--radius) !important; margin-left: 8px; }
.nav-cta-btn:hover { background: var(--orange) !important; color: var(--white) !important; }

/* Standard Dropdown */
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--dark-2); border: 1px solid var(--dark-4); border-radius: var(--radius-lg); min-width: 220px; padding: 8px 0; box-shadow: var(--shadow-lg); z-index: 100; }
.dropdown-menu li a { display: block; padding: 10px 20px; font-size: 0.9rem; color: #ccc; transition: color var(--transition), background var(--transition); white-space: nowrap; }
.dropdown-menu li a:hover { color: var(--gold); background: var(--dark-3); }
.main-nav > li:hover .dropdown-menu { display: block; }
.dropdown-divider { border: none; border-top: 1px solid var(--dark-4); margin: 6px 0; }
.dropdown-highlight a { color: var(--gold) !important; font-weight: 600; }

/* Mega Menu */
.has-mega > .mega-menu { display: none; position: fixed; left: 0; right: 0; top: auto; margin-top: 0; background: var(--dark-2); border-top: 2px solid var(--gold); border-bottom: 1px solid var(--dark-4); padding: 32px 0; box-shadow: var(--shadow-lg); z-index: 100; }
.has-mega:hover > .mega-menu { display: block; }
.mega-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; display: grid; gap: 40px; }
.mega-services { grid-template-columns: 1fr 1fr 1fr; }
.mega-areas { grid-template-columns: repeat(5, 1fr); }
.mega-col h4 { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--dark-4); }
.mega-col ul { display: flex; flex-direction: column; gap: 4px; }
.mega-col ul li a { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: #bbb; padding: 5px 0; transition: color var(--transition); }
.mega-col ul li a:hover { color: var(--gold); }
.mega-col ul li a::before { content: '›'; color: var(--gold); font-size: 1rem; line-height: 1; }
.mega-footer-links { grid-column: 1 / -1; display: flex; gap: 16px; padding-top: 16px; border-top: 1px solid var(--dark-4); }
.mega-footer-links a { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--gold); font-weight: 600; }
.mega-footer-links a:hover { color: var(--white); }
.mega-view-all { grid-column: 1 / -1; text-align: right; padding-top: 12px; border-top: 1px solid var(--dark-4); }
.mega-view-all a { font-size: 0.85rem; color: var(--gold); font-weight: 600; }

/* === HAMBURGER === */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all var(--transition); border-radius: 2px; }
.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 === */
.mobile-menu { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--dark); z-index: 9999; overflow-y: auto; transform: translateX(-100%); transition: transform 0.3s ease; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--dark-4); }
.mobile-menu-header img { height: 44px; }
.mobile-close { color: var(--white); font-size: 1.5rem; background: none; border: none; cursor: pointer; padding: 4px 8px; }
.mobile-top-cta { padding: 16px 20px; border-bottom: 1px solid var(--dark-4); display: flex; gap: 12px; }
.mobile-top-cta a { flex: 1; text-align: center; padding: 12px 8px; font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; border-radius: var(--radius); }
.mobile-top-cta .btn-call { background: var(--gold); color: var(--dark); }
.mobile-top-cta .btn-estimate { background: transparent; color: var(--white); border: 1px solid var(--dark-4); }
.mobile-nav { padding: 8px 0; }
.mobile-nav-item { border-bottom: 1px solid var(--dark-4); }
.mobile-nav-item > a, .mobile-nav-toggle { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--white); background: none; width: 100%; text-align: left; cursor: pointer; border: none; }
.mobile-nav-toggle svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 2; transition: transform var(--transition); }
.mobile-nav-toggle.open svg { transform: rotate(180deg); }
.mobile-submenu { display: none; background: var(--dark-2); }
.mobile-submenu.open { display: block; }
.mobile-submenu-section { padding: 12px 20px; }
.mobile-submenu-section h5 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.mobile-submenu-section a { display: flex; align-items: center; gap: 8px; padding: 7px 0; font-size: 0.875rem; color: #bbb; }
.mobile-submenu-section a::before { content: '›'; color: var(--gold); }
.mobile-submenu-section a:hover { color: var(--white); }
.mobile-submenu-divider { border: none; border-top: 1px solid var(--dark-4); margin: 8px 0; }
.mobile-menu-footer { padding: 20px; border-top: 1px solid var(--dark-4); font-size: 0.8rem; color: #666; }
.mobile-menu-footer p { margin-bottom: 4px; }

/* === HERO SECTION === */
.hero { position: relative; background: var(--dark); color: var(--white); min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(245,168,0,0.08) 0%, transparent 50%, rgba(204,17,17,0.05) 100%); pointer-events: none; }
.hero-pattern { position: absolute; inset: 0; opacity: 0.03; background-image: repeating-linear-gradient(60deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%), repeating-linear-gradient(120deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%); background-size: 40px 70px; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,168,0,0.12); border: 1px solid rgba(245,168,0,0.3); color: var(--gold); font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 14px; border-radius: 100px; margin-bottom: 20px; }
.hero-badge svg { width: 14px; height: 14px; fill: var(--gold); }
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 3rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero-sub { font-size: clamp(1rem, 1.8vw, 1.2rem); color: #bbb; margin-bottom: 32px; max-width: 900px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 20px;}
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #999; }
.hero-trust-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }
.hero-trust-item strong { color: var(--white); }

/* === TRUST BAR === */
.trust-bar { background: var(--gold); padding: 0; }
.trust-bar-inner { display: flex; align-items: stretch; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; padding: 16px 28px; flex: 1; min-width: 180px; border-right: 1px solid rgba(0,0,0,0.15); }
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 22px; height: 22px; fill: var(--dark); flex-shrink: 0; }
.trust-item-text { }
.trust-item-text strong { display: block; font-family: var(--font-heading); font-size: 0.95rem; font-weight: 800; color: var(--dark); letter-spacing: 0.02em; line-height: 1.2; }
.trust-item-text span { display: block; font-size: 0.75rem; color: rgba(0,0,0,0.6); }

/* === SECTION HEADERS === */
.section-header { margin-bottom: 48px; }
.section-header.text-center { text-align: center; }
.section-tag { display: inline-block; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--gray-text); max-width: 580px; }
.section-header.text-center p { margin: 0 auto; }
.divider-gold { width: 48px; height: 3px; background: var(--gold); margin: 12px 0; }
.text-center .divider-gold { margin: 12px auto; }

/* === SERVICES SECTION === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-card-img { aspect-ratio: 16/9; background: var(--dark-3); overflow: hidden; position: relative; }
.service-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%); }
.service-card-body { padding: 24px; }
.service-card-icon { width: 44px; height: 44px; background: rgba(245,168,0,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.service-card-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.service-card h3 { margin-bottom: 8px; font-size: 1.25rem; }
.service-card p { color: var(--gray-text); font-size: 0.9rem; margin-bottom: 16px; }
.service-card-links { display: flex; flex-wrap: wrap; gap: 8px; }
.service-card-link { font-size: 0.8rem; color: var(--dark); background: var(--gray-light); padding: 5px 10px; border-radius: 100px; transition: background var(--transition), color var(--transition); }
.service-card-link:hover { background: var(--gold); }
.service-card-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 16px; transition: gap var(--transition); }
.service-card-cta:hover { gap: 10px; }
.service-card-cta svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; }

/* Emergency card special style */
.service-card.emergency { border-color: var(--red); }
.service-card.emergency .service-card-icon { background: rgba(204,17,17,0.1); }
.service-card.emergency .service-card-icon svg { fill: var(--red); }
.service-card.emergency .service-card-cta { color: var(--red); }

/* === STATS SECTION === */
.stats-section { background: var(--dark); color: var(--white); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 24px; border-right: 1px solid var(--dark-4); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; color: var(--gold); line-height: 1; display: block; }
.stat-label { font-size: 0.9rem; color: #aaa; margin-top: 6px; display: block; }

/* === MATERIALS SECTION === */
.materials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.material-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); padding: 24px 20px; text-align: center; transition: all var(--transition); cursor: pointer; }
.material-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-2px); }
.material-card-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--gold), var(--orange)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.material-card-icon svg { width: 28px; height: 28px; fill: var(--white); }
.material-card h3 { font-size: 1rem; margin-bottom: 6px; }
.material-card p { font-size: 0.8rem; color: var(--gray-text); margin-bottom: 0; }
.material-card a { font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-top: 8px; display: inline-block; }

/* Bottom row centered for 3 items */
.materials-grid-bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 820px; margin: 20px auto 0; }

/* === BRANDS SECTION === */
.brands-section { background: var(--gray-light); }
.brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.brand-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); padding: 20px 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-height: 90px; gap: 5px; transition: all var(--transition); }
.brand-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.brand-card h3 { line-height: 1.2; word-break: break-word; hyphens: auto; }
.brand-card span { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); }

/* === SERVICE AREAS SECTION === */
.areas-section { background: var(--dark); color: var(--white); }
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.area-county-card { background: var(--dark-2); border: 1px solid var(--dark-4); border-radius: var(--radius-lg); padding: 20px; transition: all var(--transition); }
.area-county-card:hover { border-color: var(--gold); }
.area-county-card h4 { font-size: 0.85rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--dark-4); }
.area-county-card ul { display: flex; flex-direction: column; gap: 6px; }
.area-county-card ul li a { font-size: 0.82rem; color: #aaa; display: flex; align-items: center; gap: 6px; transition: color var(--transition); }
.area-county-card ul li a::before { content: '›'; color: var(--gold); }
.area-county-card ul li a:hover { color: var(--white); }

/* === REVIEWS SECTION === */
.reviews-section { background: var(--white); }
.reviews-header-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 40px; }
.reviews-score { display: flex; align-items: center; gap: 16px; }
.reviews-number { font-family: var(--font-heading); font-size: 4rem; font-weight: 800; color: var(--dark); line-height: 1; }
.reviews-meta { }
.stars { display: flex; gap: 3px; margin-bottom: 4px; }
.stars svg { width: 20px; height: 20px; fill: var(--gold); }
.reviews-count { font-size: 0.875rem; color: var(--gray-text); }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--gray-light); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--gray-mid); }
.review-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.reviewer-info { }
.reviewer-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.reviewer-city { font-size: 0.8rem; color: var(--gray-text); }
.review-stars { display: flex; gap: 2px; }
.review-stars svg { width: 14px; height: 14px; fill: var(--gold); }
.review-text { font-size: 0.875rem; color: var(--text-dark); line-height: 1.65; }
.review-date { font-size: 0.75rem; color: var(--gray-text); margin-top: 10px; }
.google-badge { display: flex; align-items: center; gap: 8px; margin-top: 32px; justify-content: center; }
.google-badge svg { width: 18px; height: 18px; }
.google-badge span { font-size: 0.875rem; color: var(--gray-text); }

/* === WHY CHOOSE US === */
.why-section { background: var(--gray-light); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 16px; }
.why-icon { width: 48px; height: 48px; flex-shrink: 0; background: var(--gold); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 22px; height: 22px; fill: var(--dark); }
.why-text h4 { margin-bottom: 4px; font-size: 1.05rem; }
.why-text p { font-size: 0.875rem; color: var(--gray-text); margin-bottom: 0; }
.why-image-box { background: var(--dark-3); border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 4/3; }
.why-credentials { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.credential-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--gray-mid); padding: 8px 14px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; color: var(--text-dark); }
.credential-badge svg { width: 14px; height: 14px; fill: var(--gold); }

/* === FAQ SECTION === */
.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item { background: var(--gray-light); border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--text-dark); background: none; width: 100%; text-align: left; border: none; gap: 12px; transition: color var(--transition); }
.faq-question:hover { color: var(--gold); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: var(--gold); stroke-width: 2; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: 0.9rem; color: var(--gray-text); line-height: 1.7; border-top: 1px solid var(--gray-mid); padding-top: 16px; }
.faq-item.open .faq-answer { display: block; }

/* === CTA SECTION === */
.cta-section { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%); position: relative; overflow: hidden; padding: 80px 0; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(245,168,0,0.08) 0%, transparent 70%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; text-align: center; color: var(--white); }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-inner h2 span { color: var(--gold); }
.cta-inner p { font-size: 1.1rem; color: #bbb; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-trust { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.cta-trust-item { font-size: 0.8rem; color: #888; display: flex; align-items: center; gap: 6px; }
.cta-trust-item svg { width: 14px; height: 14px; fill: var(--gold); }

/* === FOOTER === */
.site-footer { background: var(--dark-2); color: #ccc; }
.footer-top { padding: 60px 0 40px; border-bottom: 1px solid var(--dark-4); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: #888; line-height: 1.7; margin-bottom: 16px; }
.footer-nap p { font-size: 0.85rem; color: #888; line-height: 1.8; }
.footer-nap strong { color: var(--white); }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col h3.footer-col-heading {
  font-family: var(--font-heading) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin-bottom: 16px !important;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.875rem; color: #888; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-icon { width: 36px; height: 36px; background: var(--dark-4); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.social-icon:hover { background: var(--gold); }
.social-icon svg { width: 16px; height: 16px; fill: #ccc; }
.social-icon:hover svg { fill: var(--dark); }
.social-icon:hover svg [fill="#ccc"] { fill: var(--dark); }
.social-icon:hover svg path, .social-icon:hover svg rect, .social-icon:hover svg circle { stroke: var(--white); fill: var(--black); }
.social-icon svg[stroke] { fill: none; }
.social-icon:hover svg[stroke] { fill: none; stroke: var(--dark); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: #666; }
.footer-bottom-inner a { color: #666; transition: color var(--transition); }
.footer-bottom-inner a:hover { color: var(--white); }
.footer-license { display: flex; align-items: center; gap: 8px; }
.footer-license svg { width: 14px; height: 14px; fill: var(--gold); }
.footer-bottom-links { display: flex; gap: 16px; }

/* === BREADCRUMBS === */
.breadcrumbs { padding: 14px 0; font-size: 0.85rem; color: var(--gray-text); border-bottom: 1px solid var(--gray-mid); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li + li::before { content: '/'; color: var(--gray-mid); }
.breadcrumbs a { color: var(--gold); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--text-dark); }
.breadcrumbs [aria-current="page"] { color: var(--text-dark); }

/* === PAGE HERO (inner pages) === */
.page-hero { background: var(--dark); color: var(--white); padding: 56px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(245,168,0,0.06) 0%, transparent 60%); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; color: #bbb; max-width: 620px; }

/* === CONTENT SECTIONS === */
.content-section { padding: 64px 0; }
.content-with-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--gray-light); border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; }
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.sidebar-cta-card { background: var(--dark); color: var(--white); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; text-align: center; }
.sidebar-cta-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.sidebar-cta-card p { font-size: 0.875rem; color: #aaa; margin-bottom: 20px; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* === FOCUS STYLES (Accessibility) === */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Large desktop - adjust mega menu grid */
@media (max-width: 1280px) {
  .mega-areas { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 1080px) {
  .mega-areas { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: repeat(3, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-box { display: none; }
  .review-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .hero { min-height: 70vh; }
  .services-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.15); }
  .trust-item:last-child { border-bottom: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .materials-grid-bottom { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .review-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .reviews-header-row { flex-direction: column; }
}

@media (max-width: 480px) {
  :root { --max-w: 100%; }
  .section { padding: 48px 0; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 14px 20px; }
}

/* ============================================================
   SPRINT 2 — INNER PAGE STYLES
   Pages: About, Contact, Free Estimate, FAQ, Gallery,
          Warranty, Financing, Blog
   ============================================================ */

/* --- Inner Page Hero (shared) --- */
.page-hero {
  background: var(--dark);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(245,168,0,0.03) 40px,
    rgba(245,168,0,0.03) 80px
  );
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: #888;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.page-hero-breadcrumb a { color: var(--gold); }
.page-hero-breadcrumb span { color: #555; }
.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  max-width: 800px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero-sub {
  color: #bbb;
  font-size: 1.1rem;
  max-width: 680px;
  margin-bottom: 24px;
}
.page-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Breadcrumb inline --- */
.breadcrumb {
  font-size: .8rem;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); }

/* --- Section header --- */
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 8px; }
.section-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
/* Contrast fix: on light backgrounds gold #F5A800 fails WCAG AA (2.3:1).
   Use darker amber #B07A00 (4.6:1 on white) when section-tag is inside bg-white or bg-gray */
.bg-white .section-tag,
.bg-gray .section-tag,
.brands-section .section-tag,
.section.bg-white .section-tag,
.section.bg-gray .section-tag { color: #9A6A00; }
.divider-gold {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 12px 0 16px;
}
.text-center .divider-gold { margin: 12px auto 16px; }

/* --- About Page --- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-intro-image {
  aspect-ratio: 4/3;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #aaa;
  font-size: .85rem;
  text-align: center;
  padding: 24px;
}
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.about-stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  border-bottom: 3px solid var(--gold);
}
.about-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  font-size: .8rem;
  color: #aaa;
  line-height: 1.4;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.credential-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.credential-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.credential-card-icon svg { width: 22px; height: 22px; fill: var(--dark); }
.credential-card h4 { font-size: 1rem; margin-bottom: 4px; }
.credential-card p { font-size: .85rem; color: var(--gray-text); margin: 0; }
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}
.timeline-item {
  position: relative;
  margin-bottom: 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-item h4 { font-size: 1rem; margin-bottom: 4px; }
.timeline-item p { font-size: .875rem; color: var(--gray-text); margin: 0; }

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.contact-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--dark-4);
}
.contact-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(245,168,0,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.contact-info-label { font-size: .7rem; color: #666; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.contact-info-value { font-size: .95rem; color: var(--white); font-weight: 600; }
.contact-info-value a { color: var(--gold); }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  background: var(--gray-light);
  margin-top: 20px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  margin-top: 16px;
}
.whatsapp-btn:hover { background: #1da851; }
.whatsapp-btn svg { width: 24px; height: 24px; fill: #fff; flex-shrink: 0; }

/* --- Forms (Contact + Estimate) --- */
.owr-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: .95rem;
  background: var(--white);
  transition: var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .75rem; color: var(--gray-text); }
.form-submit { align-self: flex-start; }
.form-submit.full-width { align-self: stretch; }
.form-box {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-box-dark {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-box-dark .form-group label { color: #bbb; }
.form-box-dark .form-group input,
.form-box-dark .form-group select,
.form-box-dark .form-group textarea {
  background: var(--dark-3);
  border-color: var(--dark-4);
  color: var(--white);
}
.form-box-dark .form-group input:focus,
.form-box-dark .form-group select:focus,
.form-box-dark .form-group textarea:focus { border-color: var(--gold); }
.form-box-dark .form-group select option { background: var(--dark-2); }

/* --- FAQ Page --- */
.faq-category { margin-bottom: 48px; }
.faq-category h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-mid);
}
.faq-item {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  background: var(--white);
  color: var(--text-dark);
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { background: var(--gray-light); }
.faq-question[aria-expanded="true"] { background: var(--dark); color: var(--white); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--gold); stroke-width: 2; fill: none; transition: var(--transition); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 20px 20px;
  background: var(--gray-light);
  font-size: .9rem;
  color: var(--gray-text);
  line-height: 1.7;
}
.faq-answer.open { display: block; }
.faq-answer p { margin-bottom: .75rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--text-dark); }

/* --- Gallery Page --- */
.gallery-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}
.gallery-filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--gray-mid);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  aspect-ratio: 4/3;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  text-align: center;
}
.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15,15,15,.85);
  color: #fff;
  padding: 10px 14px;
  font-size: .8rem;
  font-family: var(--font-heading);
  font-weight: 600;
}
.gallery-placeholder { font-size: 2.5rem; }
.gallery-placeholder-label { font-size: .75rem; color: #aaa; }

/* --- Warranty Page --- */
.warranty-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.warranty-card {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  background: var(--white);
  border-top: 4px solid var(--gold);
}
.warranty-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.warranty-card .warranty-years {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.warranty-card ul { padding-left: 0; }
.warranty-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .85rem;
  color: var(--gray-text);
  margin-bottom: 6px;
}
.warranty-card li svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* --- Financing Page --- */
.financing-hero-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  border: 1px solid var(--dark-4);
}
.financing-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.financing-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
}
.financing-benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.financing-benefit-icon svg { width: 22px; height: 22px; fill: var(--dark); }
.financing-benefit h4 { font-size: .95rem; margin-bottom: 4px; }
.financing-benefit p { font-size: .85rem; color: var(--gray-text); margin: 0; }

/* --- Blog Archive --- */
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.blog-posts { display: flex; flex-direction: column; gap: 28px; }
.blog-post-card {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.blog-post-img {
  height: 200px;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-post-body { padding: 24px; }
.blog-post-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: .75rem;
  color: var(--gray-text);
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.blog-post-cat {
  background: var(--gold);
  color: var(--dark);
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .7rem;
}
.blog-post-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.blog-post-body h3 a { color: var(--text-dark); }
.blog-post-body h3 a:hover { color: var(--gold); }
.blog-post-body p { font-size: .875rem; color: var(--gray-text); margin-bottom: 14px; }
.blog-read-more {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-widget h4 {
  font-size: 1rem;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 16px;
}
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a {
  font-size: .875rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--gold); }
.sidebar-links a::before { content: '›'; color: var(--gold); font-weight: bold; }

/* Estimate page steps */
.estimate-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.estimate-step {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
}
.estimate-step-num {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
}
.estimate-step h4 { font-size: .95rem; margin-bottom: 6px; }
.estimate-step p { font-size: .8rem; color: var(--gray-text); margin: 0; }

/* Responsive overrides */
@media(max-width:1080px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .warranty-cards { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid { grid-template-columns: 1fr; }
  .estimate-steps { grid-template-columns: 1fr; }
  .financing-benefits-grid { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
  .form-row { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .warranty-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0 40px; }
}

/* ── Emoji icon fix ─────────────────────────────────────────────────────────
   -webkit-font-smoothing:antialiased on body desaturates emoji in Chrome/Safari.
   .emoji-icon resets smoothing and forces the system emoji font stack.        */
.emoji-icon {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font-style: normal;
  display: block;
}

/* ============================================================
   INLINE GRID MOBILE FIX — v3 (Sprint 18b)
   All inline styles use no space after colon e.g. grid-template-columns:1fr 360px
   Covers every pattern found across all 100+ page templates.
   ============================================================ */
@media (max-width: 768px) {

  /* ── 2-col content+sidebar: 1fr Xpx ── */
  [style*="grid-template-columns:1fr 360px"],
  [style*="grid-template-columns:1fr 380px"],
  [style*="grid-template-columns:1fr 390px"],
  [style*="grid-template-columns:1fr 340px"],
  [style*="grid-template-columns:1fr 420px"],
  [style*="grid-template-columns:240px 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Equal 2-col grids ── */
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── 3-col and 4-col grids → 1-col ── */
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns:1.2fr 1fr 1fr"],
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns:repeat(5,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Auto-fill / auto-fit: 2-col on mobile ── */
  [style*="grid-template-columns:repeat(auto-fill,minmax(200px"],
  [style*="grid-template-columns:repeat(auto-fill,minmax(260px"],
  [style*="grid-template-columns:repeat(auto-fit,minmax(200px"],
  [style*="grid-template-columns:repeat(auto-fit,minmax(220px"],
  [style*="grid-template-columns:repeat(auto-fit,minmax(240px"],
  [style*="grid-template-columns:repeat(auto-fit,minmax(260px"],
  [style*="grid-template-columns:repeat(auto-fit,minmax(270px"],
  [style*="grid-template-columns:repeat(auto-fit,minmax(280px"],
  [style*="grid-template-columns:repeat(auto-fit,minmax(300px"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* ── Hero CTAs: stack full-width ── */
  .page-hero [style*="display:flex"] {
    flex-wrap: wrap !important;
  }
  .page-hero [style*="display:flex"] > .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* ── Price beat section: stack on mobile ── */
  [aria-label="Price beat guarantee"] [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Tables: horizontal scroll ── */
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  /* ── Trust bar items: wrap cleanly ── */
  [style*="justify-content:center"][style*="flex-wrap:wrap"] {
    gap: 16px !important;
  }

  /* ── Remove large horizontal padding set via inline style ── */
  [style*="padding:72px 0"],
  [style*="padding:64px 0"],
  [style*="padding:52px 0"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* ── Sidebar: remove sticky on mobile ── */
  [style*="position:sticky"] {
    position: static !important;
  }
}

@media (max-width: 480px) {

  /* ── All 2-col auto grids → 1-col on small phones ── */
  [style*="grid-template-columns:repeat(auto-fill"],
  [style*="grid-template-columns:repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Remaining 2-col grids → 1-col ── */
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Container padding on very small screens ── */
  .container { padding-left: 14px !important; padding-right: 14px !important; }
}
/* ============================================================
   ACCESSIBILITY — CONTRAST FIXES (Sprint 19 / PageSpeed 95+)
   Fixes low contrast ratio failures in PageSpeed Accessibility.
   WCAG AA requires 4.5:1 for normal text, 3:1 for large text.
   Gold #F5A800 on white = 2.3:1 (FAIL) → use #9A6A00 (4.6:1 PASS)
   ============================================================ */

/* service-card-cta: gold on white card background — FAILS 2.3:1 */
.service-card .service-card-cta,
.service-card-cta {
  color: #9A6A00;
}
.service-card.emergency .service-card-cta {
  color: var(--red); /* red on white = 4.1:1, passes for large/bold text */
}

/* section-tag: expand dark amber rule to cover all light backgrounds */
.bg-white .section-tag,
.bg-gray .section-tag,
.section-tag,
.brands-section .section-tag,
.why-section .section-tag,
.faq-section .section-tag,
.reviews-section .section-tag,
.section.bg-white .section-tag,
.section.bg-gray .section-tag {
  color: #9A6A00;
}
/* section-tag on dark backgrounds stays gold */
.bg-dark .section-tag,
.bg-dark-2 .section-tag,
.areas-section .section-tag,
.stats-section .section-tag,
.cta-section .section-tag,
.page-hero .section-tag {
  color: var(--gold);
}

/* footer links contrast: #888 on dark-2 (#1A1A1A) = 3.9:1 — borderline
   Lighten slightly to ensure pass */
.footer-col ul li a,
.footer-brand p,
.footer-nap p {
  color: #999;
}

/* footer bottom text */
.footer-bottom-inner,
.footer-bottom-inner a {
  color: #888;
}

/* review-date and small meta text: ensure readable on light bg */
.review-date,
.reviewer-city,
.reviews-count {
  color: #5a5a5a;
}

/* Material card description text */
.material-card p {
  color: #5a5a5a;
}






/* --- Social Icons Base --- */
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  transition: color 0.25s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: #ffffff; /* change to your brand color if preferred */
}

/* Fill-based icons (Facebook, YouTube) */
.social-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
  display: block;
}

/* Instagram — stroke-based, no fill */
.social-icon--stroke svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Instagram dot — needs fill, not stroke */
.social-icon--stroke svg circle {
  fill: currentColor;
  stroke: none;
}

/* YouTube play triangle — dark cutout inside the red shape */
.social-icon .yt-play {
  fill: #1a1a1a; /* stays dark so it looks like a play button */
}

.social-icon:hover .yt-play {
  fill: #111111;
}
.social-icon:hover svg path, .social-icon:hover svg rect, .social-icon:hover svg circle { stroke: var(--white); fill: var(--black); }

/* top-bar: #ccc on dark-2 (#1A1A1A) = fine, no change needed */

/* ============================================================
   END CONTRAST FIXES
   ============================================================ */