/* ===========================================================
   CONTACT PAGE REDESIGN
   =========================================================== */

.contact-hero {
    padding: 60px 0 10px;
    text-align: center;
}

.contact-hero__subtitle {
    max-width: 560px;
    margin: 0 auto;
    color: var(--pc);
    font-size: 15px;
}

.contact-section {
    padding-top: 30px;
}

/* Quick info cards */
.contact-quickinfo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.quickinfo-card {
    background: var(--wc);
    border: 1px solid #eee3fb;
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 0 15px 35px -18px rgba(74, 29, 140, .22);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.quickinfo-icon {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sc), var(--sc2));
    color: var(--wc);
    font-size: 18px;
}

.quickinfo-card p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: #4a4453;
}

/* Form + side grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 46px;
}

.contact-card,
.contact-side-card,
.contact-side-brand {
    background: var(--wc);
    border: 1px solid #eee3fb;
    border-radius: 18px;
    box-shadow: 0 20px 40px -20px rgba(74, 29, 140, .2);
}

.contact-card {
    padding: 34px 36px;
}

.contact-card h6 {
    font-weight: 700;
    font-size: 20px;
    color: #241c30;
    border-bottom: 1px solid #f0eaf7;
    padding-bottom: 14px;
    margin-bottom: 22px;
}

.contact-field {
    margin-bottom: 16px;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1.5px solid #e7e4f0;
    background: #faf9fc;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.contact-field textarea {
    height: 130px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--sc2);
    background: var(--wc);
    box-shadow: 0 0 0 4px rgba(125, 66, 210, .12);
}

.contact-field .text-danger {
    display: block;
    font-size: 12px;
    margin-top: 5px;
}

.contact-submit-btn {
    border: none;
    cursor: pointer;
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    color: var(--wc);
    background: linear-gradient(90deg, var(--sc), var(--sc2));
    box-shadow: 0 12px 22px -10px rgba(74, 29, 140, .5);
    transition: transform .2s, box-shadow .2s;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 26px -10px rgba(74, 29, 140, .6);
}

/* Side column */
.contact-side {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-side-card {
    padding: 26px 28px;
}

.contact-side-card h6 {
    font-weight: 700;
    font-size: 15px;
    color: #241c30;
    margin: 0 0 16px;
}

.contact-social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-social-row a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ece5f7;
    color: var(--sc);
    transition: .2s;
}

.contact-social-row a:hover {
    background: linear-gradient(135deg, var(--sc), var(--sc2));
    border-color: transparent;
    color: var(--wc);
    transform: translateY(-2px);
}

.contact-side-brand {
    flex: 1;
    padding: 28px 26px;
    color: var(--wc);
    background: linear-gradient(160deg, var(--sc) 0%, var(--sc2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-side-brand::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 110%, rgba(255, 230, 0, .25), transparent 55%);
}

.contact-side-brand img {
    align-self: flex-start;
    width: auto;
    height: 30px;
    margin-bottom: 14px;
    position: relative;
}

.contact-side-brand p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    opacity: .92;
    position: relative;
}

/* Map */
.contact-map-frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee3fb;
    box-shadow: 0 20px 40px -20px rgba(74, 29, 140, .2);
    line-height: 0;
    background: var(--gc2);
}

.contact-map-frame iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

@media (max-width: 991px) {
    .contact-quickinfo {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 26px 22px;
    }
}
