/* =========================================
   contact.css - CONTACT PAGE ONLY
   ========================================= */

.contact-section {
    padding: 60px 0 100px;
    background-color: #0a0a0a;
}

.page-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: var(--heading-blue, #417fd9);
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 16px;
    color: var(--nav-grey, #a4a4a4);
    line-height: 1.6;
}

/* Two Column Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* --- Left Column: Info & Map --- */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: var(--white, #ffffff);
    margin-bottom: 10px;
}

.info-block p {
    font-size: 15px;
    color: var(--nav-grey, #a4a4a4);
    line-height: 1.6;
}

/* Map Iframe Styling */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.directions-btn {
    align-self: flex-start;
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--white, #fff);
    color: var(--white, #fff);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition, 0.3s ease);
}

.directions-btn:hover {
    background-color: var(--white, #fff);
    color: #111;
}

/* --- Right Column: Form --- */
.contact-form-panel {
    background-color: #111111;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-panel h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: var(--white, #fff);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    color: var(--nav-grey, #a4a4a4);
    margin-bottom: 8px;
}

/* Custom Input Styles */
.custom-form input,
.custom-form textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white, #fff);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.custom-form input:focus,
.custom-form textarea:focus {
    outline: none;
    border-color: var(--heading-blue, #417fd9);
    background-color: rgba(255, 255, 255, 0.06);
}

.custom-form textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

/* Button Styles */
.btn-primary {
    background-color: var(--heading-blue, #417fd9);
    color: var(--white, #fff);
    border: none;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2b5fac;
}

.btn-text {
    background: transparent;
    border: none;
    color: var(--nav-grey, #a4a4a4);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: color 0.3s ease;
}

.btn-text:hover {
    color: var(--white, #fff);
}

.disclaimer {
    margin-top: 30px;
    font-size: 12px;
    color: #555;
    line-height: 1.5;
}

/* --- Mobile Responsive Queries --- */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-panel {
        padding: 30px 20px;
    }
}