/* =========================================
   AIR TIGHT INSULATORS
   Main Website Styles
   ========================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #111111;
    background-color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

/* =========================================
   HEADER
   ========================================= */

.site-header {
    min-height: 92px;

    background-color: #ffffff;

    display: flex;
    align-items: center;

    padding: 12px 5%;

    border-bottom: 3px solid #1268b3;

    gap: 35px;

    position: relative;

    z-index: 1000;
}

/* =========================================
   LOGO
   ========================================= */

.logo {
    display: flex;
    align-items: center;
    min-width: 190px;
}

.logo img {
    width: 205px;

    height: auto;

    display: block;
}


/* =========================================
   NAVIGATION
   ========================================= */

.navigation {
    display: flex;

    align-items: center;

    gap: 28px;

    flex: 1;
}

.navigation a {
    text-decoration: none;

    color: #222222;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 0.3px;

    transition: color 0.2s ease;
}
.navigation a:hover,
.navigation a.active {
    color: #1268b3;
}


/* =========================================
   PHONE + ESTIMATE BUTTON
   ========================================= */

.header-contact {
    display: flex;
    align-items: center;
    gap: 18px;
}

.phone {
    text-decoration: none;

    color: #1268b3;

    font-size: 17px;

    font-weight: bold;

    white-space: nowrap;
}

.estimate-button {
    text-decoration: none;

    background-color: #5b9f2f;

    color: #ffffff;

    padding: 15px 22px;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 0.5px;

    border-radius: 4px;

    white-space: nowrap;

    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.estimate-button:hover {
    background-color: #477f24;
}


/* =========================================
   TEMPORARY MAIN CONTENT
   ========================================= */

main {
    padding: 80px 40px;
    text-align: center;
}

main h1 {
    color: #1268b3;
    font-size: 48px;
}

main p {
    font-size: 22px;
}
/* =========================================
   HERO SECTION
   ========================================= */

.hero {
    min-height: 680px;

    display: flex;

    align-items: center;

    position: relative;

background:
    linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.90) 0%,
        rgba(0, 0, 0, 0.72) 48%,
        rgba(0, 0, 0, 0.25) 100%
    ),
    url("../images/blown-in.jpg");
    background-size: cover;

    background-position: center;

    color: #ffffff;
}

/* Hero text container */

.hero-content {
    max-width: 680px;

    margin-left: 7%;

    padding: 90px 20px;
}


/* Small company label */

.hero-label {
    color: #5b9f2f;

    font-size: 16px;
    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 15px;
}


/* Main headline */

.hero h1 {
    color: #ffffff;

    font-family: Georgia, serif;

    font-size: clamp(50px, 6vw, 82px);

    line-height: 1.02;

    letter-spacing: -1px;

    margin: 0;
}


/* Green part of headline */

.hero h1 span {
    color: #5b9f2f;
}


/* Description */

.hero-description {
    max-width: 550px;

    font-size: 20px;

    line-height: 1.6;

    color: #eeeeee;

    margin: 25px 0 35px;
}


/* Buttons */

.hero-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

    width: 100%;
}


.hero-button {
    display: inline-block;

    text-decoration: none;

    background-color: #5b9f2f;

    color: #ffffff;

    padding: 17px 26px;

    font-size: 14px;
    font-weight: bold;

    letter-spacing: 0.5px;

    border-radius: 3px;

    transition: all 0.2s ease;
}


.hero-button:hover {
    background-color: #477f24;

    transform: translateY(-2px);
}


/* Secondary button */

.hero-button.secondary {
    background-color: transparent;

    border: 2px solid #ffffff;
}


.hero-button.secondary:hover {
    background-color: #ffffff;

    color: #111111;
}


/* Services line */

.hero-services {
    margin-top: 40px;

    color: #ffffff;

    font-size: 14px;
    font-weight: bold;

    letter-spacing: 1px;
}
/* =========================================
   SERVICES SECTION
   ========================================= */

.services {
    background-color: #ffffff;

    padding: 90px 6%;
}


/* Section heading */

.section-heading {
    text-align: center;

    max-width: 750px;

    margin: 0 auto 50px;
}


.section-label {
    color: #5b9f2f;

    font-size: 14px;
    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 10px;
}


.section-heading h2 {
    color: #1268b3;

    font-family: Georgia, serif;

    font-size: clamp(36px, 5vw, 52px);

    margin: 0 0 15px;
}


.section-heading > p:last-child {
    color: #555555;

    font-size: 17px;

    line-height: 1.6;

    margin: 0;
}


