/* =========================================================
   GenServ Pro — Complete Site Styles
   Color Palette:
     Black:   #1a1a1a
     Charcoal: #2c2c2c
     Orange:  #E8871E  (primary accent / CTA)
     White:   #ffffff
     Gray:    #f4f4f4
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

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

a { text-decoration: none; }

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }

/* ===== Section Titles ===== */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #E8871E;
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    background: #E8871E;
    color: #ffffff !important;
    padding: 13px 28px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn:hover {
    background: #d4731a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 135, 30, 0.35);
}

/* btn-green now maps to orange for consistent branding */
.btn-green {
    background: #E8871E;
}
.btn-green:hover {
    background: #d4731a;
    box-shadow: 0 8px 24px rgba(232, 135, 30, 0.35);
}

.btn-dark {
    background: #1a1a1a;
}
.btn-dark:hover {
    background: #333;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff !important;
}
.btn-outline:hover {
    background: #ffffff;
    color: #1a1a1a !important;
    box-shadow: none;
}

/* ===== Top Bar ===== */
.top-bar {
    background: #1a1a1a;
    color: #ffffff;
    padding: 7px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #2c2c2c;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar a {
    color: #cccccc;
    font-weight: 600;
    transition: color 0.2s;
}
.top-bar a:hover { color: #E8871E; }

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

.top-bar-right .social-icon {
    color: #cccccc;
    font-size: 1rem;
    transition: color 0.2s;
}
.top-bar-right .social-icon:hover { color: #E8871E; }

/* ===== Header / Nav ===== */
header {
    background: #1a1a1a;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0,0,0,0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo img {
    height: 54px;
    width: auto;
}

/* Main nav */
.main-nav { display: flex; align-items: center; }

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 8px 14px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
    color: #E8871E;
}

/* EZ Schedule nav item */
.nav-ez-schedule > a {
    background: #E8871E !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 8px 16px !important;
}
.nav-ez-schedule > a:hover {
    background: #d4731a !important;
    color: #ffffff !important;
}

/* Emergency nav item */
.nav-emergency > a {
    background: #E8871E !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 8px 14px !important;
    font-size: 0.82rem !important;
    animation: pulse-orange 2s infinite;
}
.nav-emergency > a:hover {
    background: #d4731a !important;
    animation: none;
}

@keyframes pulse-orange {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,135,30,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(232,135,30,0); }
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #1a1a1a;
    border-top: 3px solid #E8871E;
    border-radius: 0 0 8px 8px;
    min-width: 200px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    z-index: 9999;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 11px 18px;
    color: #ddd;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    border-bottom: 1px solid #2a2a2a;
    transition: color 0.2s, background 0.2s, padding-left 0.2s;
}

.dropdown-menu li:last-child a { border-bottom: none; }

.dropdown-menu li a:hover {
    color: #E8871E;
    background: rgba(232,135,30,0.08);
    padding-left: 24px;
}

/* Caret */
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 2px;
    vertical-align: middle;
    transition: transform 0.2s;
}
.dropdown:hover .caret { transform: rotate(180deg); }

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 4px 8px;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    background: #111;
    border-top: 2px solid #E8871E;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    z-index: 999;
}

.mobile-nav.active { display: block; }

.mobile-nav ul { padding: 0.5rem 0 1rem; }

