/* Page */
.contact-page {
    padding: 80px 0;
    background: #f8f9fc;
}

/* LEFT */
.contact-left {
    background: #fff;
    padding: 40px;
    border-radius: 22px;
}

/* Pill */
.contact-pill {
    background: #fde7f3;
    color: #c552a0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
}

/* Heading */
.contact-heading {
    font-size: 34px;
    font-weight: 700;
}

.contact-heading span {
    color: #c552a0;
}

.contact-subtext {
    color: #6b7280;
    max-width: 460px;
    margin: 15px 0 30px;
}

/* Info Cards */
.contact-info-card {
    display: flex;
    gap: 16px;
    background: #fff;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #eee;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.icon-box {
    width: 42px;
    height: 42px;
    background: #fde7f3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c552a0;
    font-size: 16px;
}

/* Social */
.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.contact-social a {
    width: 34px;
    height: 34px;
    background: #fde7f3;
    color: #c552a0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.contact-social a:hover {
    background: #c552a0;
    color: #fff;
}

/* RIGHT */
.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Form */
.form-control {
    padding: 13px 14px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.form-control:focus {
    border-color: #c552a0;
    box-shadow: 0 0 0 3px rgba(197,82,160,0.15);
}

.contact-submit-btn {
    background: #fde7f3;
    padding: 12px 34px;
    color: #c552a0;
    border-radius: 30px;
    border: none;
}

.contact-submit-btn:hover {
    background: #f48bd0;
    color: white;
}

/* Mobile */
@media (max-width: 767px) {
    .contact-heading {
        font-size: 26px;
    }
    .contact-left,
    .contact-form-box {
        padding: 28px;
    }
}