/* Service cards */

.service-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


.service-card {
    background-color: #ffffff;

    border: 1px solid #e2e5e8;

    border-radius: 6px;

    padding: 40px 30px;

    text-align: center;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);

    position: relative;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background-color: #5b9f2f;
}

/* Service icon */

.service-icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #1268b3;

    color: #ffffff;

    font-size: 18px;

    font-weight: bold;

    letter-spacing: 1px;

    box-shadow: 0 4px 10px rgba(18, 104, 179, 0.2);
}


.service-card h3 {
    color: #1268b3;

    font-size: 19px;

    letter-spacing: 0.5px;

    margin: 0 0 13px;
}


.service-card p {
    color: #555555;

    font-size: 15px;

    line-height: 1.7;

    margin: 0;
}

/* Services button */

.services-button-container {
    text-align: center;

    margin-top: 45px;
}


.services-button {
    display: inline-block;

    background-color: #1268b3;

    color: #ffffff;

    text-decoration: none;

    padding: 16px 28px;

    font-size: 14px;

    font-weight: bold;

    border-radius: 3px;

    transition: background-color 0.2s ease;
}


.services-button:hover {
    background-color: #0d4f88;
}
/* =========================================
   WHY CHOOSE AIR TIGHT
   ========================================= */

.why-us {
    background-color: #071a2f;

    color: #ffffff;

    padding: 95px 6%;
}


/* Heading */

.why-us-heading {
    max-width: 800px;

    margin: 0 auto 65px;

    text-align: center;
}


.why-us-heading .section-label {
    color: #5b9f2f;
}


.why-us-heading h2 {
    color: #ffffff;

    font-family: Georgia, serif;

    font-size: clamp(36px, 5vw, 52px);

    margin: 0 0 20px;
}


.why-us-heading > p:last-child {
    color: #d7dce2;

    font-size: 17px;

    line-height: 1.7;

    margin: 0 auto;

    max-width: 650px;
}


/* Benefits */

.benefits-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 0;
}


.benefit {
    text-align: center;

    padding: 25px 35px;

    border-right: 1px solid rgba(255, 255, 255, 0.18);
}


.benefit:last-child {
    border-right: none;
}


/* Icons */

.benefit-icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #5b9f2f;

    border-radius: 50%;

    color: #5b9f2f;

    font-size: 17px;

    font-weight: bold;

    letter-spacing: 1px;
}


/* Benefit headings */

.benefit h3 {
    color: #5b9f2f;

    font-size: 18px;

    letter-spacing: 1px;

    margin: 0 0 15px;
}


.benefit p {
    color: #d7dce2;

    font-size: 14px;

    line-height: 1.7;

    margin: 0;
}

/* =========================================
   OUR WORK
   ========================================= */

.our-work {
    background-color: #f5f6f7;
    padding: 95px 6%;
}

.work-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.work-card {
    background-color: #ffffff;

    border-radius: 5px;
    overflow: hidden;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

    transition: transform 0.2s ease,
                box-shadow 0.2s ease;
}

.work-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
}

.work-image {
    height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #1d344d;

    color: #ffffff;

    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.work-image-one {
    background-color: #1268b3;
}

.work-image-two {
    background-color: #1c2733;
}

.work-image-three {
    background-color: #5b9f2f;
}

.work-info {
    padding: 25px;
}

.work-info h3 {
    color: #1268b3;

    font-size: 20px;

    margin: 0 0 10px;
}

.work-info p {
    color: #555555;

    font-size: 15px;

    line-height: 1.6;

    margin: 0;
}

.work-button-container {
    text-align: center;
    margin-top: 45px;
}

/* =========================================
   HOW IT WORKS
   ========================================= */

.process {
    background-color: #ffffff;

    padding: 95px 6%;
}


/* Process layout */

.process-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;
}


/* Individual step */

.process-step {
    position: relative;

    text-align: center;

    padding: 20px 25px;
}


/* Step number */

.process-number {
    color: #5b9f2f;

    font-size: 18px;

    font-weight: bold;

    margin-bottom: 15px;
}


/* Icon */

.process-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #1268b3;

    border-radius: 50%;

    color: #1268b3;

    font-size: 28px;
}


/* Heading */

.process-step h3 {
    color: #1268b3;

    font-size: 20px;

    margin: 0 0 12px;
}


/* Description */

.process-step p {
    color: #555555;

    font-size: 14px;

    line-height: 1.7;

    margin: 0;
}

