/* =========================
CONTACT PAGE STYLING
contact.css
Note: shared rules like .section-heading and
.section-badge live in style.css — do not
redefine them here.
========================= */



/* =========================
CONTACT HERO SECTION
========================= */

.contact-hero{
    padding: 180px 0 120px;
    background: linear-gradient(
        135deg,
        #02142f 0%,
        #032b63 45%,
        #005eff 100%
    );
    position: relative;
    overflow: hidden;
}

.contact-hero::before{
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(0, 213, 255, 0.12);
    top: -180px;
    left: -140px;
    filter: blur(60px);
}

.contact-hero::after{
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    bottom: -180px;
    right: -120px;
    filter: blur(60px);
}



/* =========================
HERO WRAPPER
========================= */

.contact-hero-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    position: relative;
    z-index: 2;
}



/* =========================
HERO CONTENT
========================= */

.contact-hero-content{
    flex: 1;
}

.contact-hero-content .section-badge{
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
}

.contact-hero-content h1{
    font-size: 64px;
    line-height: 1.15;
    color: #ffffff;
    font-weight: 800;
    margin: 28px 0 24px;
}

.contact-hero-content h1 span{
    color: #00d5ff;
}

.contact-hero-content p{
    font-size: 17px;
    line-height: 1.9;
    color: #dce8ff;
    max-width: 620px;
}



/* =========================
HERO BUTTONS
========================= */

.contact-hero-buttons{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}



/* =========================
HERO IMAGE
========================= */

.contact-hero-image{
    flex: 1;
    text-align: center;
}

.contact-hero-image img{
    width: 100%;
    max-width: 520px;
    height: auto;
    animation: contactFloat 4s ease-in-out infinite;
}

@keyframes contactFloat{

    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-18px);
    }

    100%{
        transform: translateY(0);
    }

}



/* =========================
CONTACT INFO SECTION
========================= */

.contact-info-section{
    padding: 120px 0;
    background: #ffffff;
}



/* =========================
CONTACT INFO GRID
========================= */

.contact-info-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}



/* =========================
CONTACT CARD
========================= */

.contact-info-card{
    background: #ffffff;
    border-radius: 30px;
    padding: 42px 30px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
    transition: 0.45s ease;
}

.contact-info-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,119,255,0.14);
}



/* =========================
CONTACT ICON
========================= */

.contact-icon{
    width: 95px;
    height: 95px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        #00cfff,
        #005eff
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 28px;
}

.contact-icon i{
    color: #ffffff;
    font-size: 36px;
}



/* =========================
CONTACT TEXT
========================= */

.contact-info-card h3{
    font-size: 26px;
    color: #071c3d;
    margin-bottom: 18px;
}

.contact-info-card p{
    font-size: 15px;
    line-height: 1.9;
    color: #5b6b84;
}



/* =========================
CONTACT FORM SECTION
========================= */

.contact-form-section{
    padding: 120px 0;
    background: linear-gradient(
        180deg,
        #f7fbff 0%,
        #ffffff 100%
    );
}



/* =========================
FORM WRAPPER
========================= */

.contact-form-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}



/* =========================
FORM BOX
========================= */

.contact-form-box{
    background: #ffffff;
    padding: 55px 45px;
    border-radius: 34px;
    box-shadow: 0 20px 55px rgba(0,0,0,0.06);
}

.contact-form-box h2{
    font-size: 48px;
    line-height: 1.25;
    color: #071c3d;
    margin: 24px 0 34px;
    font-weight: 800;
}

.contact-form-box h2 span{
    color: #005eff;
}



/* =========================
FORM GROUP
========================= */

.form-group{
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width: 100%;
    border: 1px solid #dfe8f5;
    background: #f7fbff;
    padding: 18px 22px;
    border-radius: 18px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #071c3d;
    outline: none;
    transition: 0.3s ease;
}

.form-group textarea{
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color: #005eff;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0,94,255,0.08);
}



/* =========================
FORM BUTTON
========================= */

.form-btn{
    width: 100%;
    border: none;
    padding: 18px 26px;
    border-radius: 60px;
    background: linear-gradient(
        135deg,
        #00cfff,
        #005eff
    );
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.4s ease;
}

.form-btn:hover{
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,119,255,0.22);
}



/* =========================
CONTACT IMAGE
========================= */

.contact-image-box{
    text-align: center;
}

.contact-image-box img{
    width: 100%;
    max-width: 560px;
    height: auto;
}



/* =========================
MAP SECTION
========================= */

.map-section{
    padding: 120px 0;
    background: #ffffff;
}



/* =========================
MAP WRAPPER
========================= */

.map-wrapper{
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(0,0,0,0.08);
}

.map-wrapper iframe{
    width: 100%;
    height: 500px;
    border: none;
}



/* =========================
QUICK CONTACT SECTION
========================= */

.quick-contact-section{
    padding: 0 0 120px;
    background: #ffffff;
}



/* =========================
QUICK CONTACT WRAPPER
========================= */

.quick-contact-wrapper{
    background: linear-gradient(
        135deg,
        #02142f,
        #032b63,
        #005eff
    );
    border-radius: 38px;
    padding: 60px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.quick-contact-wrapper::before{
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    top: -150px;
    right: -120px;
}



/* =========================
QUICK CONTACT CONTENT
========================= */

.quick-contact-content{
    position: relative;
    z-index: 2;
}

.quick-contact-content h2{
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 800;
}

.quick-contact-content p{
    font-size: 16px;
    line-height: 1.9;
    color: #dce8ff;
}



/* =========================
QUICK CONTACT BUTTONS
========================= */

.quick-contact-buttons{
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}



/* =========================
RESPONSIVE
========================= */

@media(max-width: 1200px){

    .contact-info-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}



@media(max-width: 992px){

    .contact-hero-wrapper,
    .contact-form-wrapper,
    .quick-contact-wrapper{
        grid-template-columns: 1fr;
        display: grid;
    }

    .contact-hero-content{
        text-align: center;
    }

    .contact-hero-content p{
        margin: auto;
    }

    .contact-hero-buttons{
        justify-content: center;
    }

    .quick-contact-content{
        text-align: center;
    }

    .quick-contact-buttons{
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-hero-content h1{
        font-size: 52px;
    }

}



@media(max-width: 768px){

    .contact-info-grid{
        grid-template-columns: 1fr;
    }

    .contact-hero{
        padding: 160px 0 100px;
    }

    .contact-hero-content h1{
        font-size: 42px;
    }

    .contact-form-box h2,
    .quick-contact-content h2{
        font-size: 36px;
    }

    .quick-contact-wrapper{
        padding: 50px 35px;
    }

}



@media(max-width: 480px){

    .contact-hero-content h1{
        font-size: 34px;
    }

    .contact-hero-buttons{
        flex-direction: column;
    }

    .contact-hero-buttons a{
        width: 100%;
        text-align: center;
    }

    .contact-form-box{
        padding: 40px 28px;
    }

    .contact-form-box h2,
    .quick-contact-content h2{
        font-size: 30px;
    }

    .quick-contact-buttons{
        flex-direction: column;
    }

    .quick-contact-buttons a{
        width: 100%;
        text-align: center;
    }

}