body{
margin:0;
font-family:Arial;
background:#f4f6f8;
}

/* LANGUAGE */
.lang-switch{
position:fixed;
top:20px;
right:20px;
z-index:999;
}

.lang-switch button{
padding:8px 12px;
margin:3px;
border:none;
border-radius:6px;
background:#2c3e50;
color:white;
cursor:pointer;
}

/* HEADER */
.hero{
position:relative;
height:500px;
background:url('hero.jpg') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
top:0;
left:0;
}

.hero-content{
position:relative;
z-index:2;
}

.logo{
width:270px;
margin-bottom:40px;
}

.hero h1{
font-size:40px;
}

/* BUTTONS */
.buttons{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
}
.buttons .btn{
padding:12px 25px;
border-radius:8px;
margin:5px;
text-decoration:none;
color:white;
font-weight:bold;
}

.call{background:#e67e22;}
.whatsapp{background:#25D366;}

/* SECTION */
.section{
padding:60px 20px;
text-align:center;
}

/* CARDS */
.cards{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.card{
background:white;
width:300px;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card img{
width:100%;
height:200px;
object-fit:cover;
}

/* GALLERY */
.gallery{
display:flex;
gap:10px;
justify-content:center;
flex-wrap:wrap;
}

.gallery img{
width:200px;
border-radius:10px;
}

/* REVIEWS */
.reviews{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.review{
background:white;
padding:20px;
border-radius:10px;
width:250px;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

/* OVER */
.over{
background:#ffffff;
padding:80px 20px;
}

.over-text{
max-width:700px;
margin:auto;
font-size:18px;
color:#555;
line-height:1.8;
}

/* CONTACT */
.contact-form{
max-width:400px;
margin:auto;
display:flex;
flex-direction:column;
}

.contact-form input,
.contact-form textarea{
margin:10px 0;
padding:10px;
border-radius:8px;
border:1px solid #ccc;
}

.contact-form button{
padding:12px;
background:#27ae60;
color:white;
border:none;
border-radius:8px;
font-weight:bold;
}

/* FLOAT BUTTON */
.floating-btn{
position:fixed;
right:20px;
bottom:20px;
background:#27ae60;
color:white;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}
.instagram{
    background:#E4405F;
    color:white;
}
