/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #94bc3e;
    color: #fff;
    border: 2px solid #94bc3e;
}

.btn-primary:hover {
    background-color: #7da832;
    border-color: #7da832;
}

.btn-outline {
    background-color: transparent;
    color: #94bc3e;
    border: 2px solid #94bc3e;
}

.btn-outline:hover {
    background-color: #94bc3e;
    color: #fff;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 15px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 30px;
    background-color: #94bc3e;
    border: 2px solid #94bc3e;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background-color: #7da832;
    border-color: #7da832;
    color: #fff;
}

.header-cta svg {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 678px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero-bg.webp') center center/cover no-repeat;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 60px 80px 40px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-description {
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Hero Checklist */
.hero-checklist {
    list-style: none;
    text-align: left;
    width: auto;
    margin: 0 auto 30px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 500;
}

.check-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background-color: #94bc3e;
    border-radius: 50%;
    position: relative;
}

.check-icon::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 5px;
    width: 8px;
    height: 14px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-outline {
    color: #fff;
    border-color: #fff;
}

.hero .btn-outline:hover {
    background-color: #fff;
    color: #2d2d2d;
}

/* Image Gallery Section */
.image-gallery {
    background-color: #fffaf6;
    padding: 40px 0;
}

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

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 5px;
}

.image-gallery-white {
    background-color: #fff;
}

/* Heating Services Section */
.heating-services {
    background-color: #fff;
    padding: 60px 0;
}

.heating-services .container {
    text-align: center;
}

.heating-services-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.heating-services-images img {
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1062 / 832;
}

.heating-services h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.section-divider {
    width: 25%;
    height: 3px;
    background-color: #94bc3e;
    margin: 0 auto 15px;
}

.decorative-divider {
    display: block;
    width: 200px;
    height: auto;
    margin: 0 auto 15px;
    filter: brightness(0) saturate(100%) invert(69%) sepia(62%) saturate(398%) hue-rotate(39deg) brightness(92%) contrast(91%);
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.service-boxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin: 0 auto;
}

.service-box {
    background-color: #fffaf6;
    padding: 20px 25px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    transition: all 0.3s ease;
}

.service-box:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-emoji {
    font-size: 28px;
    flex-shrink: 0;
}

.service-name {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
}

/* Black CTA Section */
.black-cta {
    background-color: #000;
    padding: 60px 80px 40px;
    text-align: center;
}

.black-cta h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.black-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.black-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-outline-orange {
    background-color: transparent;
    color: #94bc3e;
    border: 2px solid #94bc3e;
}

.btn-outline-orange:hover {
    background-color: #94bc3e;
    color: #fff;
}

.black-cta-icon {
    margin-top: 10px;
}

.black-cta-icon img {
    width: auto;
    height: auto;
    max-width: 120px;
    border-radius: 0;
}

/* Signs You Need Service Section */
.signs-section {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.signs-header-black {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
    line-height: 1.2;
}

.signs-header-orange {
    font-size: 28px;
    font-weight: 700;
    color: #94bc3e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.signs-section .section-divider {
    margin-bottom: 30px;
}

.signs-boxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin: 0 auto 30px;
}

.signs-cta {
    display: inline-flex;
}

.signs-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.signs-cta-buttons .btn {
    min-width: 250px;
}

/* Disclaimer */
.disclaimer {
    font-size: 15px;
    font-weight: 700;
    color: #2d2d2d;
    margin-top: 20px;
}

/* About Us */
.about-us {
    margin-top: 60px;
    padding-top: 60px;
}

.about-us h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.text-black {
    color: #000;
}

.text-orange {
    color: #94bc3e;
}

.about-image {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 300px;
    margin-top: 15px;
    margin-left: 15px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 60%;
    height: 60%;
    border-top: 1px solid #94bc3e;
    border-left: 1px solid #94bc3e;
    pointer-events: none;
    z-index: -1;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    width: 60%;
    height: 60%;
    border-top: 1px solid #94bc3e;
    border-left: 1px solid #94bc3e;
    pointer-events: none;
    z-index: -1;
}