/* =========================================
   FINAL CALL TO ACTION
   ========================================= */

.final-cta {
    background-color: #071a2f;

    padding: 100px 6%;

    color: #ffffff;

    text-align: center;
}


.final-cta-content {
    max-width: 850px;

    margin: 0 auto;
}


.final-cta .section-label {
    color: #5b9f2f;
}


.final-cta h2 {
    color: #ffffff;

    font-family: Georgia, serif;

    font-size: clamp(40px, 6vw, 62px);

    margin: 0 0 20px;
}


.final-cta-content > p:not(.section-label) {
    color: #d7dce2;

    font-size: 20px;

    line-height: 1.6;

    margin: 0 auto 35px;
}


/* CTA buttons */

.final-cta-buttons {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}


.cta-button {
    display: inline-block;

    text-decoration: none;

    background-color: #5b9f2f;

    color: #ffffff;

    padding: 17px 28px;

    font-size: 14px;

    font-weight: bold;

    border-radius: 3px;

    transition: all 0.2s ease;
}


.cta-button:hover {
    background-color: #477f24;

    transform: translateY(-2px);
}


.cta-button.phone-button {
    background-color: transparent;

    border: 2px solid #ffffff;
}


.cta-button.phone-button:hover {
    background-color: #ffffff;

    color: #071a2f;
}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
    background-color: #050505;

    color: #ffffff;
}


/* Main footer */

.footer-container {
    max-width: 1250px;

    margin: 0 auto;

    padding: 70px 6%;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.2fr;

    gap: 50px;
}


/* Company */

.footer-company {
    max-width: 300px;
}


.footer-logo img {
    width: 190px;

    height: auto;

    display: block;

    margin-bottom: 20px;
}


.footer-company p {
    color: #aaaaaa;

    font-size: 14px;

    line-height: 1.7;

    margin: 0;
}


/* Footer columns */

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.footer-column h3 {
    color: #5b9f2f;

    font-size: 15px;

    letter-spacing: 1.5px;

    margin: 0 0 10px;
}


.footer-column a {
    color: #cccccc;

    text-decoration: none;

    font-size: 14px;

    transition: color 0.2s ease;
}


.footer-column a:hover {
    color: #ffffff;
}


.footer-column p {
    color: #aaaaaa;

    font-size: 14px;

    line-height: 1.6;

    margin: 5px 0;
}


/* Bottom copyright */

.footer-bottom {
    border-top: 1px solid #222222;

    text-align: center;

    padding: 20px;
}


.footer-bottom p {
    color: #777777;

    font-size: 13px;

    margin: 0;
}

/* =========================================
   MOBILE RESPONSIVE DESIGN
   ========================================= */

