/* Base Styles (already provided) */
.contactus-section {
    text-align: center;
    padding: 40px 20px;
}

.contactus-main-title {
    font-size: 36px;
    color: #32CD32;
    font-weight: bold;
    margin-bottom: 10px;
}

.contactus-sub-title {
    font-size: 18px;
    color: white;
    margin-bottom: 40px;
}

.contactus-container {
    max-width: 1000px;
    width: 90%;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(50, 205, 50, 0.5);
    margin: 50px auto;
}

.contactus-title {
    font-size: 24px;
    color: #32CD32;
    width: 100%;
    text-align: center;
}

.contactus-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contactus-form,
.contactus-info {
    flex: 1;
    padding: 20px;
}

.contactus-form input,
.contactus-form textarea {
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    border: 1px solid #32CD32;
    background: black;
    color: white;
    border-radius: 5px;
}

.contactus-btn-submit {
    background: #32CD32;
    color: black;
    padding: 14px 30px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.contactus-btn-submit:hover {
    background: white;
    color: black;
}

.contactus-info p {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 5px;
    font-size: 18px;
    margin: 12px 0;
    color: white;
}

/* Email & Phone Links */
.contactus-info a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.contactus-info a:hover {
    color: #32CD32;
}

.contactus-map-container {
    width: 100%;
    margin-top: 30px;
}

.contactus-map-container iframe {
    width: 100%;
    height: 280px;
    border: 2px solid #32CD32;
    border-radius: 10px;
}

.contactus-title,
.contactus-sub-title {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

/* Styling for the dropdown */
.contactus-dropdown {
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    border: 1px solid #32CD32;
    background: black;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

/* Dropdown hover and focus effects */
.contactus-dropdown:hover,
.contactus-dropdown:focus {
    border-color: white;
    outline: none;
}


/* Responsive Design */

/* Desktop (Large Screens) */
@media (min-width: 1200px) {
    .contactus-container {
        max-width: 1200px;
    }

    .contactus-main-title {
        font-size: 42px;
    }
}

/* Laptop (Medium Screens) */
@media (min-width: 992px) and (max-width: 1199px) {
    .contactus-container {
        max-width: 960px;
    }

    .contactus-main-title {
        font-size: 32px;
    }
}

/* Tablet (Medium-Small Screens) */
@media (min-width: 768px) and (max-width: 991px) {
    .contactus-container {
        width: 95%;
        padding: 30px;
    }

    .contactus-content {
        flex-direction: column;
    }

    .contactus-main-title {
        font-size: 30px;
    }

    .contactus-form,
    .contactus-info {
        width: 100%;
    }
}

/* Mobile (Small Screens) */
@media (max-width: 767px) {
    .contactus-container {
        width: 95%;
        padding: 20px;
        margin: 30px auto;
    }

    .contactus-content {
        flex-direction: column;
    }

    .contactus-main-title {
        font-size: 28px;
    }

    .contactus-sub-title {
        font-size: 16px;
    }

    .contactus-form,
    .contactus-info {
        width: 100%;
        padding: 10px;
    }

    .contactus-map-container iframe {
        height: 200px;
    }

    .contactus-btn-submit {
        font-size: 16px;
        padding: 10px 20px;
    }

    .contactus-info p {
        font-size: 16px;
    }
}

/* Very Small Screens */
@media (max-width: 480px) {
    .contactus-main-title {
        font-size: 24px;
    }

    .contactus-sub-title {
        font-size: 14px;
    }

    .contactus-form input,
    .contactus-form textarea {
        padding: 10px;
        margin: 8px 0;
    }

    .contactus-map-container iframe {
        height: 150px;
    }
}