/* GENERAL */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f5f8ef;
    color: #333;
}

a { color: #2A5B23; text-decoration: none; }

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header { 
    background: #ffffffd9;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #e2e2e2;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo { height: 55px; }

/* DESKTOP NAV */
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    font-weight: 500;
    padding-bottom: 2px;
}
.nav-links .active {
    border-bottom: 2px solid #2A5B23;
}

/* MOBILE MENU */
.mobile-menu-btn {
    display: none;
    font-size: 30px;
    cursor: pointer;
}
.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #ddd;
    text-align: center;
}
.mobile-menu a {
    display: block;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

/* HERO */
.hero-section {
    margin-top: 90px;
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
}
.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
}
.hero-content h1 {
    font-size: 52px;
    margin-bottom: 10px;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}
.section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
    color: #2A5B23;
}

/* CONTACT CARDS */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 25px;
}
.contact-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}
.contact-card h3 {
    margin-top: 0;
    color: #2A5B23;
}

/* FORM */
.light-bg { background: #eef5e6; }

.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input,
.contact-form textarea {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
    width: 100%;
}
.contact-form button {
    padding: 14px;
    border: none;
    background: #2A5B23;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}
.contact-form button:hover {
    background: #244d1d;
}

/* FOOTER */
.footer {
    background: #1c1c1c;
    color: #eee;
    padding: 60px 0 30px;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-logo {
    height: 55px;
    margin-bottom: 10px;
}
.footer-links a {
    display: block;
    margin-bottom: 8px;
    color: #a8ff7a;
}
.footer-copy {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.7;
}

/* MOBILE */
@media(max-width: 768px){
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
}
