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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    height: 80px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #1a5f1a;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #f4c430;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a5f1a 0%, #2d8f2d 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #f4c430;
    color: #1a5f1a;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 196, 48, 0.4);
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.about h2 {
    color: #1a5f1a;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Gallery Section */
.gallery {
    padding: 80px 20px;
    background-color: #fff;
}

.gallery h2 {
    color: #1a5f1a;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.services h2 {
    color: #1a5f1a;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 250px;
    max-width: 350px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(26, 95, 26, 0.2);
}

.service-card h3 {
    color: #1a5f1a;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.features {
    background-color: #f4c430;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.features h3 {
    color: #1a5f1a;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.features ul {
    list-style: none;
    font-size: 1.1rem;
}

.features li {
    padding: 10px 0;
    color: #1a5f1a;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.contact h2 {
    color: #1a5f1a;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5f1a;
}

.contact-form .cta-button {
    width: 100%;
    padding: 15px;
}

.contact-info {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
}

.contact-info p {
    margin: 10px 0;
}

/* Footer */
footer {
    background-color: #1a5f1a;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1a5f1a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 300px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    nav ul li {
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 15px 20px;
    }

    .logo {
        height: 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

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