@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

body{
background:#f7f9fb;
overflow-x:hidden;
color:#092533;
}

.background-glow{
position:fixed;
top:50%;
left:50%;
width:700px;
height:700px;
background:radial-gradient(
circle,
rgba(0,190,180,.25),
transparent 70%
);
transform:translate(-50%,-50%);
filter:blur(80px);
z-index:-1;
}

.contact-section{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
gap:80px;
padding:30px;
}

.contact-left{
flex:1;
max-width:600px;
}

.tag{
display:inline-block;
padding:10px 18px;
background:white;
border-radius:100px;
font-size:12px;
font-weight:700;
letter-spacing:2px;
color:#00a79d;
margin-bottom:30px;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.contact-left h1{
font-size:4rem;
line-height:1.1;
font-weight:800;
margin-bottom:25px;
}

.contact-left h1 span{
color:#00a79d;
}

.contact-left p{
font-size:1.1rem;
line-height:1.7;
color:#66788a;
margin-bottom:40px;
}

.contact-cards{
display:flex;
flex-direction:column;
gap:18px;
}

.contact-card{
background:rgba(255,255,255,.75);
backdrop-filter:blur(18px);
padding:20px;
border-radius:22px;
display:flex;
align-items:center;
gap:15px;
border:1px solid rgba(255,255,255,.6);
box-shadow:0 20px 40px rgba(0,0,0,.05);
text-decoration: none;
color: inherit;
}

.contact-card i{
font-size:22px;
color:#00a79d;
}

.contact-card h4{
margin-bottom:4px;
}

.contact-card span{
font-size:.9rem;
color:#6c7d8d;
}

.social-link,
.social-link:visited,
.social-link:hover,
.social-link:active {
    text-decoration: none;
    color: inherit;
}

.contact-right{
flex:1;
max-width:550px;
}

form{
background:rgba(255,255,255,.70);
backdrop-filter:blur(25px);
padding:45px;
border-radius:35px;
border:1px solid rgba(255,255,255,.5);
box-shadow:0 25px 60px rgba(0,0,0,.08);
}

form h2{
margin-bottom:35px;
font-size:2rem;
}

.form-group{
position:relative;
margin-bottom:28px;
}

.form-group input,
.form-group textarea{
width:100%;
padding:18px 20px;
border:none;
outline:none;
background:white;
border-radius:15px;
font-size:15px;
}

.form-group label{
position:absolute;
left:20px;
top:18px;
pointer-events:none;
transition:.3s;
color:#8493a2;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label{
top:-10px;
left:12px;
font-size:12px;
background:white;
padding:3px 8px;
border-radius:10px;
}

button{
width:100%;
padding:18px;
border:none;
border-radius:14px;
cursor:pointer;
font-size:1rem;
font-weight:700;

background:linear-gradient(
135deg,
#00a79d,
#00d4c7
);

color:white;

transition:.3s;
}

button:hover{
transform:translateY(-4px);
box-shadow:0 15px 35px rgba(0,167,157,.35);
}


@media(max-width:1024px){

.contact-section{
flex-direction:column;
padding:50px 30px;
}

.contact-left h1{
font-size:3rem;
}



}