/* =========================
   CONTACT PAGE
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f8faff;
color:#1f2937;
}

/* Hero */

.contact-hero{

padding:150px 20px 80px;

background:linear-gradient(135deg,#0f172a,#2563eb);

text-align:center;

color:white;

}

.contact-hero h1{

font-size:55px;

margin-bottom:20px;

}

.contact-hero p{

max-width:650px;

margin:auto;

font-size:18px;

color:#e5e7eb;

line-height:1.8;

}

/* Contact Section */

.contact-section{

padding:80px 20px;

}

.contact-card{

max-width:750px;

margin:auto;

background:white;

padding:45px;

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.contact-card h2{

text-align:center;

margin-bottom:35px;

font-size:34px;

}

/* Inputs */

.input-group{

margin-bottom:22px;

}

.input-group label{

display:block;

margin-bottom:8px;

font-weight:600;

}

.input-group input,
.input-group textarea,
.input-group select{

width:100%;

padding:16px;

border:1px solid #dbe4f3;

border-radius:12px;

font-size:16px;

outline:none;

transition:.3s;

background:#fafcff;

}

.input-group textarea{

height:150px;

resize:none;

}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus{

border-color:#2563eb;

box-shadow:0 0 0 4px rgba(37,99,235,.15);

}

/* Button */

.send-btn{

width:100%;

padding:17px;

border:none;

border-radius:12px;

background:#2563eb;

color:white;

font-size:18px;

font-weight:600;

cursor:pointer;

transition:.35s;

}

.send-btn:hover{

background:#1d4ed8;

transform:translateY(-3px);

}

/* Popup */

.popup{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.55);

display:none;

justify-content:center;

align-items:center;

backdrop-filter:blur(5px);

z-index:99999;

}

.popup-card{

background:white;

padding:45px;

border-radius:25px;

width:380px;

max-width:92%;

text-align:center;

animation:popup .35s ease;

}

.check{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

background:#22c55e;

display:flex;

justify-content:center;

align-items:center;

font-size:42px;

color:white;

margin-bottom:25px;

animation:tick .8s;

}

.popup-card h2{

margin-bottom:12px;

}

.popup-card p{

color:#666;

margin-bottom:25px;

line-height:1.7;

}

#okBtn{

padding:14px 35px;

border:none;

background:#2563eb;

color:white;

border-radius:12px;

cursor:pointer;

font-size:16px;

font-weight:600;

}

/* Animations */

@keyframes popup{

from{

opacity:0;

transform:scale(.8);

}

to{

opacity:1;

transform:scale(1);

}

}

@keyframes tick{

0%{

transform:scale(0);

}

60%{

transform:scale(1.2);

}

100%{

transform:scale(1);

}

}

/* Mobile */

@media(max-width:768px){

.contact-hero{

padding:120px 20px 60px;

}

.contact-hero h1{

font-size:36px;

}

.contact-card{

padding:25px;

}

.contact-card h2{

font-size:28px;

}

.popup-card{

padding:30px;

}

}