.mobile-nav li a {
    display: block;
    padding: 13px 24px;
    color: #ddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #1f1f1f;
    transition: color 0.2s;
}
.mobile-nav li a:hover { color: #E8871E; }

.mobile-nav .mobile-sub a {
    padding-left: 40px;
    font-size: 0.88rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: #aaa;
}
.mobile-nav .mobile-sub a:hover { color: #E8871E; }

.mobile-nav .mobile-ez a {
    background: #E8871E;
    color: #fff;
    margin: 0.5rem 1rem;
    border-radius: 6px;
    text-align: center;
    border-bottom: none;
}

.mobile-nav .mobile-emergency a {
    background: #1a1a1a;
    border: 1px solid #E8871E;
    color: #fff;
    margin: 0.25rem 1rem 0.5rem;
    border-radius: 6px;
    text-align: center;
    border-bottom: none;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 660px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/plumber.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(15,15,15,0.93) 0%,
        rgba(26,26,26,0.80) 50%,
        rgba(26,26,26,0.55) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 90px 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,135,30,0.92);
    color: #fff;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.78rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.hero-stars {
    color: #ffd700;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.hero-content h1 {
    font-size: 2.9rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-content h1 span { color: #E8871E; }

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2.2rem;
    line-height: 1.75;
    max-width: 560px;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 30px;
    padding: 6px 14px;
    color: rgba(255,255,255,0.88);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.trust-badge-icon { font-size: 1.05rem; }

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e8e8e8;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.13);
    border-color: #E8871E;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

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

.service-card h3 {
    font-size: 0.98rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: #555;
    font-size: 0.93rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.4rem;
}

.service-card .btn {
    font-size: 0.8rem;
    padding: 9px 18px;
    align-self: flex-start;
}

/* ===== Wisetack Financing Banner — Scrolling Ticker ===== */
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.wisetack-banner {
    background: #1a1a1a;
    border-top: 3px solid #E8871E;
    border-bottom: 3px solid #E8871E;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 52px;
    position: relative;
    z-index: 1;
    isolation: isolate;
}

/* Gradient fade edges so text dissolves cleanly */
.wisetack-banner::before,
.wisetack-banner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.wisetack-banner::before {
    left: 0;
    background: linear-gradient(to right, #1a1a1a 0%, transparent 100%);
}
.wisetack-banner::after {
    right: 130px; /* leave space for button */
    background: linear-gradient(to left, #1a1a1a 0%, transparent 100%);
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 38s linear infinite;
    will-change: transform;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 48px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.92rem;
    color: #e8e8e8;
    letter-spacing: 0.2px;
}

.ticker-item strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #E8871E;
    letter-spacing: 0.4px;
}

.ticker-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #E8871E;
}

.ticker-divider {
    color: #E8871E;
    font-size: 0.7rem;
    opacity: 0.6;
    flex-shrink: 0;
}

.ticker-logo-wrap {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border-radius: 4px;
    padding: 2px 4px;
    margin: 0 40px;
    flex-shrink: 0;
    line-height: 1;
}

.ticker-logo {
    height: 26px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Fixed CTA button — sits right of ticker */
.wisetack-btn {
    flex-shrink: 0;
    display: inline-block;
    background: #E8871E;
    color: #ffffff !important;
    padding: 8px 20px;
    margin-right: 16px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
    z-index: 3;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.wisetack-btn:hover {
    background: #d4731a;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(232, 135, 30, 0.4);
    text-decoration: none;
}

@media (max-width: 600px) {
    .wisetack-banner {
        height: 48px;
    }
    .ticker-item {
        font-size: 0.82rem;
        padding: 0 36px;
        gap: 8px;
    }
    .ticker-logo {
        height: 18px;
    }
    .wisetack-btn {
        font-size: 0.68rem;
        padding: 7px 12px;
        margin-right: 10px;
        letter-spacing: 0.8px;
    }
    .wisetack-banner::after {
        right: 100px;
    }
}

/* ===== Why Choose Us strip ===== */
.why-strip {
    background: #1a1a1a;
    padding: 60px 0;
    color: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.why-item { padding: 1.2rem; }

.why-icon {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
    display: block;
}

.why-item h4 {
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.why-item p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.7);
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 0;
    background: #f4f4f4;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2.2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border-left: 4px solid #E8871E;
    position: relative;
    transition: transform 0.3s;
}

.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-stars {
    color: #ffd700;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #444;
    font-size: 0.97rem;
    line-height: 1.78;
    margin-bottom: 1.2rem;
}

.testimonial-card blockquote::before {
    content: '\201C';
    font-size: 2.8rem;
    color: #E8871E;
    line-height: 0;
    vertical-align: -0.5rem;
    margin-right: 4px;
    font-family: Georgia, serif;
}

.testimonial-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-source {
    font-size: 0.8rem;
    color: #999;
    margin-top: 2px;
}

/* ===== About / Mission Strip ===== */
.about-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.about-text .section-title { text-align: left; }
.about-text .section-title::after { margin: 0.75rem 0 0; }

.about-text p {
    color: #555;
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.about-text .btn { margin-top: 0.5rem; }

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    object-fit: cover;
    max-height: 480px;
}

/* ===== CTA Banner ===== */
.cta-banner {
    padding: 90px 0;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-banner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    margin-bottom: 2.2rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

/* ===== Brands Section ===== */
.brands {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

/* ===== Footer ===== */
footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand img { height: 50px; margin-bottom: 1rem; }

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #aaa;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1.05rem;
    transition: background 0.25s, color 0.25s;
    font-weight: 700;
}
.footer-social a:hover { background: #E8871E; color: #fff; }

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #E8871E;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.2s, padding-left 0.2s;
}
.footer-col ul li a:hover { color: #E8871E; padding-left: 4px; }

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #aaa;
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #aaa;
    transition: color 0.2s;
}
.footer-col a:hover { color: #E8871E; }

/* Maps embed */
.footer-map {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 160px;
    border: 0;
    display: block;
}

/* Newsletter */
.footer-newsletter input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #222;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    outline: none;
    transition: border-color 0.2s;
}
.footer-newsletter input[type="email"]:focus { border-color: #E8871E; }

.footer-newsletter .btn {
    width: 100%;
    padding: 11px;
    font-size: 0.88rem;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #666;
}

.footer-bottom a { color: #777; }
.footer-bottom a:hover { color: #E8871E; }

/* ===== EZ Schedule Modal ===== */
.ez-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.ez-modal-overlay.active { display: flex; }


    background: #1a1a1a;
    border-radius: 14px;
    padding: 2.5rem 2rem;
    max-width: 440px;
    width: 92%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 70px rgba(0,0,0,0.6);
    animation: ezPop 0.25s ease;
}

@keyframes ezPop {
    from { transform: scale(0.88); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.ez-close {
    position: absolute;
    top: 14px; right: 18px;
    background: none; border: none;
    font-size: 1.9rem;
    cursor: pointer;
    color: #bbb;
    line-height: 1;
}
.ez-close:hover { color: #fff; }

.ez-modal .ez-logo { height: 50px; margin: 0 auto 1rem; }

.ez-modal h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}
.ez-modal p { color: #ccc; margin-bottom: 1.5rem; font-size: 0.95rem; }

.ez-buttons { display: flex; flex-direction: column; gap: 0.8rem; }

.ez-btn { font-size: 1.05rem; padding: 15px 24px; text-align: center; }

.ez-call { background: #E8871E !important; }
.ez-call:hover { background: #d4731a !important; box-shadow: 0 8px 24px rgba(232,135,30,0.35) !important; }

/* ===== Page Hero (sub-pages) ===== */
.page-hero {
    position: relative;
    background: #1a1a1a;
    color: #ffffff;
    padding: 90px 24px;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 300px; height: 300px;
    background: rgba(232,135,30,0.06);
    border-radius: 50%;
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-hero p {
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    position: relative;
    z-index: 1;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: #E8871E; }

/* ===== About Values ===== */
.values-section { padding: 100px 0; background: #f4f4f4; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.value-card {
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid transparent;
}
.value-card:hover {
    transform: translateY(-5px);
    border-top-color: #E8871E;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.value-card .value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-card p { color: #555; font-size: 0.93rem; line-height: 1.65; }

/* ===== Team Section ===== */
.team-section { padding: 100px 0; background: #ffffff; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.team-card { background: #f4f4f4; border-radius: 10px; overflow: hidden; text-align: center; }

.team-card img { width: 100%; height: 260px; object-fit: cover; }

.team-card-body { padding: 1.5rem; }

.team-card h3 { font-size: 1.05rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.5px; }

.team-card p { color: #666; font-size: 0.9rem; }

/* ===== Contact Page ===== */
.contact-section { padding: 100px 0; background: #fff; }

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

.contact-info-block h3 { font-size: 1.4rem; margin-bottom: 1.2rem; color: #1a1a1a; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

.contact-method-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: #f4f4f4;
    border-radius: 10px;
}

.contact-method-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-method-card h4 { font-size: 0.9rem; color: #1a1a1a; margin-bottom: 0.25rem; text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; }

.contact-method-card a { color: #E8871E; font-weight: 700; font-size: 1rem; }
.contact-method-card a:hover { color: #d4731a; }

.contact-method-card p { font-size: 0.88rem; color: #777; margin-top: 2px; }

/* Contact form */
.contact-form-block h3 { font-size: 1.4rem; margin-bottom: 1.2rem; color: #1a1a1a; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

.contact-form .form-group { margin-bottom: 1.2rem; }

.contact-form label { display: block; font-size: 0.88rem; font-weight: 600; color: #333; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.3px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background: #fafafa;
    transition: border-color 0.2s;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: #E8871E; background: #fff; }

.contact-form textarea { min-height: 130px; resize: vertical; }

.contact-form .btn { margin-top: 0.5rem; padding: 14px 36px; }

/* ===== Service Areas ===== */
.service-areas-section { padding: 100px 0; background: #f4f4f4; }

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.area-group {
    background: #fff;
    border-radius: 10px;
    padding: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

.area-group h3 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #E8871E;
}

.area-group ul { list-style: none; }

.area-group li {
    padding: 0.35rem 0;
    color: #555;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.area-group li::before {
    content: '✓';
    color: #E8871E;
    font-weight: 700;
    font-size: 0.85rem;
}

/* ===== Transparent Pricing ===== */
.pricing-section { padding: 100px 0; background: #fff; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.pricing-card {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); border-color: #E8871E; }

.pricing-card.featured { border-color: #E8871E; }

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #E8871E;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 20px;
}

.pricing-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.pricing-card h3 { font-size: 1.2rem; font-weight: 800; color: #1a1a1a; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.5px; }

.pricing-card p { color: #666; font-size: 0.93rem; line-height: 1.65; margin-bottom: 1.5rem; }

.pricing-features { list-style: none; text-align: left; margin-bottom: 2rem; }

.pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.92rem;
    color: #444;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.pricing-features li::before { content: '✓'; color: #E8871E; font-weight: 700; flex-shrink: 0; }

/* ===== Home Shield ===== */
.shield-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.shield-card {
    background: #fff;
    border-radius: 10px;
    padding: 2.2rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    border-top: 4px solid #E8871E;
}

.shield-card h3 { font-size: 1.05rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.75rem; margin-top: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; }

.shield-card p { color: #555; font-size: 0.93rem; line-height: 1.65; }

.shield-icon { font-size: 2.2rem; }

/* ===== HVAC ===== */
.hvac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.hvac-item {
    background: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

.hvac-item img { width: 100%; height: 200px; object-fit: cover; }

.hvac-item-body { padding: 1.5rem; }

.hvac-item h3 { font-size: 0.98rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.5px; }

.hvac-item p { color: #555; font-size: 0.93rem; line-height: 1.65; }

/* ===== Commercial ===== */
.commercial-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    border-top: 3px solid transparent;
    transition: border-top-color 0.3s, transform 0.3s;
}
.feature-item:hover { border-top-color: #E8871E; transform: translateY(-4px); }

.feature-item .feature-icon { font-size: 2.6rem; margin-bottom: 1rem; }

.feature-item h3 { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; }

.feature-item p { color: #555; font-size: 0.93rem; line-height: 1.65; }

/* ===== Careers ===== */
.careers-section { padding: 100px 0; background: #fff; }

.job-card {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    transition: box-shadow 0.3s, border-left 0.3s;
    border-left: 3px solid transparent;
}

.job-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); border-left-color: #E8871E; }

.job-info h3 { font-size: 1.15rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.5px; }

.job-meta { display: flex; gap: 1rem; flex-wrap: wrap; }

.job-tag {
    background: rgba(232,135,30,0.1);
    color: #E8871E;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Reviews Page ===== */
.reviews-section { padding: 100px 0; background: #f4f4f4; }

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.rating-summary {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.rating-big {
    font-size: 4rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.rating-stars { font-size: 1.5rem; color: #ffd700; letter-spacing: 4px; margin: 0.3rem 0; }

.rating-count { color: #888; font-size: 0.9rem; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* ===== Blog ===== */
.blog-section { padding: 100px 0; background: #fff; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e8e8e8;
}

.blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }

.blog-card img { width: 100%; height: 210px; object-fit: cover; }

.blog-card-body { padding: 1.5rem; }

.blog-category {
    display: inline-block;
    background: rgba(232,135,30,0.10);
    color: #E8871E;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.blog-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
    line-height: 1.45;
}

.blog-card p { color: #555; font-size: 0.92rem; line-height: 1.65; margin-bottom: 1rem; }

.blog-card .read-more {
    color: #E8871E;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s, gap 0.2s;
}
.blog-card .read-more:hover { color: #d4731a; gap: 8px; }

.blog-meta { font-size: 0.8rem; color: #aaa; margin-bottom: 0.5rem; }

/* ===== Emergency CTA Section ===== */
.emergency-cta {
    padding: 70px 0;
    background: #c0392b;
    color: #fff;
    text-align: center;
}
.emergency-cta h2 { font-size: 2.1rem; font-weight: 800; margin-bottom: 0.75rem; letter-spacing: 0.5px; text-transform: uppercase; }
.emergency-cta p { font-size: 1.05rem; margin-bottom: 2rem; color: rgba(255,255,255,0.85); }

/* ===== Plumbing Services ===== */
.plumbing-services { padding: 100px 0; background: #fff; }

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.service-item {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 2.2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-item:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.11); }

.service-item img { width: 100%; height: 180px; object-fit: cover; border-radius: 7px; margin-bottom: 1.2rem; }

.service-item h3 { font-size: 0.98rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; }

.service-item p { color: #555; font-size: 0.93rem; line-height: 1.65; margin-bottom: 1.5rem; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .main-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .header-container { position: relative; }

    .about-inner { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }

    .hero { min-height: 520px; }
    .hero-content h1 { font-size: 2.1rem; }
    .hero-content p { font-size: 0.97rem; }
    .hero-badge { font-size: 0.6rem; padding: 4px 10px; gap: 5px; letter-spacing: 1px; }
    .hero-stars { font-size: 0.85rem; letter-spacing: 1px; }

    .section-title { font-size: 1.7rem; letter-spacing: 1.5px; }

    .page-hero h1 { font-size: 1.9rem; }

    .cta-banner h2 { font-size: 1.8rem; }

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

@media (max-width: 560px) {
    .hero-content h1 { font-size: 1.65rem; }
    .section-title { font-size: 1.4rem; letter-spacing: 1px; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-trust { gap: 0.75rem; }
    .trust-badge { font-size: 0.73rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* =========================================================
   SVG Icon System — Replaces all emoji icons site-wide
   ========================================================= */

/* Base class for all inline SVG icons */
.svg-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    transition: opacity 0.2s;
}

/* Star icon default size */
.icon-star {
    width: 18px;
    height: 18px;
}

/* ---- Buttons: ensure icon + text align nicely ---- */
.btn .svg-icon,
.ez-btn .svg-icon {
    width: 16px;
    height: 16px;
    margin-right: 2px;
}

/* ---- Top bar icons ---- */
.top-bar .svg-icon {
    width: 14px;
    height: 14px;
    opacity: 0.85;
}

/* ---- Nav emergency link ---- */
.nav-emergency .svg-icon,
.mobile-emergency .svg-icon {
    width: 14px;
    height: 14px;
}

/* ---- Trust badge icons ---- */
.trust-badge-icon {
    display: inline-flex;
    align-items: center;
}
.trust-badge-icon .svg-icon {
    width: 15px;
    height: 15px;
}

/* ---- Why-strip icons (large, centered) ---- */
.why-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: inherit; /* remove old emoji font-size */
    margin-bottom: 0.75rem;
}
.why-icon .svg-icon {
    width: 38px;
    height: 38px;
    color: #E8871E;
}

/* ---- Contact method icons ---- */
.contact-method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-method-icon .svg-icon {
    width: 30px;
    height: 30px;
    color: #E8871E;
    flex-shrink: 0;
}

/* ---- Value card icons (about, careers) ---- */
.value-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}
.value-icon .svg-icon {
    width: 40px;
    height: 40px;
    color: #E8871E;
}

/* ---- Feature icons (commercial page) ---- */
.feature-item .feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}
.feature-item .feature-icon .svg-icon {
    width: 42px;
    height: 42px;
    color: #E8871E;
}

/* ---- Shield/plan icons (home-shield) ---- */
.shield-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}
.shield-icon .svg-icon {
    width: 38px;
    height: 38px;
    color: #E8871E;
}

/* ---- Pricing icons (transparent-pricing, home-shield) ---- */
.pricing-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}
.pricing-icon .svg-icon {
    width: 40px;
    height: 40px;
    color: #E8871E;
}

/* ---- H1 / page hero icon ---- */
.page-hero h1 .svg-icon,
h1 .svg-icon {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    color: #E8871E;
    margin-right: 4px;
}

/* ---- Footer contact icons ---- */
.footer-newsletter p .svg-icon {
    width: 15px;
    height: 15px;
    opacity: 0.75;
}

/* ---- Footer social icons ---- */
.footer-social .svg-icon {
    width: 16px;
    height: 16px;
    display: block;
}

/* ---- Star rating containers: switch to flex layout ---- */
.hero-stars {
    display: inline-flex;
    gap: 3px;
    align-items: center;
    letter-spacing: 0; /* override old letter-spacing */
}
.hero-stars .icon-star {
    width: 18px;
    height: 18px;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    align-items: center;
    letter-spacing: 0; /* override old letter-spacing */
    margin-bottom: 0.75rem;
}
.testimonial-stars .icon-star {
    width: 16px;
    height: 16px;
}

.rating-stars {
    display: flex;
    gap: 3px;
    align-items: center;
    letter-spacing: 0; /* override old letter-spacing */
    margin: 0.3rem 0;
}
.rating-stars .icon-star {
    width: 22px;
    height: 22px;
}

/* ---- Yelp button icon ---- */
.btn .svg-icon.icon-star {
    fill: #fff;
    stroke: #fff;
    width: 14px;
    height: 14px;
}

/* ---- Social icon in top-bar-right ---- */
.top-bar-right .social-icon .svg-icon {
    width: 13px;
    height: 13px;
}

/* ---- Emergency heading icons ---- */
h2 .svg-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    color: #E8871E;
    margin-right: 4px;
}

/* =========================================================
   Polish Items — v2
   ========================================================= */

/* Item 1: Top Bar → Brand Orange */
.top-bar {
    background: #E8871E !important;
    border-bottom: 1px solid #d4731a !important;
    color: #ffffff !important;
}
.top-bar a { color: #ffffff !important; }
.top-bar a:hover { color: rgba(255,255,255,0.75) !important; }
.top-bar span { color: #ffffff !important; }
.top-bar .svg-icon { color: #ffffff !important; }
.top-bar-right .social-icon { color: #ffffff !important; }
.top-bar-right .social-icon:hover { color: rgba(255,255,255,0.75) !important; }

/* Item 2: Social Icons → Consistent gray in footer, one line */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.top-bar-right .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #ffffff !important;
    font-size: 0.8rem;
    font-weight: 700;
    transition: opacity 0.2s;
    text-decoration: none;
}
.top-bar-right .social-icon:hover { opacity: 0.75; }
.top-bar-right .social-icon .svg-icon {
    width: 14px;
    height: 14px;
    display: block;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: nowrap;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #999 !important;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background 0.25s, color 0.25s;
}
.footer-social a:hover {
    background: #E8871E;
    color: #fff !important;
}
.footer-social .svg-icon {
    width: 16px;
    height: 16px;
    display: block;
    color: inherit;
}

/* Item 3: Hero stars → white on orange badge */
.hero-badge .hero-stars .icon-star {
    fill: #ffffff !important;
    stroke: #ffffff !important;
}

/* Item 4: EZ Modal → light gray background; card backgrounds */

    background: #1a1a1a !important;
}

/* Item 6: CTA Banner → subtle bg image */
.cta-banner {
    position: relative;
}
.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/heating.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner > .container { position: relative; z-index: 2; }

/* Item 7: About section — text-only with dark background */
.about-section {
    background: #1a1a1a;
    color: #ffffff;
    padding: 100px 0;
}
.about-section .about-inner {
    grid-template-columns: 1fr;
    max-width: 780px;
    margin: 0 auto;
    gap: 0;
    text-align: center;
}
.about-text .section-title {
    text-align: center;
    color: #ffffff;
}
.about-text .section-title::after {
    margin: 0.75rem auto 0;
}
.about-text p {
    color: rgba(255,255,255,0.80);
    font-size: 1.05rem;
}
.about-text .btn {
    margin-top: 1.5rem;
}
/* Hide the about-image block */
.about-image {
    display: none;
}

/* Item 8: Brands section — dark background behind brand images */
.brands {
    background: #f4f4f4;
}
.brands-panel {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem 3rem;
    display: inline-block;
    margin-top: 1rem;
}
.brands-panel img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Item 9: Footer map grayscale */
.footer-map iframe {
    filter: grayscale(100%);
    transition: filter 0.4s;
}
.footer-map:hover iframe {
    filter: grayscale(0%);
}

/* Item 5: Licensed & Insured (why-strip) — spacing cleanup */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    text-align: center;
    align-items: start;
}
.why-item {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* ============================================================
   COUPONS & PROMOTIONS PAGE
   ============================================================ */

/* Hero */
.coupon-hero {
    background: #1a1a1a;
    padding: 60px 20px 50px;
    text-align: center;
}
.coupon-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}
.coupon-hero-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #E8871E;
    margin: 0.75rem auto 0;
    border-radius: 2px;
}
.coupon-hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin: 0.75rem 0 0;
}

/* Section */
.coupons-section {
    background: #f4f4f4;
    padding: 60px 20px 50px;
}

/* Grid */
.coupons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

/* Card */
.coupon-card {
    background: #ffffff;
    border: 3px dashed #E8871E;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}
.coupon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(232, 135, 30, 0.18);
}
.coupon-card-inner {
    padding: 30px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    flex: 1;
}

/* Scissors decoration */
.coupon-scissors {
    font-size: 0.75rem;
    color: #E8871E;
    letter-spacing: -2px;
    margin-bottom: 4px;
    opacity: 0.6;
    width: 100%;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
}

/* Offer amount */
.coupon-amount {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #E8871E;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Offer title */
.coupon-title {
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
}

/* Description */
.coupon-desc {
    font-size: 0.9rem;
    color: #444;
    font-weight: 500;
    line-height: 1.4;
}

/* Button */
.coupon-btn {
    display: inline-block;
    background: #E8871E;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 11px 22px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s ease, transform 0.15s ease;
    text-decoration: none;
}
.coupon-btn:hover {
    background: #cf7418;
    transform: scale(1.03);
}

/* Expiration */
.coupon-expires {
    font-size: 0.78rem;
    color: #888;
    font-style: italic;
    margin-top: 4px;
}

/* Disclaimer */
.coupon-disclaimer {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.coupon-disclaimer p {
    font-size: 0.78rem;
    color: #777;
    line-height: 1.6;
    font-style: italic;
}

/* Responsive: 2 columns on tablet */
@media (max-width: 900px) {
    .coupons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Responsive: 1 column on mobile */
@media (max-width: 560px) {
    .coupons-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .coupon-hero {
        padding: 40px 16px 36px;
    }
    .coupon-card-inner {
        padding: 24px 20px 20px;
    }
}
