/* =========================
   RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f8f8f8;
color:#222;
line-height:1.6;
padding-bottom:70px; /* Sticky buttons ke liye */
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* =========================
   HERO SECTION
========================= */
.hero{
background:
linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.70)),
url('../images/back.jpeg');
background-size:cover;
background-position:center;
background-repeat:no-repeat;
color:#fff;
text-align:center;
padding:90px 20px;
}

.hero h1{
font-size:42px;
font-weight:700;
line-height:1.2;
margin-bottom:15px;
}

.hero p{
font-size:20px;
margin-bottom:20px;
}

.features{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:12px;
margin:25px 0;
}

.features span{
background:rgba(255,255,255,0.15);
padding:10px 16px;
border-radius:30px;
font-size:14px;
}

.phone{
font-size:24px;
font-weight:bold;
margin-top:15px;
}

/* =========================
   BUTTONS
========================= */

.btn-group{
margin-top:20px;
}

.btn,
.service-btn{
display:inline-block;
padding:14px 28px;
margin:8px;
border-radius:6px;
font-weight:600;
transition:all .3s ease;
}

.call-btn{
background:#ff5722;
color:#fff;
}

.whatsapp-btn{
background:#25D366;
color:#fff;
}

.service-btn{
background:#ff5722;
color:#fff;
}

.btn:hover,
.service-btn:hover{
transform:translateY(-2px);
opacity:.95;
}

/* =========================
   SECTIONS
========================= */

section{
padding:70px 0;
}

.section-title{
font-size:34px;
text-align:center;
margin-bottom:40px;
font-weight:700;
}

/* =========================
   CARDS
========================= */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.card{
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 4px 12px rgba(0,0,0,.08);
text-align:center;
transition:.3s;
}

.card:hover{
transform:translateY(-5px);
}

.card h3{
margin-bottom:10px;
}

/* =========================
   SERVICES
========================= */

.service-card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:10px;
margin-bottom:15px;
}

/* =========================
   FORM
========================= */

.form-section{
background:#fff;
}

form{
max-width:600px;
margin:auto;
}

form input,
form select,
form textarea{
width:100%;
padding:15px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:6px;
font-size:16px;
}

form input:focus,
form select:focus,
form textarea:focus{
outline:none;
border-color:#ff5722;
}

form button{
width:100%;
padding:15px;
background:#ff5722;
color:#fff;
border:none;
font-size:18px;
border-radius:6px;
cursor:pointer;
transition:.3s;
}

form button:hover{
opacity:.95;
}

/* =========================
   SERVICE AREAS
========================= */

.area-list{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:15px;
}

.area-list div{
background:#fff;
padding:15px;
border-radius:8px;
text-align:center;
box-shadow:0 2px 8px rgba(0,0,0,.05);
}

/* =========================
   FAQ
========================= */

.faq{
background:#fff;
padding:20px;
margin-bottom:15px;
border-radius:10px;
box-shadow:0 2px 8px rgba(0,0,0,.05);
}

/* =========================
   FOOTER
========================= */

footer{
background:#1f2937;
color:#fff;
padding:40px 20px;
text-align:center;
}

footer h3{
margin-bottom:10px;
}

footer a{
color:#fff;
margin:0 10px;
}

.disclaimer{
margin-top:20px;
font-size:14px;
color:#d1d5db;
line-height:1.8;
max-width:900px;
margin-left:auto;
margin-right:auto;
}

/* =========================
   STICKY BUTTONS
========================= */

.sticky-buttons{
position:fixed;
bottom:0;
left:0;
width:100%;
display:flex;
z-index:9999;
box-shadow:0 -2px 10px rgba(0,0,0,.15);
}

.sticky-buttons a{
flex:1;
padding:16px;
text-align:center;
color:#fff;
font-weight:700;
font-size:16px;
}

.sticky-call{
background:#ff5722;
}

.sticky-whatsapp{
background:#25D366;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.hero{
padding:70px 15px;
}

.hero h1{
font-size:30px;
}

.hero p{
font-size:16px;
}

.section-title{
font-size:26px;
}

.phone{
font-size:20px;
}

.features{
gap:10px;
}

.features span{
font-size:13px;
padding:8px 12px;
}

.btn,
.service-btn{
width:100%;
margin:6px 0;
}

.sticky-buttons a{
font-size:14px;
padding:14px;
}

}