/* General Contact Page Styles */

body {
    background-color: #f8f8f8;
    /* Soft light gray background */
    font-family: "Poppins", sans-serif;
    color: #000000;
    /* Default text color */
}


/* Horizontal Contact Info Section */

.contact-info-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #ffffff;
    /* White background for the bar */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin: 10px 20px;
    font-size: 1em;
}

.contact-info-item i {
    color: #BF6411;
    /* Burnt orange/brown for icons */
    margin-right: 10px;
    font-size: 1.5em;
}

.contact-info-item span {
    font-weight: 500;
}


/* Main Contact Section (Two Columns) */

.main-contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 50px;
    gap: 40px;
}

.contact-form-container,
.contact-image-container {
    flex: 1;
    min-width: 300px;
    /* Minimum width for columns before stacking */
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../pages/image.png');
    /* Desktop image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    /* Ensure image container has height */
}


/* Form Styling */

.contact-form-container h2 {
    font-size: 2.2em;
    color: #000000;
    margin-bottom: 25px;
    position: relative;
}

.contact-form-container h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: #ff9900;
    /* Gold/orange highlight */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 1em;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #BF6411;
    /* Highlight border on focus */
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background-color: #BF6411;
    /* Burnt orange/brown */
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-button:hover {
    background-color: #D2691E;
    /* Slightly darker on hover */
    transform: translateY(-2px);
}


/* Map Section */

.map-section {
    padding: 50px 50px;
    background-color: #f8f8f8;
    /* Match body background */
}

.map-section h2 {
    font-size: 2.2em;
    color: #000000;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.map-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: #ff9900;
    /* Gold/orange highlight */
}

.map-section p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
    color: #555555;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Responsive Adjustments */

@media (max-width: 768px) {
    .contact-info-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    .contact-info-item {
        margin: 8px 0;
    }
    .main-contact-section {
        flex-direction: column;
        padding: 20px;
    }
    .contact-image-container {
        min-height: 250px;
        /* Adjust height for mobile image */
        background-image: url('../pages/image_mobile.png');
        /* Mobile image */
    }
    .contact-form-container,
    .contact-image-container {
        width: 100%;
        margin-bottom: 20px;
    }
    .map-section {
        padding: 30px 20px;
    }
    .map-section iframe {
        height: 300px;
    }
}