/* ===== GLOBAL ===== */

body{
margin:0;
font-family:'Inter',sans-serif;
background:linear-gradient(135deg,#f5f7ff,#eef3ff);
color:#111;
}

.section{
max-width:1100px;
margin:60px auto;
padding:0 20px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}


/* ===== HERO ===== */

.hero{
display:flex;
flex-wrap:wrap;
justify-content:space-between;
align-items:center;
padding:80px 8%;
background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
color:#fff;
}

.hero img{
width:320px;
border-radius:20px;
background:#fff;
padding:15px;
box-shadow:0 20px 40px rgba(0,0,0,0.3);
transition:0.4s;
}

.hero img:hover{
transform:scale(1.05);
}

.hero h1{
font-size:38px;
margin-bottom:10px;
}

.hero h2{
font-size:20px;
font-weight:400;
margin-bottom:15px;
}


/* ===== BUTTONS ===== */

.btn{
padding:12px 20px;
border-radius:30px;
text-decoration:none;
margin:5px;
font-weight:600;
display:inline-block;
transition:0.3s;
}

.call{
background:#fff;
color:#0077FF;
}

.wa{
background:#25D366;
color:#fff;
}

.btn:hover{
transform:scale(1.08);
}


/* ===== CARD ===== */

.card{
background:#fff;
padding:25px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-6px);
}


/* ===== PRODUCT ===== */

.product{
text-align:center;
padding:25px;
border-radius:18px;
background:linear-gradient(145deg,#ffffff,#eef3ff);
transition:0.4s;
}

.product img{
height:180px;
margin-bottom:15px;
transition:0.4s;
filter:drop-shadow(0 20px 30px rgba(0,0,0,0.2));
cursor:pointer;
}

.product:hover{
transform:translateY(-10px);
box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

.product:hover img{
transform:scale(1.1);
}


/* ===== FORM ===== */

.form-box{
background:linear-gradient(135deg,#0077FF,#00c6ff);
color:#fff;
padding:25px;
border-radius:18px;
}

.form-box input{
width:100%;
padding:12px;
margin:8px 0;
border:none;
border-radius:8px;
}

.form-box button{
background:#25D366;
color:#fff;
border:none;
padding:12px;
width:100%;
border-radius:8px;
font-weight:600;
cursor:pointer;
}


/* ===== REVIEWS ===== */

.review{
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.review:hover{
transform:scale(1.05);
}


/* ===== STICKY BUTTON ===== */

.sticky{
position:fixed;
bottom:0;
left:0;
width:100%;
display:flex;
z-index:999;
}

.sticky a{
flex:1;
text-align:center;
padding:15px;
color:#fff;
text-decoration:none;
font-weight:600;
}

.call-btn{
background:#0077FF;
}

.wa-btn{
background:#25D366;
}


/* ===== IMAGE POPUP ===== */

.img-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.img-popup img{
max-width:90%;
max-height:90%;
border-radius:10px;
box-shadow:0 0 30px rgba(255,255,255,0.2);
}

.img-popup span{
position:absolute;
top:20px;
right:30px;
color:#fff;
font-size:30px;
cursor:pointer;
}


/* ===== POPUP FORM ===== */

.popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.popup-box{
background:#fff;
padding:25px;
border-radius:15px;
width:90%;
max-width:350px;
text-align:center;
position:relative;
}

.popup-box input{
width:100%;
padding:12px;
margin:8px 0;
border:1px solid #ddd;
border-radius:8px;
}

.popup-box button{
background:#25D366;
color:#fff;
border:none;
padding:12px;
width:100%;
border-radius:8px;
font-weight:600;
cursor:pointer;
}

.close{
position:absolute;
top:10px;
right:15px;
cursor:pointer;
font-size:18px;
}


/* ===== MOBILE ===== */

@media(max-width:768px){

.hero{
flex-direction:column;
text-align:center;
padding:40px 20px;
}

.hero img{
width:100%;
max-width:250px;
margin-top:20px;
}

.hero h1{
font-size:26px;
}

.hero h2{
font-size:16px;
}

.section{
margin:30px auto;
}

}