/* ============================
    CONTACT PAGE WRAPPER
============================ */
.contact-page-wrapper {
    height: calc(100vh - 84px);
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdf8f0 0%, #fff8ee 100%);
    padding: 1.5rem;
    overflow: hidden;
}

.contact-frame {
    display: flex;
    width: 100%;
    max-width: 1000px;
    height: calc(100vh - 140px);
    max-height: 680px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* ============================
    LEFT INFO PANEL
============================ */
.contact-info-panel {
    width: 320px;
    flex-shrink: 0;
    background: linear-gradient(160deg, #2d1a08 0%, #5a3010 60%, #FF8C00 140%);
    display: flex;
    align-items: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 140, 0, 0.15);
    border-radius: 50%;
}

.contact-info-panel::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.info-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.info-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.info-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 2px;
}

.info-value {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.3;
}

.social-row {
    display: flex;
    gap: 0.5rem;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.social-btn:hover {
    background: #FF8C00;
    color: white;
}

/* ============================
    RIGHT FORM PANEL
============================ */
.contact-form-panel {
    flex: 1;
    background: white;
    display: flex;
    align-items: center;
    overflow-y: auto;
}

.form-inner {
    width: 100%;
    padding: 2.5rem 3rem;
}

.contact-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.contact-input {
    width: 100%;
    background: #f8f9fa;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: all 0.2s;
}

.contact-input:focus {
    border-color: #FF8C00;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.contact-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF8C00, #FFD700);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
    margin-top: 0.5rem;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 140, 0, 0.4);
}

/* ============================
    MOBILE VIEW
============================ */
@media (max-width: 767.98px) {
    .contact-page-wrapper {
        height: auto;
        min-height: 100vh;
        padding: 0;
        background: #f2f4f7;
        align-items: flex-start;
        overflow-y: auto;
    }

    .contact-frame {
        flex-direction: column;
        border-radius: 0;
        max-height: none;
        height: auto;
        box-shadow: none;
        width: 100%;
    }

    .contact-info-panel {
        width: 100%;
        padding: 0.65rem 1rem;
        border-radius: 0;
        flex-shrink: 0;
    }

    .brand-mark {
        display: none;
    }

    .contact-info-panel h1 {
        font-size: 0.95rem !important;
        margin-bottom: 0.1rem !important;
    }

    .contact-info-panel .info-inner>p {
        font-size: 0.68rem;
        margin-bottom: 0.35rem !important;
    }

    .info-inner>.info-item {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        margin-bottom: 0.2rem;
        overflow: hidden;
    }

    .info-item .info-icon {
        width: 20px;
        height: 20px;
        border-radius: 5px;
        font-size: 0.6rem;
        flex-shrink: 0;
    }

    .info-item .info-label {
        display: none;
    }

    .info-item .info-value {
        font-size: 0.72rem;
        white-space: normal;
        line-height: 1.2;
    }

    .social-row {
        margin-top: 0.35rem !important;
    }

    .social-btn {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
        border-radius: 6px;
    }

    .contact-form-panel {
        border-radius: 14px 14px 0 0;
        margin-top: -10px;
        position: relative;
        z-index: 10;
        background: white;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        overflow: visible;
    }

    .form-inner {
        padding: 1rem 0.9rem 2rem;
        width: 100%;
    }

    .form-inner h4 {
        font-size: 1rem !important;
        margin-bottom: 0.1rem !important;
    }

    .form-inner>p {
        font-size: 0.75rem !important;
        margin-bottom: 0.45rem !important;
    }

    .contact-form-panel .row.g-2>.col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact-label {
        font-size: 0.7rem;
        margin-bottom: 0.15rem;
    }

    .contact-input {
        font-size: 0.8rem;
        padding: 0.4rem 0.7rem;
        border-radius: 8px;
    }

    .mb-2 {
        margin-bottom: 0.3rem !important;
    }

    .mb-3 {
        margin-bottom: 0.45rem !important;
    }

    .contact-submit-btn {
        padding: 0.65rem;
        font-size: 0.85rem;
        border-radius: 10px;
        margin-top: 0.2rem;
    }
}
