.contact-bg {
    background: radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 120, 255, 0.15), transparent 40%),
        #0f172a;
}


.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22d3ee, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    font-size: 18px;
}

/* ============================= */
/* HEIGHT BASED RESPONSIVENESS  */
/* ============================= */

@media (max-height: 820px) {

    .contact-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .contact-title {
        font-size: 42px;
    }

    .contact-desc {
        font-size: 15px;
    }

    .contact-card {
        padding: 24px !important;
    }

    .contact-card h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .icon-box {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .contact-card .space-y-8>div {
        gap: 12px;
    }

    .quote-title {
        font-size: 15px;
    }
}

/* Extra short screens */
@media (max-height: 720px) {

    .contact-title {
        font-size: 42px;
    }

    .contact-desc {
        font-size: 14px;
    }

    .contact-card {
        padding: 18px !important;
    }

    .icon-box {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .contact-card h3 {
        font-size: 16px;
    }
}