/* ----------------------------------------------------------------------------------------------------------------------- */
/* Contact Page Styles */
/* ----------------------------------------------------------------------------------------------------------------------- */

/* Contact Hero Section */
.contact_hero_section {
    min-height: 45vh;
    /* Adjust height as needed */
    display: flex;
    flex-direction: column;
    /* Allow subtitle below title */
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--background-white);
    /* Replace with your desired background image or use a solid color */
    background: url('../../assets/img/hero/our_contact.avif') no-repeat center center/cover;
    /* Reusing existing hero for now */
    /* Example solid color: background-color: var(--primary_color); */
    padding: 6rem 1rem 1rem 1rem;
}

.contact_hero_section .hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    /* Dark overlay for text readability */
    z-index: 1;
}

.contact_hero_section .container {
    position: relative;
    z-index: 2;
}

.contact_hero_section h1 {
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    /* Responsive title size */
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    /* Space below title */
}

.contact_hero_section .hero_subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Main Section */
.contact_main_section {
    padding: 4rem 0;
    background-color: var(--background-white);
    /* Or a very light grey like #f9f9f9 */
}

.contact_content_wrapper {
    display: flex;
    flex-wrap: wrap;
    /* Allow columns to wrap on smaller screens */
    gap: 3rem;
    /* Space between columns */
}

.contact_details_column,
.contact_form_column {
    flex: 1;
    /* Each column takes equal space */
    min-width: 300px;
    /* Minimum width before stacking */
}

.contact_details_column h2,
.contact_form_column h2 {
    font-size: 2rem;
    color: var(--primary_color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact_details_column p:not([class]) {
    /* Target general paragraphs in this column */
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--secoundary_text);
}

.contact_item {
    display: flex;
    align-items: flex-start;
    /* Align icon with the top of the text block */
    margin-bottom: 1.5rem;
    gap: 1rem;
    /* Space between icon and text */
}

.contact_item i.fas {
    /* Font Awesome icon styling */
    font-size: 1.5rem;
    /* Icon size */
    color: var(--primary_color);
    margin-top: 0.25rem;
    /* Align icon slightly better with text */
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}

.contact_item div strong {
    display: block;
    font-weight: 600;
    color: var(--primary_color);
    margin-bottom: 0.25rem;
}

.contact_item div p {
    margin: 0;
    color: var(--secoundary_text);
    line-height: 1.5;
}

.contact_item div a {
    color: var(--primary_color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact_item div a:hover {
    color: var(--background-yellow);
    /* Or another hover color */
    text-decoration: underline;
}

/* Contact Form Styling */
.contact_form .form_group {
    margin-bottom: 1.5rem;
}

.contact_form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary_color);
}

.contact_form input[type="text"],
.contact_form input[type="email"],
.contact_form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact_form input[type="text"]:focus,
.contact_form input[type="email"]:focus,
.contact_form textarea:focus {
    border-color: var(--primary_color);
    box-shadow: 0 0 0 3px rgba(29, 33, 48, 0.15);
    /* Focus ring */
    outline: none;
}

.contact_form textarea {
    resize: vertical;
    /* Allow vertical resize only */
    min-height: 120px;
}

.contact_form .submit_button {
    background-color: var(--primary_color);
    color: var(--background-white);
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.contact_form .submit_button:hover {
    background-color: #2c3247;
    /* Darker shade of primary */
    transform: translateY(-2px);
}

.contact_form .submit_button:disabled {
    background-color: #d9d9d9;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact_content_wrapper {
        flex-direction: column;
        /* Stack columns */
    }

    .contact_details_column,
    .contact_form_column {
        min-width: 100%;
        /* Full width when stacked */
    }

    .contact_hero_section h1 {
        font-size: clamp(2.2rem, 6vw, 3.5rem);
    }

    .contact_hero_section .hero_subtitle {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
}