* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f7f9f9;
    color: #1e4620;
    line-height: 1.6;
}

/* Navbar */
header {
    width: 100%;
    background-color: #d9f0d9;
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Contact Wrapper */
.contactus-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

/* Top Section (Info + Map) */
.contactus-top-section {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Info Box */
.contactus-info-box {
    flex: 1 1 350px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: auto;
}

/* Map Box */
.contactus-map-wrapper {
    flex: 1 1 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    height: auto;
}

.contactus-map {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}

/* Form Box */
.contactus-form-box {
    margin-top: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contactus-form-heading {
    font-size: 1.4rem; /* smaller */
    margin-bottom: 15px;
    color: #1e4620;
}

/* Form Fields */
.contactus-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contactus-input,
.contactus-textarea {
    padding: 12px;
    border: 1px solid #aac8aa;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.contactus-input:focus,
.contactus-textarea:focus {
    border-color: #1e4620;
}

.contactus-button {
    padding: 12px;
    background: #1e4620;
    color: #f4d35e;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.contactus-button:hover {
    transform: scale(1.05);
}

/* Info Details (location & phone) */
.contactus-details p {
    font-size: 0.9rem;
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .contactus-top-section {
        flex-direction: column;
    }

    .contactus-heading {
        font-size: 1.5rem !important;
    }
    .contactus-description {
        font-size: 0.9rem !important;
    }

    .contactus-form-heading {
        font-size: 1.2rem !important;
    }

    .contactus-details p {
        font-size: 0.85rem !important;
    }
       .contactus-info-box {
        height:auto;
    }
}

@media (max-width: 500px) {
    .contactus-heading {
        font-size: 1.3rem !important;
    }
    .contactus-description {
        font-size: 0.85rem !important;
    }

    .contactus-form-heading {
        font-size: 1.1rem !important;
    }

    .contactus-details p {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 400px) {
    .contactus-heading {
        font-size: 1.1rem !important;
    }
    .contactus-description {
        font-size: 0.75rem !important;
    }

    .contactus-form-heading {
        font-size: 1rem !important;
    }

    .contactus-details p {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 320px) {
    .contactus-heading {
        font-size: 1rem !important;
    }
    .contactus-description {
        font-size: 0.7rem !important;
    }

    .contactus-form-heading {
        font-size: 0.9rem !important;
    }

    .contactus-details p {
        font-size: 0.7rem !important;
    }
}
