/*=============== HERO SECTION ===============*/
.hero {
    position: relative;
    background: url('../images/contact.jpg') no-repeat center center/cover;
    color: #fff;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #333; /* Fallback color */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2; /* Ensures the content is above the dark overlay */
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/*=============== CONTACT SECTION ===============*/
.contact-section {
    padding: 4rem 1.5rem;
    background-color: #f8f8f8;
    color: #333;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info, .contact-form {
    flex: 1 1 45%;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 1.5rem;
    color: #68B92E; /* Primary green color */
    margin-bottom: 1rem;
}

.contact-info p, .contact-form p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.contact-link {
    color: #68B92E;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
}

.contact-btn {
    background-color: #68B92E;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #5ba826;
}

/*=============== MAP SECTION ===============*/
.map-section {
    margin-top: 2rem;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/*=============== RESPONSIVE DESIGN ===============*/
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info, .contact-form {
        flex: 1 1 100%;
        max-width: 90%;
        margin-bottom: 2rem;
    }

    .hero {
        height: 40vh;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }
}
