body{
margin:0;
font-family:'Segoe UI',sans-serif;
background:#0f0f0f;
color:white;
}

section{
padding:60px 8%;
}

h2{
text-align:center;
margin-bottom:40px;
font-size:28px;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:#000;
position:sticky;
top:0;
z-index:1000;
}

.logo{
color:#FFD700;
font-size:24px;
font-weight:bold;
}

nav a{
color:white;
margin-left:25px;
text-decoration:none;
}

.nav-btn{
background:#FFD700;
color:black;
padding:8px 16px;
border-radius:6px;
}

.hero{
height:500px;
background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
url('https://images.pexels.com/photos/3807802/pexels-photo-3807802.jpeg');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.hero h1{
font-size:42px;
margin-bottom:15px;
}

.btn{
background:#FFD700;
padding:12px 25px;
color:black;
text-decoration:none;
border-radius:6px;
font-weight:bold;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card,
.price-box{
background:#1c1c1c;
padding:25px;
border-radius:12px;
text-align:center;
transition:.3s;
}

.card:hover,
.price-box:hover{
transform:translateY(-5px);
background:#222;
}

.dark-box{
background:#000;
border:1px solid #333;
padding:25px;
border-radius:12px;
text-align:center;
}

.testimonial{
background:#111;
text-align:center;
}

footer{
background:#000;
text-align:center;
padding:25px;
margin-top:40px;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:12px 18px;
border-radius:50px;
text-decoration:none;
.form-wrapper{
display:flex;
justify-content:center;
align-items:center;
height:100vh;
background:#0f0f0f;
}

.form-card{
background:#1c1c1c;
padding:40px;
border-radius:15px;
width:400px;
box-shadow:0 8px 25px rgba(0,0,0,0.6);
text-align:center;
}

.form-card h2{
margin-bottom:25px;
}

form input,
form select{
width:100%;
padding:12px;
margin-bottom:15px;
border:none;
border-radius:6px;
background:#2a2a2a;
color:white;
font-size:14px;
}

form input:focus,
form select:focus{
outline:none;
border:1px solid #FFD700;
}

.full-btn{
width:100%;
}
}