/* ================= CONTACT PAGE STYLES ================= */

/* Contact Wrapper */
.contact-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
}

/* Left Panel (Dark Background) */
.contact-info-panel {
    background: #0f172a;
    /* Theme Dark Blue */
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Decorative Circle Pattern (Optional) */
.contact-info-panel::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact-info-panel::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact-info-card {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-card h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.contact-info-card .subtitle {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

/* Info List Adjustments */
.info-list .info-item {
    color: #fff;
    /* Ensure text is white on dark background */
}

.info-item span {
    color: rgba(255, 255, 255, 0.6);
}

.info-item p {
    color: #fff;
}

/* Form Panel */
.contact-form-card {
    height: 100% !important;
    box-shadow: none !important;
    /* Remove individual shadow as wrapper has it */
    padding: 0 !important;
    /* Reset padding, let column padding handle it */
}

.contact-form-card h2 {
    color: #0f172a;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info-panel,
    .contact-form-card {
        width: 100%;
    }
}