/* ===================================================
   CONTACT PAGE LAYOUT
   2/3 form + 1/3 sidebar
   =================================================== */

.contact-layout {
    display: flex;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- LEFT: Contact Form --- */
.contact-form {
    flex: 2;
}

.contact-form h2 {
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: #212529;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--bs-primary, #007bff);
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb, 0, 123, 255), 0.15);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form .form-row {
    display: flex;
    gap: 1rem;
}

.contact-form .form-row .form-group {
    flex: 1;
}

.contact-form .form-submit {
    margin-top: 0.5rem;
}

.contact-form .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--bs-primary, #007bff);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.contact-form .btn-submit:hover {
    background: var(--bs-primary-dark, #0056b3);
    transform: translateY(-1px);
}

/* --- RIGHT: Sidebar --- */
.contact-sidebar {
    flex: 1;
    min-width: 260px;
}

/* Socials row */
.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.05);
    color: inherit;
    font-size: 1.2rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    text-decoration: none;
}

.contact-socials a:hover {
    background: var(--bs-primary, #007bff);
    color: white;
    transform: translateY(-2px);
}

/* Contact info items */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    font-size: 1.25rem;
    width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--bs-primary, #007bff);
}

.contact-info-item .info-label {
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.contact-info-item .info-text {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 0.25rem;
}

.contact-info-item a {
    color: var(--bs-primary, #007bff);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 991px) {
    .contact-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-sidebar {
        min-width: auto;
    }

    .contact-socials {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}
