﻿
/* =========================
   GLOBAL
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

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

.container {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 90px;
    display: block;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .navigation a {
        font-size: 15px;
        font-weight: 600;
        color: #333;
        transition: color 0.2s ease;
    }

        .navigation a:hover {
            color: #c62828;
        }

.nav-button {
    background: #c62828;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
}

    .nav-button:hover {
        background: #a91f1f;
    }


/* =========================
   HERO
========================= */

.hero {
    background: #f7f7f7;
    padding: 110px 0;
}

.hero-content {
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 700px;
}

.eyebrow {
    color: #c62828;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
    color: #181818;
}

.hero-description {
    font-size: 20px;
    color: #555;
    max-width: 620px;
    margin-bottom: 35px;
}

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


/* =========================
   BUTTONS
========================= */

.button {
    display: inline-block;
    padding: 13px 25px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s ease;
}

.button-primary {
    background: #c62828;
    color: #fff;
}

    .button-primary:hover {
        background: #a91f1f;
    }

.button-secondary {
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
}

    .button-secondary:hover {
        border-color: #999;
    }


/* =========================
   SECTIONS
========================= */

.section {
    padding: 90px 0;
}

.section-light {
    background: #f7f7f7;
}

.section-dark {
    background: #202020;
    color: #fff;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 50px;
}

    .section-heading.centered {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .section-heading h2 {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 18px;
        letter-spacing: -0.5px;
    }

    .section-heading p:not(.eyebrow) {
        color: #666;
        font-size: 17px;
    }

.section-dark .section-heading p {
    color: #ccc;
}


/* =========================
   ABOUT
========================= */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

    .about-content > div:first-child p {
        font-size: 18px;
        color: #555;
        margin-bottom: 20px;
    }

.about-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-point {
    border-left: 3px solid #c62828;
    padding-left: 20px;
}

    .about-point h3 {
        font-size: 19px;
        margin-bottom: 5px;
    }

    .about-point p {
        color: #666;
    }


/* =========================
   SERVICES
========================= */

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

.service-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

.service-icon {
    color: #c62828;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    font-size: 15px;
}


/* =========================
   PRICING
========================= */

.pricing-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pricing-group {
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 35px;
}

    .pricing-group h3 {
        font-size: 25px;
        margin-bottom: 25px;
    }

.price-list {
    border-top: 1px solid #ddd;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 17px 0;
    border-bottom: 1px solid #ddd;
}

    .price-row strong {
        font-size: 18px;
    }

.pricing-note {
    margin-top: 20px;
    color: #777;
    font-size: 14px;
}

.house-pricing p {
    color: #666;
    margin-bottom: 18px;
}

.house-pricing .button {
    margin-top: 10px;
}


/* =========================
   SERVICE AREA
========================= */

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

    .service-area-content h2 {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .service-area-content > div:first-child p:last-child {
        color: #ccc;
        font-size: 17px;
    }

.cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .cities span {
        border: 1px solid #555;
        padding: 10px 16px;
        border-radius: 4px;
        color: #eee;
    }


/* =========================
   CONTACT
========================= */

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

    .contact-section .section-heading {
        margin-left: auto;
        margin-right: auto;
    }

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-card {
    min-width: 280px;
    padding: 25px 30px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .contact-card:hover {
        border-color: #c62828;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    }

.contact-label {
    display: block;
    color: #c62828;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-card strong {
    font-size: 18px;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background: #111;
    color: #aaa;
    padding: 25px 0;
    font-size: 13px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .navigation {
        gap: 15px;
    }

        .navigation a:not(.nav-button) {
            display: none;
        }

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

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content,
    .pricing-section,
    .service-area-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


@media (max-width: 600px) {

    .header-content {
        min-height: 70px;
    }

    .logo img {
        width: 155px;
    }

    .nav-button {
        padding: 8px 14px;
    }

    .hero {
        padding: 75px 0;
    }

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

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

    .section {
        padding: 65px 0;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .pricing-group {
        padding: 25px;
    }

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

    .contact-card {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
