/* =========================
    CONTACT INFO SECTION
========================= */

.contact-info-section {
    padding: 60px 0;
        background: linear-gradient(180deg, #f6f9ff 0%, #eef4ff 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    padding: 40px 28px;
    text-align: center;
    border-radius: 18px;

    box-shadow: 0 20px 45px rgba(15, 67, 184, 0.08);
    border: 1px solid rgba(31, 79, 214, 0.12);

    transition: all 0.35s ease;
    overflow: hidden;
}

/* gradient glow layer */
.contact-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #1f4fd6, #4f7dff, #0f2a6d);
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
}

/* inner content above glow */
.contact-card > * {
    position: relative;
    z-index: 2;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(31, 79, 214, 0.18);
}

.contact-card:hover::before {
    opacity: 0.12;
}

.contact-card .icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(135deg, #1f4fd6, #0f2a6d);
    color: #fff;

    font-size: 20px;

    box-shadow: 0 10px 25px rgba(31, 79, 214, 0.3);

    transition: 0.3s;
}

.contact-card:hover .icon {
    transform: rotate(8deg) scale(1.1);
}

.contact-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f2a6d;
    font-weight: 700;
}

.contact-card p {
    color: #5b6b8c;
    font-size: 15px;
}


/* =========================
    CONTACT MAIN SECTION
========================= */

.contact-main {
    padding: 80px 0;
    background: #e5f7ff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* MAP */
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
    border-radius: 12px;
}

/* FORM */
.contact-form {
    padding: 40px;
    border-radius: 12px;
    color: #fff;

    /* GRADIENT BACKGROUND */
    background: linear-gradient(135deg, #1f4fd6 0%, #143388 50%, #1f4fd6 100%);

    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);

    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .15);
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.692);
    background: transparent;
    color: #fff;
    border-radius: 6px;
    outline: none;
}

.contact-form textarea {
    margin-top: 15px;
    min-height: 120px;
    resize: none;
}

.contact-form button {
    margin-top: 20px;
    padding: 12px 20px;
    background: #213a8f;
    border: none;
    color: #f8f8f8;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
}

.contact-form button:hover {
    background: #ffffff;
    color: #1f4fd6;
}


/* =========================
    RESPONSIVE
========================= */

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

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