/* Reset & Fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
}

.nav-links a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1abc9c;
}

/* Hamburger Menu (hidden on desktop) */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #2c3e50;
}

/* =========================
   Responsive Design
========================= */
@media (max-width: 768px) {

    /* Navbar */
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        width: 220px;
        padding: 1rem;
        display: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 0.8rem 0;
        font-size: 1rem;
    }

    .menu-toggle {
        display: block;
    }

}

/* General */
.contact {
    font-family: "Poppins", sans-serif;
    color: #2b2b2b;
    line-height: 1.6;
}

/* Hero Banner */
.contact-banner {
    position: relative;
    height: 50vh;
    background: url("https://images.unsplash.com/photo-1595260481707-7c975c3c219a?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-banner .banner-overlay {
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
}

.contact-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 4rem 8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    /* padding: 4rem 2rem; */
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a3d2f;
}

.contact-info ul {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
}

.contact-info li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

/* Contact Form */
.contact-form form {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    border-radius: 0.6rem;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1a3d2f;
    outline: none;
}

/* Button */
.btn-submit {
    background: #1a3d2f;
    color: #fff;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 0.6rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #285a45;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-banner {
        height: 35vh;
    }

    .contact-banner h1 {
        font-size: 2rem;
    }

    .contact-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
}


/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
}

.footer-nav {
    margin-top: 1rem;
}

.footer-nav a {
    margin: 0 0.8rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #1abc9c;
}