/* ═══════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════ */

#contact {
    position: relative;
    z-index: 1;
    padding: 96px 0;
    background: var(--ink);
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 10% 50%, rgba(0, 212, 170, 0.06), transparent 55%),
        radial-gradient(ellipse 40% 60% at 90% 20%, rgba(30, 106, 255, 0.06), transparent 50%);
}

/* ── Grid ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ── Left Side ── */
.contact-left h2 {
    color: white;
    margin-bottom: 12px;
}

.contact-left>p {
    margin-bottom: 36px;
}

/* ── Contact Cards ── */
.cch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cc-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    padding: 18px 16px;
    text-align: center;
    transition: all 0.25s;
    text-decoration: none;
    display: block;
}


.cc-card:hover {
    border-color: var(--glass-border-2);
    background: rgba(0, 194, 255, 0.04);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 194, 255, 0.08);
}

.cc-ico {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-icon-img {
    height: 40px;
    width: 40px;
}

.cc-lbl {
    font-size: 0.68rem;
    color: var(--text-dim);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
}

.cc-val {
    font-size: 0.88rem;
    color: white;
    font-weight: 700;
}

/* ── Form Card ── */
.contact-form-card {
    background: rgba(5, 15, 30, 0.85);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-xl);
    padding: 36px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
}

.contact-form-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.contact-form-card>p {
    font-size: 0.84rem;
    margin-bottom: 24px;
}

/* ── Form submission ── */
.btn[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
