/*=========================================
 BKTech Contact Page
=========================================*/

body{
font-family:Arial,Helvetica,sans-serif;
background:#f8f9fa;
color:#333;
}

/* Hero */

.contact-hero{
background:linear-gradient(135deg,#0d6efd,#004aad);
padding:90px 0;
color:#fff;
overflow:hidden;
}

.contact-hero h1{
font-size:3rem;
font-weight:700;
}

.contact-hero p{
font-size:18px;
line-height:1.8;
}

.contact-hero img{
width:100%;
max-width:550px;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,.25);
}

/* Contact Cards */

.contact-card{
border:none;
border-radius:20px;
transition:.35s;
background:#fff;
}

.contact-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.contact-card .card-body{
padding:35px;
}

.contact-card i{
margin-bottom:18px;
}

/* Form */

.form-control,
.form-select{
border-radius:12px;
padding:12px;
border:1px solid #ced4da;
}

.form-control:focus,
.form-select:focus{
border-color:#0d6efd;
box-shadow:0 0 10px rgba(13,110,253,.2);
}

textarea{
resize:none;
}

/* Cards */

.card{
border:none;
border-radius:20px;
overflow:hidden;
}

.card-body{
padding:30px;
}

/* Buttons */

.btn{
border-radius:50px;
font-weight:600;
padding:12px 30px;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
}

/* Google Map */

iframe{
border:0;
border-radius:20px;
}

/* FAQ */

.accordion-item{
border:none;
margin-bottom:15px;
border-radius:15px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.accordion-button{
font-weight:600;
}

.accordion-button:not(.collapsed){
background:#0d6efd;
color:#fff;
}

/* Footer */

footer{
background:#111827;
}

footer h4,
footer h5{
font-weight:700;
}

footer p{
color:#ddd;
line-height:1.8;
}

footer a{
color:#ddd;
text-decoration:none;
transition:.3s;
}

footer a:hover{
color:#0d6efd;
padding-left:6px;
}

/* Shadow */

.shadow-lg{
box-shadow:0 20px 45px rgba(0,0,0,.15)!important;
}

.rounded-4{
border-radius:22px!important;
}

/* Badge */

.badge{
font-size:15px;
padding:10px 18px;
border-radius:30px;
}

/* Responsive */

@media(max-width:992px){

.contact-hero{
padding:70px 0;
text-align:center;
}

.contact-hero h1{
font-size:2.3rem;
}

.contact-hero img{
margin-top:35px;
}

}

@media(max-width:768px){

.contact-hero{
padding:60px 0;
}

.contact-hero h1{
font-size:2rem;
}

.btn{
width:100%;
margin-bottom:10px;
}

.contact-card{
margin-bottom:20px;
}

.card-body{
padding:25px;
}

}

@media(max-width:576px){

.contact-hero h1{
font-size:1.8rem;
}

.contact-hero p{
font-size:16px;
}

footer{
text-align:center;
}

}