* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2ECC71;
    --secondary: #27AE60;
    --dark: #1E5128;
    --light: #F0FFF4;
    --text: #2C3E50;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

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

.navbar {
    background: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.btn-quote {
    background: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white !important;
}

.hero {
    background: linear-gradient(rgba(30, 81, 40, 0.7), rgba(30, 81, 40, 0.7)),
                url('https://images.unsplash.com/photo-1598902108854-10e335adac99?w=1600') center/cover;
    padding: 8rem 0;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
}

.services {
    padding: 5rem 0;
    background: var(--light);
}

.services h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.2);
}

.icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.service-card p {
    color: #666;
}

.gallery {
    padding: 5rem 0;
    background: white;
}

.gallery h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    height: 350px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
}

.overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact {
    padding: 5rem 0;
    background: var(--dark);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact strong {
    color: var(--primary);
    font-size: 1.5rem;
}

footer {
    background: #0F2818;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
