/* File: assets/css/contact.css */

.contact-page {
    font-family: 'Jost', sans-serif;
}

/* Page Header Section */
.page-header-section-contact {
    background-color: #181616;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><g fill="%232a2a2a" fill-opacity="0.1"><rect x="0" y="0" width="50" height="50"/><rect x="50" y="50" width="50" height="50"/></g></svg>'); /* Subtle pattern */
}
.page-header-section-contact .page-title {
    font-weight: 700;
    font-size: 2.5rem;
}
.page-header-section-contact .breadcrumb-light .breadcrumb-item a {
    color: #adb5bd;
    text-decoration: none;
}
.page-header-section-contact .breadcrumb-light .breadcrumb-item a:hover {
    color: #fff;
}
.page-header-section-contact .breadcrumb-light .breadcrumb-item.active {
    color: #fff;
}
.page-header-section-contact .breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
    color: #adb5bd;
}

/* Info Cards Section */
.contact-info-section {
    padding: 5rem 0;
    background-color: #f8f9fa; /* Light grey background */
}

.contact-pre-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6c757d;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.contact-main-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #181616;
}

.info-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.info-card-icon {
    font-size: 2rem;
    color: #fff;
    background-color: #0B1B3C; /* Your primary blue */
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
}

.info-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-card-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

/* Map and Form Section */
.map-form-section {
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the form horizontally */
    min-height: 80vh;
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-background iframe {
    filter: grayscale(100%) opacity(0.5); /* Desaturated, semi-transparent map */
}

.form-overlay-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

.contact-form-wrapper {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-form-subtitle {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    color: #6c757d;
}

.contact-form-wrapper .form-control {
    border-radius: 4px;
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    border-color: #e9ecef;
}
.contact-form-wrapper .form-control:focus {
    background-color: #fff;
    border-color: #0B1B3C;
    box-shadow: none;
}

.contact-form-wrapper .btn-primary {
    background-color: #0B1B3C;
    border-color: #0B1B3C;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-form-wrapper .btn-primary:hover {
    background-color: #1C2F5C;
    border-color: #1C2F5C;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
    .page-header-section-contact {
        padding: 2rem 0;
    }
    .page-header-section-contact .page-title {
        font-size: 2rem;
    }
    .contact-info-section {
        padding: 3rem 0;
    }
}
