* {
    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;
}

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

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

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


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

.header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.10);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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


/* LOGO */

.logo {
    display: block;
    width: 180px;
    height: 65px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}


/* NAVIGATION */

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
}

nav a:hover {
    opacity: 0.55;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 30px;
    cursor: pointer;
}


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

.hero {
    position: relative;
    min-height: 680px;
    background-image: url("images/landscaping.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    min-height: 680px;
    background: rgba(0,0,0,0.55);

    display: flex;
    align-items: center;
}

.hero-content {
    color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
}

.hero-small {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(45px, 7vw, 80px);
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero-description {
    max-width: 650px;
    font-size: 20px;
}

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


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

.btn {
    display: inline-block;
    background: #fff;
    color: #111;
    padding: 15px 27px;
    border-radius: 5px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
}

.dark-btn {
    background: #111;
    color: #fff;
}


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

.section {
    padding: 90px 0;
}

.light {
    background: #f5f5f5;
}

.section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.section-heading p {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.section-heading h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-top: 8px;
}


/* =========================
   INTRO
========================= */

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.image-box {
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 8px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text {
    min-width: 0;
}

.intro-text h3 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.intro-text p {
    margin-bottom: 18px;
}

.text-button {
    display: inline-block;
    font-weight: 700;
    margin-top: 10px;
}


/* =========================
   SERVICE CARDS
========================= */

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

.card {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
}

.card-icon {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 18px;
}

.card h3 {
    margin-bottom: 10px;
    line-height: 1.3;
}

.services-button {
    margin-top: 45px;
}


/* =========================
   PAGE BANNER
========================= */

.page-banner {
    background: #222;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.page-banner p {
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
}

.page-banner h1 {
    font-size: 55px;
    line-height: 1.1;
    margin: 12px 0;
}

.page-banner span {
    font-size: 18px;
}


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

.service-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 40px;
    align-items: center;

    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
}

.service-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    min-width: 0;
}

.service-content h2 {
    line-height: 1.25;
    margin-bottom: 15px;
}

.service-content p {
    max-width: 700px;
}

.price-box {
    text-align: center;
    margin-top: 70px;
    padding: 60px 30px;
    background: #f3f3f3;
    border-radius: 8px;
}

.price-box h2 {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.price-box p {
    max-width: 650px;
    margin: 0 auto 25px;
}


/* =========================
   GALLERY
========================= */

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

.gallery-item {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 8px;
    background: #eee;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0,0,0,0.72);
    color: #fff;

    padding: 14px;
    text-align: center;
    font-weight: 700;
}

.gallery-bottom {
    margin-top: 70px;
}

.gallery-bottom h2 {
    margin-bottom: 10px;
}


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

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
}

.contact-info {
    min-width: 0;
}

.contact-info h2,
.quote-form h2 {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-box {
    margin-top: 30px;
}

.contact-box h3 {
    margin-bottom: 6px;
}

.contact-box a {
    display: block;
    font-weight: 700;
    margin: 5px 0;
}

.quote-form {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
}

.quote-form form {
    display: flex;
    flex-direction: column;
}

.quote-form label {
    font-weight: 700;
    margin: 15px 0 7px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font: inherit;
    background: #fff;
}

.quote-form textarea {
    resize: vertical;
}

.quote-form .btn {
    margin-top: 25px;
}


/* =========================
   CTA
========================= */

.cta {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta p {
    margin-bottom: 25px;
}


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

footer {
    background: #111;
    color: #fff;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo {
    width: 180px;
    height: 65px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 15px;
}

.footer-grid h4 {
    margin-bottom: 15px;
}

.footer-grid p {
    margin-bottom: 7px;
}

.footer-grid a {
    transition: 0.3s;
}

.footer-grid a:hover {
    opacity: 0.7;
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding: 20px;
    font-size: 14px;
}


/* =========================
   FLOATING WHATSAPP
========================= */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;

    width: 62px;
    height: 62px;

    background: #25d366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.25);

    z-index: 9999;

    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

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

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

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

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

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

}


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

@media (max-width: 650px) {

    .nav-container {
        min-height: 75px;
    }

    .logo {
        width: 150px;
        height: 58px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;

        position: absolute;
        top: 75px;
        left: 0;

        width: 100%;

        background: #fff;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 16px 25px;
        border-bottom: 1px solid #eee;
    }


    /* HERO */

    .hero {
        min-height: 600px;
    }

    .hero-overlay {
        min-height: 600px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }


    /* SECTIONS */

    .section {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

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


    /* INTRO */

    .image-box {
        height: 350px;
    }

    .intro-text h3 {
        font-size: 29px;
    }


    /* CARDS */

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


    /* PAGE BANNER */

    .page-banner {
        padding: 70px 20px;
    }

    .page-banner h1 {
        font-size: 42px;
    }


    /* SERVICES */

    .service-item {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-image {
        height: 250px;
    }


    /* GALLERY */

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

    .gallery-item {
        height: 300px;
    }


    /* CONTACT */

    .contact-grid {
        gap: 40px;
    }

    .quote-form {
        padding: 25px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    /* CTA */

    .cta h2 {
        font-size: 32px;
    }


    /* WHATSAPP */

    .whatsapp-float {
        width: 58px;
        height: 58px;
        right: 18px;
        bottom: 18px;
    }

}