/* ============================================================
   CONTACT PAGE STYLES
============================================================ */
.contact-page-wrapper {
    padding: 30px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}

/* FORM CARD (LEFT) */
.contact-form-card {
    padding: 36px 32px;
}

.contact-company-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--bv-primary, #0b2247);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.title-underline {
    width: 42px;
    height: 3px;
    background-color: var(--bv-primary, #0b2247);
    border-radius: 2px;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    color: #0f172a;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    min-height: 110px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--bv-primary, #0b2247);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(11, 34, 71, 0.1);
}

.btn-contact-submit {
    width: 100%;
    background: var(--bv-primary, #0b2247);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 6px;
    box-shadow: 0 2px 8px rgba(11, 34, 71, 0.15);
}

.btn-contact-submit:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(11, 34, 71, 0.25);
}

/* RIGHT PANE */
.contact-right-pane {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eef2ff;
    background: color-mix(in srgb, var(--bv-primary) 10%, #ffffff);
    color: var(--bv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--bv-primary);
}

.info-details {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.info-content {
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.6;
}

.info-content p {
    margin: 0 0 4px 0;
}

.info-content p:last-child {
    margin-bottom: 0;
}

/* MAP CARD */
.contact-map-card {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .contact-info-card {
        padding: 24px 20px;
    }

    .contact-company-title {
        font-size: 18px;
    }
}
