/* ================= ROOT ================= */
:root {
    --primary-color: #7e00a7;
    --text-color: #6e7380;
    --title-color: #000000;
    --border-color: #e0e0e0;
    --font: "Poppins", sans-serif;
}

/* ================= COMMON ================= */
body {
    font-family: var(--font);
    background: linear-gradient(to bottom, #ffffff, #f4d6ff);
}

/* ================= HERO ================= */
.contact-hero {
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero h1 {
    font-size: 38px;
    font-weight: 700;
}

.contact-hero p {
    color: var(--text-color);
    max-width: 600px;
    margin: 10px auto 0;
}

/* Creative blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #f5dcfe, #ffffff);
    opacity: 0.7;
}

.blob-1 {
    width: 260px;
    height: 260px;
    top: -90px;
    left: -90px;
}

.blob-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    right: -80px;
}

/* ================= CONTACT ================= */
.contact-wrapper {
    margin-bottom: 100px;
}

/* Glass Card (premium feel) */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.18);
}

/* INFO */
.info-card h5,
.form-card h5 {
    font-weight: 600;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.info-item strong {
    display: block;
    color: var(--title-color);
}

.response-note {
    margin-top: 30px;
    font-size: 13px;
    color: var(--text-color);
}

/* FORM */
.form-control {
    border-radius: 6px;
    border: 1px solid var(--border-color);
    font-size: 14px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* BUTTON */
.btn-purple {
    background: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    font-weight: 500;
    padding: 11px;
    transition: 0.3s ease;
}

.btn-purple:hover {
    background: #68008d;
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .contact-hero h1 {
        font-size: 28px;
    }
}