.about-image img {
    display: block;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 0 0 50px 0;
    position: relative;
    z-index: 1;
}

.about-text {
    width: 100%;
    margin: 0 auto 30px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.about-text p:last-child {
    margin-bottom: 0;
}


/* Process Section */
.process-section {
    background-color: #fffaf6;
    padding: 60px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.process-box {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.process-icon {
    margin-bottom: 20px;
}

.process-icon svg {
    width: 80px;
    height: 80px;
}

.process-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.process-checklist {
    list-style: none;
}

.process-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

.process-checklist li:last-child {
    margin-bottom: 0;
}

.process-checklist .check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.process-checklist .check-icon::after {
    left: 6px;
    top: 3px;
    width: 5px;
    height: 9px;
    border-width: 0 2px 2px 0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.differentiators {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}

.differentiator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.differentiator svg {
    flex-shrink: 0;
}

.differentiator h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.why-choose-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.schedule-btn {
    min-width: 250px;
}

.why-choose-image {
    margin-top: 10px;
}

.why-choose-image img {
    max-width: 100%;
    width: 600px;
    border-radius: 5px;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background-color: #fffaf6;
    text-align: center;
}

.reviews-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.reviews-section .section-divider {
    margin-bottom: 15px;
}

.reviews-subtitle {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Service Area Section */
.service-area {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.service-area h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.service-area-image {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.service-area-image .about-image-wrapper {
    max-width: 300px;
    margin-top: 15px;
    margin-left: 15px;
}

.service-area-image img {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 0 0 50px 0;
    position: relative;
    z-index: 1;
}

.service-area-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.area-column {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.area-column li {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.area-column li::marker {
    color: #94bc3e;
}

/* Our Guarantee Section */
.our-guarantee {
    padding: 60px 0;
    background-color: #fffaf6;
    text-align: center;
}

.our-guarantee h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.guarantee-list {
    list-style: none;
    width: 100%;
    margin: 0 auto 30px;
    text-align: left;
}

.guarantee-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
}

.star-bullet {
    font-size: 20px;
    flex-shrink: 0;
}

.guarantee-icon {
    margin-top: 10px;
}

.guarantee-icon img {
    max-width: 80px;
    height: auto;
    border-radius: 0;
}

/* Trust the Experts Section */
.trust-experts {
    position: relative;
    padding: 80px 0;
    background: url('images/trust-experts-bg.webp') center center/cover no-repeat;
    text-align: center;
}

.trust-experts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.trust-experts .container {
    position: relative;
    z-index: 1;
}

.trust-experts-content {
    width: 100%;
    margin: 0 auto;
}

.trust-experts h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.trust-experts-body {
    font-size: 17px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 25px;
}

.trust-experts-subheadline {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.trust-experts-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.trust-experts-buttons .btn {
    min-width: 250px;
}

.trust-experts .btn-outline {
    color: #fff;
    border-color: #fff;
}

.trust-experts .btn-outline:hover {
    background-color: #fff;
    color: #2d2d2d;
}

.trust-experts-tagline {
    font-size: 14px;
    color: #fff;
}

/* Footer */
.footer {
    background-color: #2d2d2d;
    padding: 20px 0;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 80px;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 38px;
    }

    .gallery-grid img {
        height: 150px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Consistent 40px side padding on mobile */
    .container {
        padding: 0 40px;
    }

    /* Mobile Header - Logo stacked on top of call button */
    .header-container {
        padding: 15px 40px;
        flex-direction: column;
        gap: 12px;
    }

    .logo img {
        width: 140px;
    }

    .header-cta {
        padding: 10px 20px;
        font-size: 14px;
        width: auto;
        max-width: none;
        justify-content: center;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
        margin-top: 120px;
    }

    .hero-content {
        padding: 60px 40px 40px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-checklist {
        max-width: 100%;
    }

    .hero-checklist li {
        font-size: 14px;
    }

    /* Image Gallery Mobile */
    .image-gallery {
        padding: 30px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .gallery-grid img {
        height: 100px;
    }

    /* Heating Services Mobile */
    .heating-services {
        padding: 40px 0;
    }

    .heating-services h2 {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .service-box {
        padding: 15px 20px;
    }

    .service-emoji {
        font-size: 24px;
    }

    .service-name {
        font-size: 14px;
    }

    /* Black CTA Mobile */
    .black-cta {
        padding: 40px 0;
    }

    .black-cta h2 {
        font-size: 22px;
    }

    .black-cta p {
        font-size: 15px;
    }

    .black-cta-buttons .btn {
        width: 100%;
        max-width: none;
    }

    /* Signs Section Mobile */
    .signs-section {
        padding: 40px 0;
    }

    .signs-header-black,
    .signs-header-orange {
        font-size: 22px;
    }

    .signs-cta {
        width: 100%;
        max-width: none;
    }

    .signs-cta-buttons {
        width: 100%;
    }

    .signs-cta-buttons .btn {
        width: 100%;
        min-width: auto;
    }

    /* About Us Mobile */
    .about-us {
        margin-top: 40px;
        padding-top: 40px;
    }

    .about-us h2 {
        font-size: 26px;
    }

    .about-image img {
        max-width: 250px;
    }

    .about-text p {
        font-size: 14px;
    }

    .about-icons img {
        width: 50px;
        height: 50px;
    }

    /* Process Section Mobile */
    .process-section {
        padding: 40px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-box {
        padding: 25px 20px;
    }

    .process-box h3 {
        font-size: 18px;
    }

    .process-checklist li {
        font-size: 13px;
    }

    /* Why Choose Us Mobile */
    .why-choose-us {
        padding: 40px 0;
    }

    .why-choose-us h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .differentiator h3 {
        font-size: 18px;
    }

    .differentiator svg {
        width: 32px;
        height: 32px;
    }

    .schedule-btn {
        width: 100%;
        max-width: none;
    }

    .why-choose-buttons {
        width: 100%;
    }

    .why-choose-buttons .btn {
        width: 100%;
    }

    .why-choose-image img {
        width: 100%;
    }

    /* Reviews Section Mobile */
    .reviews-section {
        padding: 40px 0;
    }

    .reviews-section h2 {
        font-size: 22px;
    }

    .reviews-subtitle {
        font-size: 14px;
    }

    /* Service Area Mobile */
    .service-area {
        padding: 40px 0;
    }

    .service-area h2 {
        font-size: 26px;
    }

    .service-area-list {
        gap: 15px;
    }

    .area-column li {
        font-size: 13px;
        margin-bottom: 6px;
    }

    /* Our Guarantee Mobile */
    .our-guarantee {
        padding: 40px 0;
    }

    .our-guarantee h2 {
        font-size: 26px;
    }

    .guarantee-list li {
        font-size: 14px;
    }

    .star-bullet {
        font-size: 18px;
    }

    /* Trust the Experts Mobile */
    .trust-experts {
        padding: 50px 0;
    }

    .trust-experts h2 {
        font-size: 26px;
    }

    .trust-experts-body {
        font-size: 15px;
    }

    .trust-experts-subheadline {
        font-size: 18px;
    }

    .trust-experts-buttons {
        width: 100%;
    }

    .trust-experts-buttons .btn {
        width: 100%;
        min-width: auto;
    }

    /* Footer Mobile */
    .footer-container {
        padding: 0 40px;
    }
}

/* Scheduling Modal */
.scheduling-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.scheduling-modal.active {
    display: flex;
}

.scheduling-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.scheduling-modal-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background-color: #fff;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
}

.scheduling-modal-content .zen-wrapper {
    box-shadow: none !important;
    border: none !important;
    border-radius: 10px !important;
    max-width: 100% !important;
}

.scheduling-modal-content .zenbooker-inline-widget {
    height: 80vh !important;
    max-height: 600px;
    border-radius: 10px !important;
}

.scheduling-modal-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    z-index: 2;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scheduling-modal-close:hover {
    color: #94bc3e;
    background: #fff;
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: none;
    }
}
