/* --- Contact Page Specific Styles --- */

/* Hero Override */
.contact-hero {
    min-height: 50vh;
    /* Shorter than home hero */
}

/* --- Agencies Section --- */


/* --- Form Section --- */
.contact-form-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Left Column: Contact Info */
.contact-info-col {
    flex: 0 0 450px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 150px;
    /* Sticky below header */
    margin-top: 130px;
}

.contact-info-block {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.contact-info-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-block h3 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.info-item {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    gap: 10px;
}

.info-item strong {
    color: #333;
    min-width: 60px;
}

/* Right Column: Form */
.contact-form-col {
    flex: 1;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: var(--color-primary-dark);
}

@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info-col {
        width: 100%;
        position: static;
        flex: auto;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}