*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
scroll-behavior:smooth;
}

.container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px;
}

header{
background:#111;
color:#fff;
position:fixed;
width:100%;
top:0;
z-index:100;
}

.nav-list{
display:flex;
list-style:none;
gap:20px;
}

.nav-list a{
color:white;
text-decoration:none;
}

.menu-toggle{
display:none;
cursor:pointer;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 30px; /* kala dur dur */
    padding: 30px;
}

.card {
    background: #1e293b;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.card:hover {
    transform: translateY(-10px) scale(1.04);
}

.card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
    text-align: center;
}

.card-content h3 {
    margin-bottom: 5px;
    font-size: 20px;
}

.card-content p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 10px;
}

.price {
    display: inline-block;
    background: #22c55e;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
}

/* HERO */
.hero{
height:100vh;
background:url('https://images.unsplash.com/photo-1555244162-803834f70033') center/cover;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:white;
text-align:center;
}

.btn{
background:#ff9800;
padding:10px 20px;
color:white;
text-decoration:none;
margin-top:10px;
}

/* SECTION */
.section{
padding:80px 20px;
text-align:center;
}

.dark{
background:#222;
color:white;
}

/* CARDS */
.cards{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.card{
padding:30px;
background:#eee;
border-radius:10px;
}

/* FORM */
.form{
display:flex;
flex-direction:column;
gap:10px;
max-width:300px;
margin:auto;
}

.form input, .form textarea{
padding:10px;
}

.form button{
background:#ff9800;
color:white;
border:none;
padding:10px;
cursor:pointer;
}

/* WHATSAPP */
.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px;
border-radius:50%;
font-size:20px;
}

/* MOBILE */
@media(max-width:768px){
.menu-toggle{display:block;}

.nav-list{
display:none;
flex-direction:column;
background:#111;
position:absolute;
top:60px;
width:100%;
left:0;
text-align:center;
}

.nav-list.active{
display:flex;
}
}
