.contact-wrapper{
padding:120px 0;
min-height:100vh;

/* simple professional background */

background:#cbdcf4;
}
form{
background:white;
padding:40px;
border-radius:10px;

box-shadow:0 8px 25px rgba(0,0,0,0.08);
}
.contact-left{
color:#222;
}

.contact-left p{
color:#555;
}
.contact-btn{

background:#0d6efd;
color:white;

border:none;

padding:12px 25px;

border-radius:6px;

font-weight:600;
}

.contact-btn:hover{
background:#084298;
}
/* ===== Desktop / Large Screens ===== */

@media (min-width:1200px){

.contact-left h2{
font-size:42px;
}

}


/* ===== Laptop ===== */

@media (max-width:1199px){

.contact-left h2{
font-size:36px;
}

}


/* ===== Tablet (iPad) ===== */

@media (max-width:992px){

.contact-left{
text-align:center;
margin-bottom:40px;
}

.contact-left h2{
font-size:32px;
}

.contact-info{
justify-content:center;
}

}


/* ===== Large Mobile ===== */

@media (max-width:768px){

.contact-wrapper{
padding:80px 0;
}

.contact-left h2{
font-size:28px;
}

.contact-left p{
font-size:14px;
}

form{
padding:30px;
}

.contact-btn{
width:100%;
}

}


/* ===== Small Mobile (iPhone / Android) ===== */

@media (max-width:480px){

.contact-left h2{
font-size:24px;
}

.contact-left p{
font-size:13px;
}

form{
padding:20px;
}

.form-control{
font-size:14px;
}

.contact-btn{
padding:12px;
}

}
.site-footer{

background:#111;

color:#ddd;

padding:70px 0 20px;

margin-top:80px;

position:relative;

overflow:hidden;

}

/* container */

.footer-container{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:40px;

padding:0 20px;

}

/* logo */

.footer-logo{

height:60px;

margin-bottom:15px;

}

/* text */

.footer-desc{

font-size:14px;

line-height:1.7;

color:#bbb;

}

/* headings */

.footer-col h3{

color:white;

margin-bottom:20px;

font-size:20px;

position:relative;

}

/* underline animation */

.footer-col h3::after{

content:"";

width:40px;

height:3px;

background:#e31b23;

position:absolute;

left:0;

bottom:-8px;

}

/* list */

.footer-col ul{

list-style:none;

padding:0;

}

.footer-col ul li{

margin-bottom:10px;

font-size:14px;

}

/* links */

.footer-col ul li a{

color:#bbb;

text-decoration:none;

transition:.3s;

}

.footer-col ul li a:hover{

color:#e31b23;

padding-left:5px;

}

/* social icons */

.social-icons{

margin-top:20px;

}

.social-icons a{

display:inline-block;

width:40px;

height:40px;

line-height:40px;

text-align:center;

border-radius:50%;

background:#222;

color:white;

margin-right:10px;

transition:.3s;

}

.social-icons a:hover{

background:#e31b23;

transform:translateY(-4px);

}

/* bottom */

.footer-bottom{

text-align:center;

border-top:1px solid #333;

margin-top:40px;

padding-top:15px;

font-size:14px;

color:#aaa;

}

/* responsive */

@media(max-width:768px){

.site-footer{

text-align:center;

}

.footer-col h3::after{

left:50%;

transform:translateX(-50%);

}
}