/* =====================================================
   DATANXZEN PREMIUM CONTACT PAGE
===================================================== */

:root{

    --primary:#0057FF;
    --secondary:#2D8CFF;
    --accent:#22C1FF;

    --dark:#081B33;
    --text:#49566A;

    --bg:#F7FAFD;
    --white:#ffffff;

    --border:#E5ECF5;

    --shadow:0 15px 45px rgba(17,42,89,.08);

    --radius:24px;

}

.contact-page{

    background:var(--bg);

}


/*==================================================
Hero
==================================================*/

.contact-hero{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:
    linear-gradient(135deg,#031B46 0%,#0057FF 45%,#149DFF 100%);

    color:#fff;

}

.contact-hero h1{

    font-size:58px;

    font-weight:800;

    line-height:1.2;

    margin:25px 0;

}

.contact-hero h1 span{

    color:#9FE4FF;

}

.contact-hero p{

    font-size:20px;

    opacity:.95;

    max-width:760px;

    margin:auto;

}

.hero-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    letter-spacing:2px;

    font-size:13px;

    font-weight:600;

}


/* Floating circles */

.hero-circle{

    position:absolute;

    border-radius:50%;

    filter:blur(5px);

    opacity:.18;

}

.circle1{

    width:300px;

    height:300px;

    background:#fff;

    top:-80px;

    right:-80px;

}

.circle2{

    width:180px;

    height:180px;

    background:#00E4FF;

    left:-50px;

    bottom:-40px;

}

.circle3{

    width:120px;

    height:120px;

    background:#fff;

    left:45%;

    top:40px;

}



/*==================================================
Contact Section
==================================================*/

.contact-section{

    padding:40px 0;

}


/*==================================================
Left Card
==================================================*/

.contact-info-card{

    background:
    linear-gradient(180deg,#0A4FFF,#0087FF);

    color:#fff;

    border-radius:28px;

    padding:38px;

    box-shadow:var(--shadow);

    position:sticky;

    top:40px;

}

.contact-info-card h2{

    font-size:34px;

    font-weight:700;

    margin-bottom:20px;

}

.contact-info-card p{

    color:rgba(255,255,255,.9);

}

.info-box{

    display:flex;

    gap:18px;

    margin-top:15px;

}

.info-box .icon{

    width:60px;

    height:60px;

    border-radius:16px;

    background:rgba(255,255,255,.18);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    flex-shrink:0;

}

.info-box h5{

    font-size:18px;

    margin-bottom:10px;

    font-weight:600;

}

.info-box p{

    margin-bottom:6px;

    line-height:1.7;

}

.contact-bottom{

    display:flex;

    justify-content:space-between;

    margin-top:15px;

    padding-top:10px;

    border-top:1px solid rgba(255,255,255,.2);

}

.contact-bottom h6{

    font-size:15px;

    font-weight:700;

}

.contact-bottom p{

    margin:0;

}



/*==================================================
Right Card
==================================================*/

.contact-form-card{

    background:#fff;

    border-radius:28px;

    padding:55px;

    box-shadow:var(--shadow);

}

.section-title span{

    color:var(--primary);

    letter-spacing:2px;

    font-size:13px;

    font-weight:700;

}

.section-title h2{

    font-size:42px;

    font-weight:700;

    margin:12px 0;

    color:var(--dark);

}
.section-title h3{

    font-size:20px;

    font-weight:700;

    margin:12px 0;

    color:var(--dark);

}

.section-title p{

    color:var(--text);

    margin-bottom:15px;

}



/*==================================================
Inputs
==================================================*/

.form-group{

    margin-bottom:15px;

}

.form-control,

.form-select{

    height:58px;

    border-radius:16px;

    border:1px solid var(--border);

    background:#FAFCFF;

    padding-left:20px;

    font-size:15px;

    transition:.35s;

    box-shadow:none;

}

textarea.form-control{

    height:auto;

    padding-top:18px;

}

.form-control:focus,

.form-select:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 .2rem rgba(0,87,255,.15);

    background:#fff;

}



/*==================================================
Captcha
==================================================*/

.captcha-box{

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#EEF6FF;

    border-radius:16px;

    letter-spacing:6px;

    font-size:16px;

    font-weight:700;

    color:var(--dark);

}

.refresh-btn{

    width:58px;

    height:58px;

    border:none;

    border-radius:16px;

    background:var(--primary);

    color:#fff;

    font-size:22px;

    transition:.35s;

}

.refresh-btn:hover{

    transform:rotate(180deg);

    background:#003FC2;

}



/*==================================================
Submit Button
==================================================*/

.send-btn{

    width:100%;

    height:62px;

    border:none;

    border-radius:18px;

    margin-top:15px;

    color:#fff;

    font-size:18px;

    font-weight:600;

    background:
    linear-gradient(135deg,#0057FF,#149DFF);

    transition:.35s;

}

.send-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(0,87,255,.25);

}



/*==================================================
Hover
==================================================*/

.contact-form-card{

    transition:.35s;

}

.contact-form-card:hover{

    transform:translateY(-6px);

}

.contact-info-card{

    transition:.35s;

}

.contact-info-card:hover{

    transform:translateY(-6px);

}

.info-box{

    transition:.35s;

}

.info-box:hover{

    transform:translateX(10px);

}



/*==================================================
Scrollbar
==================================================*/

textarea::-webkit-scrollbar{

    width:8px;

}

textarea::-webkit-scrollbar-thumb{

    background:#B9C8DD;

    border-radius:20px;

}



/*==================================================
Responsive
==================================================*/

@media(max-width:1200px){

.contact-hero h1{

font-size:48px;

}

.section-title h2{

font-size:36px;

}

}



@media(max-width:991px){

.contact-hero{

padding:90px 0;

}

.contact-hero h1{

font-size:40px;

}

.contact-info-card{

position:relative;

top:0;

}

.contact-form-card{

padding:35px;

margin-top:20px;

}

.contact-bottom{

flex-direction:column;

gap:20px;

}

}



@media(max-width:767px){

.contact-hero{

padding:70px 0;

}

.contact-hero h1{

font-size:30px;

}

.contact-hero p{

font-size:16px;

}

.contact-info-card{

padding:30px;

}

.contact-form-card{

padding:25px;

}

.section-title h2{

font-size:28px;

}

.info-box{

flex-direction:column;

}

.info-box .icon{

margin-bottom:10px;

}

.send-btn{

height:56px;

font-size:16px;

}

}



@media(max-width:575px){

.hero-badge{

font-size:11px;

}

.contact-hero h1{

font-size:26px;

}

.contact-hero p{

font-size:15px;

}

.form-control,

.form-select{

height:52px;

font-size:14px;

}

.captcha-box{

margin-bottom:15px;

}

.refresh-btn{

width:100%;

}

}