@media (max-width: 900px) {

.menu-toggle {
    display: block;
}
.navigation {
    display: none;

    flex-direction: column;

    width: 100%;

    background-color: #ffffff;

    padding: 15px 0;
}

.navigation.open {
    display: flex;
}


    /* HEADER */

    .site-header {
        height: auto;

        padding: 20px;

        flex-wrap: wrap;

        justify-content: center;

        gap: 20px;
    }

    .logo {
        width: 100%;

        justify-content: center;
    }

    .navigation {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 15px;
    }

    .header-contact {
        width: 100%;

        justify-content: center;
    }


    /* HERO */

    .hero {
        min-height: 600px;
    }

    .hero-content {
        margin-left: 0;

        padding: 70px 25px;

        text-align: center;

        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-services {
        line-height: 1.8;
    }


    /* SERVICES */

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* WHY US */

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 30px;
    }

    .benefit {
        border-right: none;

        padding: 20px;
    }


    /* OUR WORK */

    .work-grid {
        grid-template-columns: 1fr;

        max-width: 600px;
    }


    /* PROCESS */

    .process-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px 20px;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px;
    }

}
@media (max-width: 600px) {

    /* HEADER */

    .site-header {
        padding: 15px;

        gap: 15px;
    }

    .logo img {
        width: 170px;
    }

    .navigation {
        gap: 10px 15px;
    }

    .navigation a {
        font-size: 12px;
    }

    .header-contact {
        flex-direction: column;

        gap: 10px;
    }

    .site-header {
    position: relative;
}

    /* HERO */

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-description {
        font-size: 17px;
    }

 .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-button {
    width: auto;
    min-width: 220px;
    text-align: center;
}

    .hero-button {
        text-align: center;
    }

    .hero-services {
        font-size: 12px;
    }


    /* SECTION SPACING */

    .services,
    .why-us,
    .our-work,
    .process,
    .final-cta {
        padding: 70px 20px;
    }


    /* SERVICES */

    .service-grid {
        grid-template-columns: 1fr;

        max-width: 450px;
    }


    /* WHY US */

    .benefits-grid {
        grid-template-columns: 1fr;

        max-width: 450px;

        margin: 0 auto;
    }


    /* PROCESS */

    .process-grid {
        grid-template-columns: 1fr;

        max-width: 450px;

        margin: 0 auto;
    }


    /* CTA */

    .final-cta-buttons {
        flex-direction: column;

        align-items: stretch;

        max-width: 400px;

        margin: 0 auto;
    }

    .cta-button {
        text-align: center;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer-company {
        max-width: 400px;

        margin: 0 auto;
    }

    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-column {
        align-items: center;
    }


    .menu-toggle {
    display: block;
}

.navigation {
    display: none;

    flex-direction: column;

    width: 100%;

    background-color: #ffffff;

    padding: 15px 0;
}

.navigation.open {
    display: flex;
}
}

/* =========================================
   MOBILE MENU BUTTON
   ========================================= */

.menu-toggle {
    display: none;

    background: none;

    border: none;

    color: #1268b3;

    font-size: 30px;

    cursor: pointer;
}
/* MOBILE MENU - OVERRIDE */

@media (max-width: 600px) {
    .menu-toggle {
        display: block;

        position: absolute;
        right: 20px;
        top: 20px;

        z-index: 1000;
    }
}

/* =========================================
   ESTIMATE FORM
   ========================================= */

.estimate-form-section {
    background-color: #f5f6f7;

    padding: 95px 6%;
}


.estimate-form-container {
    max-width: 900px;

    margin: 0 auto;
}


/* Heading */

.estimate-form-heading {
    text-align: center;

    margin-bottom: 45px;
}


.estimate-form-heading h2 {
    color: #1268b3;

    font-family: Georgia, serif;

    font-size: clamp(36px, 5vw, 52px);

    margin: 0 0 15px;
}


.estimate-form-heading p:last-child {
    color: #555555;

    font-size: 17px;

    line-height: 1.6;

    margin: 0 auto;

    max-width: 600px;
}


/* Form */

.estimate-form {
    background-color: #ffffff;

    padding: 45px;

    border-radius: 5px;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}


/* Rows */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}


/* Individual fields */

.form-group {
    display: flex;

    flex-direction: column;

    margin-bottom: 25px;
}


.form-group label {
    color: #222222;

    font-size: 14px;

    font-weight: bold;

    margin-bottom: 8px;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 14px 15px;

    border: 1px solid #cccccc;

    border-radius: 3px;

    background-color: #ffffff;

    color: #222222;

    font-family: Arial, sans-serif;

    font-size: 15px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1268b3;

    box-shadow: 0 0 0 2px rgba(18, 104, 179, 0.12);
}


.form-group textarea {
    resize: vertical;

    min-height: 140px;
}


/* Submit button */

.form-submit {
    width: 100%;

    border: none;

    background-color: #5b9f2f;

    color: #ffffff;

    padding: 17px 25px;

    border-radius: 3px;

    font-size: 15px;

    font-weight: bold;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


.form-submit:hover {
    background-color: #477f24;

    transform: translateY(-2px);
}

/* ESTIMATE FORM - MOBILE */

@media (max-width: 600px) {

    .estimate-form-section {
        padding: 70px 20px;
    }

    .estimate-form {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

}
/* =========================================
   SERVICE CARD IMAGES
   ========================================= */

.service-image {
    width: 100%;

    height: 190px;

    margin-bottom: 25px;

    overflow: hidden;

    border-radius: 4px;
}


.service-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.3s ease;
}


.service-card:hover .service-image img {
    transform: scale(1.04);
}
/* =========================================
   ABOUT AIR TIGHT
   ========================================= */

.about {
    background-color: #ffffff;

    padding: 100px 6%;
}


.about-container {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.4fr 0.8fr;

    gap: 80px;

    align-items: center;
}


/* Left side */

.about-content h2 {
    color: #1268b3;

    font-family: Georgia, serif;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

    margin: 0 0 25px;
}


.about-content > p:not(.section-label) {
    color: #555555;

    font-size: 16px;

    line-height: 1.8;

    max-width: 680px;

    margin: 0 0 18px;
}


/* Highlights */

.about-highlights {
    display: flex;

    flex-wrap: wrap;

    gap: 35px;

    margin-top: 35px;
}


.about-highlight {
    display: flex;

    flex-direction: column;

    border-left: 3px solid #5b9f2f;

    padding-left: 14px;
}


.about-highlight strong {
    color: #1268b3;

    font-size: 14px;

    letter-spacing: 1px;
}


.about-highlight span {
    color: #555555;

    font-size: 12px;

    margin-top: 4px;
}


/* Right side */

.about-side {
    display: flex;

    justify-content: center;
}


.about-card {
    width: 100%;

    max-width: 360px;

    padding: 50px 35px;

    background-color: #1268b3;

    border-radius: 6px;

    text-align: center;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

    position: relative;

    overflow: hidden;
}


.about-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 6px;

    background-color: #5b9f2f;
}


