@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

*{margin:0;padding:0;box-sizing:border-box}

body{
font-family:'Inter',sans-serif;
background:#0a0a0a;
color:#fff;
overflow-x:hidden;
}

header{
position:fixed;width:100%;top:0;
padding:15px 40px;
display:flex;justify-content:space-between;
align-items:center;
background:rgba(0,0,0,0.7);
backdrop-filter:blur(10px);
z-index:1000;
}

header img{height:50px}

nav a{
color:#ccc;
margin-left:25px;
text-decoration:none;
font-size:14px;
}
nav a:hover{color:#ff6a00}

.hero{
height:100vh;
display:flex;
align-items:center;
padding:0 40px;
background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.9)),
url('https://images.unsplash.com/photo-1581091215367-59ab6b4b0f1c');
background-size:cover;
}

.hero h1{
font-size:48px;
color:#ff6a00;
}

.section{
padding:120px 40px;
max-width:1200px;
margin:auto;
text-align:center;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#141414;
padding:30px;
border-radius:10px;
}

.card img{
width:100%;
border-radius:8px;
margin-bottom:10px;
}

.gallery img{
width:300px;
height:200px;
object-fit:cover;
border-radius:8px;
}

.btn{
background:#ff6a00;
padding:12px 20px;
color:#fff;
text-decoration:none;
border-radius:5px;
}

input,textarea{
width:100%;
padding:12px;
margin:10px 0;
border:none;
border-radius:5px;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25d366;
padding:15px;
border-radius:50%;
}

footer{
text-align:center;
padding:20px;
color:#aaa;
}