﻿/* === GLOBAL === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #ffffff;
    color: #013220;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === HEADER === */
header {
    background: #006b3f;
    color: white;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

    header img {
        height: 60px;
    }

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

    nav ul li a {
        color: white;
        font-weight: bold;
        transition: 0.3s;
    }

        nav ul li a:hover {
            color: #00a36c;
        }

/* === HERO === */
.hero {
    background: linear-gradient(rgba(0,107,63,0.85), rgba(0,107,63,0.85)), url('https://images.unsplash.com/photo-1581091870622-8d1d62b10b5b?auto=format&fit=crop&w=1500&q=80') center;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

    .hero h1 {
        font-size: 3em;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1.3em;
        margin-bottom: 25px;
    }

    .hero button {
        background: #00a36c;
        border: none;
        padding: 15px 30px;
        color: white;
        font-size: 1em;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
    }

        .hero button:hover {
            background: white;
            color: #006b3f;
        }

/* === SECTIONS === */
section {
    padding: 80px 60px;
    max-width: 1200px;
    margin: auto;
}

h2 {
    color: #006b3f;
    text-align: center;
    margin-bottom: 30px;
}

/* === SERVICES === */
.services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 60px 0;
}

.service-box {
    background: white;
    border: 2px solid #006b3f;
    width: 320px;
    text-align: center;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

    .service-box img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .service-box:hover {
        background: #006b3f;
        color: white;
        transform: translateY(-5px);
        cursor: pointer;
    }

/* === CONTACT FORM === */
.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

    .contact-form input,
    .contact-form textarea {
        margin-bottom: 15px;
        padding: 12px;
        border: 1px solid #00a36c;
        border-radius: 5px;
        font-size: 1em;
    }

    .contact-form button {
        background: #006b3f;
        color: white;
        border: none;
        padding: 12px;
        font-size: 1em;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
    }

        .contact-form button:hover {
            background: #00a36c;
        }

/* === FOOTER === */
footer {
    background: #004d2a;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .service-container {
        flex-direction: column;
        align-items: center;
    }
}