.about-card-mark {
    width: 75px;

    height: 75px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #ffffff;

    border-radius: 50%;

    color: #ffffff;

    font-size: 20px;

    font-weight: bold;

    letter-spacing: 2px;
}


.about-card h3 {
    color: #ffffff;

    font-family: Georgia, serif;

    font-size: 28px;

    line-height: 1.2;

    margin: 0 0 20px;
}


.about-card p {
    color: rgba(255, 255, 255, 0.88);

    font-size: 15px;

    line-height: 1.7;

    margin: 0;
}


/* Mobile */

@media (max-width: 600px) {

    .about {
        padding: 70px 20px;
    }

    .about-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-highlights {
        flex-direction: column;

        gap: 20px;
    }

    .about-card {
        max-width: 100%;
    }

}

/* =========================================
   SERVICE AREA
   ========================================= */

.service-area {
    background-color: #f5f6f7;

    padding: 100px 6%;
}


.service-area-container {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.4fr 0.8fr;

    gap: 80px;

    align-items: center;
}


.service-area-content h2 {
    color: #1268b3;

    font-family: Georgia, serif;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

    margin: 0 0 25px;
}


.service-area-content > p:not(.section-label) {
    color: #555555;

    font-size: 16px;

    line-height: 1.8;

    max-width: 700px;

    margin: 0 0 18px;
}


/* Area list */

.service-area-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 35px;
}


.area-item {
    background-color: #ffffff;

    border-left: 4px solid #5b9f2f;

    padding: 16px 18px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}


.area-item span {
    display: block;

    color: #1268b3;

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 0.6px;
}


.area-item small {
    display: block;

    color: #666666;

    font-size: 12px;

    margin-top: 5px;
}


/* Right card */

.service-area-card {
    display: flex;

    justify-content: center;
}


.service-area-card-inner {
    width: 100%;

    max-width: 360px;

    background-color: #1268b3;

    padding: 50px 35px;

    text-align: center;

    border-radius: 6px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

    position: relative;

    overflow: hidden;
}


.service-area-card-inner::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 6px;

    background-color: #5b9f2f;
}


.service-area-mark {
    width: 75px;

    height: 75px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #ffffff;

    border-radius: 50%;

    color: #ffffff;

    font-size: 21px;

    font-weight: bold;

    letter-spacing: 2px;
}


.service-area-card h3 {
    color: #ffffff;

    font-family: Georgia, serif;

    font-size: 28px;

    margin: 0 0 18px;
}


.service-area-card p {
    color: rgba(255, 255, 255, 0.88);

    font-size: 15px;

    line-height: 1.7;

    margin: 0 0 25px;
}


.service-area-phone {
    display: inline-block;

    color: #ffffff;

    font-size: 18px;

    font-weight: bold;

    text-decoration: none;

    border-bottom: 2px solid #5b9f2f;

    padding-bottom: 5px;
}


/* Mobile */

@media (max-width: 600px) {

    .service-area {
        padding: 70px 20px;
    }

    .service-area-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .service-area-list {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   CONTACT DETAILS
   ========================================= */

.contact-details {
    max-width: 850px;

    margin: 50px auto 0;

    padding-top: 35px;

    border-top: 1px solid rgba(255, 255, 255, 0.2);

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}


.contact-detail {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    gap: 7px;
}


.contact-detail strong {
    color: #5b9f2f;

    font-size: 13px;

    letter-spacing: 1px;
}


.contact-detail a,
.contact-detail span {
    color: #ffffff;

    font-size: 14px;

    text-decoration: none;
}


.contact-detail a {
    font-weight: bold;
}


.contact-detail a:hover {
    text-decoration: underline;
}


/* Mobile */

@media (max-width: 600px) {

    .contact-details {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-top: 40px;
    }

}