/* ================= HERO SECTION START ================= */

.hero{
height:500px;
background:url("../images/contact banner.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
color:#fff;
position:relative;
text-align:center;
}

.hero::after{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
top:0;
left:0;
}

.hero h1{
font-size:52px;
font-weight:700;
line-height:1.2;
position:relative;
z-index:2;
animation:fadeUp 1s ease;
}

.breadcrumb{
margin-top:10px;
font-size:16px;
color:#ddd;
letter-spacing:0.5px;
position:relative;
z-index:2;
}

/* ================= HERO SECTION END ================= */


/* ================= CONTACT SECTION START ================= */

.section{
padding:80px 8%;
animation:fadeUp 1s ease;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title small{
font-weight:600;
letter-spacing:2px;
}

.section-title h2{
font-size:50px;
font-weight:800;
opacity:.5;
}

/* ================= CONTACT CARDS ================= */

.contact-cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.card{
background:#dbe7f5;
padding:40px 25px;
border-radius:8px;
text-align:center;
transition:all .35s ease;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
position:relative;
overflow:hidden;
}

.card:hover{
transform:translateY(-10px) scale(1.03);
box-shadow:0 12px 30px rgba(0,0,0,0.18);
}

.card::before{
content:"";
position:absolute;
inset:0;
border-radius:8px;
padding:2px;
background:linear-gradient(120deg,#1c73d1,#4facfe,#1c73d1);
-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);
-webkit-mask-composite:xor;
mask-composite:exclude;
opacity:0;
transition:.4s;
}

.card:hover::before{
opacity:1;
}

/* ================= ICON ================= */

.icon-circle{
width:70px;
height:70px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 20px;
}

.icon-circle img{
width:50px;
transition:transform .4s ease;
}

.card:hover .icon-circle img{
transform:translateY(-6px) scale(1.1);
}

/* ================= CARD TEXT ================= */

.card h3{
margin-bottom:10px;
font-size:18px;
}

.card p{
font-size:15px;
line-height:1.6;
}

/* ================= FORM + MAP ================= */

.contact-wrapper{
display:grid;
grid-template-columns:2fr 1fr;
gap:50px;
margin-top:60px;
}

.contact-wrapper h2{
margin-bottom:30px;
}

/* ================= FORM ================= */

form{
display:grid;
gap:20px;
}

.form-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

input,
textarea{
padding:14px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
width:100%;
transition:.3s;
}

input:focus,
textarea:focus{
border-color:#1c73d1;
box-shadow:0 0 6px rgba(28,115,209,0.4);
outline:none;
}

textarea{
height:160px;
resize:none;
}

/* ================= SEND MESSAGE BUTTON ================= */

button{
width:180px;
padding:12px;
border:none;
background:#0b2b4a;
color:#fff;
border-radius:6px;
font-weight:600;
cursor:pointer;
position:relative;
overflow:hidden;
z-index:1;
transition:.3s;
}

button:hover{
transform:translateY(-2px);
box-shadow:0 0 20px rgba(28,115,209,0.6);
}

button::before{
content:"";
position:absolute;
top:-2px;
left:-2px;
right:-2px;
bottom:-2px;
background:linear-gradient(
90deg,
#1c73d1,
#00c6ff,
#1c73d1,
#00c6ff
);
background-size:400%;
border-radius:8px;
z-index:-1;
animation:glowMove 4s linear infinite;
}

button::after{
content:"";
position:absolute;
inset:2px;
background:#0b2b4a;
border-radius:6px;
z-index:-1;
}

/* ================= MAP ================= */

.map iframe{
width:100%;
min-height:420px;
border:0;
border-radius:8px;
transition:transform .4s ease, box-shadow .4s ease;
}

.map iframe:hover{
transform:scale(1.02);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* ================= CONTACT SECTION END ================= */


/* ================= ANIMATION SECTION START ================= */

@keyframes fadeUp{
0%{
opacity:0;
transform:translateY(40px);
}
100%{
opacity:1;
transform:translateY(0);
}
}

@keyframes glowMove{
0%{
background-position:0%;
}
100%{
background-position:400%;
}
}

/* ================= ANIMATION SECTION END ================= */


/* ================= RESPONSIVE SECTION START ================= */

@media (max-width:1024px){

.section{
padding:70px 6%;
}

.contact-cards{
grid-template-columns:repeat(2,1fr);
}

.contact-wrapper{
grid-template-columns:1fr;
gap:40px;
}

.hero h1{
font-size:42px;
}

.section-title h2{
font-size:40px;
}

}

@media (max-width:768px){

.hero{
height:360px;
}

.hero h1{
font-size:34px;
}

.section{
padding:60px 20px;
}

.contact-cards{
grid-template-columns:1fr;
}

.form-row{
grid-template-columns:1fr;
}

.section-title h2{
font-size:34px;
}

button{
width:100%;
}

.map iframe{
min-height:300px;
}

}

@media (max-width:480px){

.hero h1{
font-size:28px;
}

.section-title h2{
font-size:28px;
}

.card{
padding:30px 20px;
}

}

/* ================= RESPONSIVE SECTION END ================= */