
/* contact section form wala */
/* --- Contact Page Specific Styles (Add these to your styles.css or update existing ones) --- */

/* Overall Section Container for Contact Details and Form */
.contact-details-form-section {
    background-color: #f8f9fa; /* Light background as seen in contact1.jpg around the boxes */
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Contact Details Box (The blue section on the left) */
.contact-details-box {
    background-color: var(--minjon-orange); /* Blue background from contact1.jpg */
    color: white;
    box-sizing: border-box;
    height: 100%; /* Important for matching height with the form */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically centers content if box is taller */
    border-radius: 8px; /* Slightly rounded corners */
    padding: 40px; /* Adjust padding as needed */
}

.contact-details-box h2 {
    font-size: 2.2em; /* Larger heading for "Contact Us" */
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
    text-align: center; /* Centered as per contact1.jpg */
}

.contact-details-box .detail-item h4 {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9); /* Slightly subdued white */
}

.contact-details-box .detail-item p {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 10px;
    color: white;
}

.contact-details-box .social-links-contact-page a {
    font-size: 1.8em;
    color: white; /* Icons should be white on blue background */
    transition: color 0.3s ease;
    text-decoration: none;
}
.contact-details-box .social-links-contact-page a:hover {
    color: rgba(255, 255, 255, 0.7); /* Slightly fade on hover */
}

/* Contact Form Container (The white section on the right - re-using existing styles) */
/* This section will primarily use the existing styles you have for .contact-form-container
   from your homepage, ensuring consistency. */
.contact-form-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    height: 100%; /* Important for matching height with the blue box */
    box-sizing: border-box;
}

.contact-form-container .contact-form-heading { /* New class for form heading for specific styling if needed */
    font-size: 2em; /* Adjust as needed */
    font-weight: 700;
    color: #333; /* Dark text for heading */
}

.contact-form-container .form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
}

.contact-form-container .form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 1em;
}

.contact-form-container .form-control:focus {
    border-color: var(--minjon-orange);
    box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.25);
}

.contact-form-container .submit-contact-btn {
    background-color: var(--minjon-orange);
    border-color: var(--minjon-orange);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-form-container .submit-contact-btn:hover {
    background-color: #e65c00;
    border-color: #e65c00;
}

/* Responsive Adjustments for this section */
@media (max-width: 991.98px) {
    .contact-details-box {
        margin-bottom: 30px; /* Space between boxes when stacked */
        height: auto; /* Allow height to adjust */
    }
    .contact-form-container {
        height: auto; /* Allow height to adjust */
    }
}

@media (max-width: 767.98px) {
    .contact-details-box h2 {
        font-size: 1.8em;
    }
    .contact-form-container .contact-form-heading {
        font-size: 1.8em;
    }
}