body{
font-family:Arial;
margin:0;
background:#f5f5f5;
}


/* HEADER */

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 20px;
background:white;
box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

.logo-section{
display:flex;
align-items:center;
}

.logo{
width:45px;
margin-right:10px;
}

.company{
font-size:22px;
color:#333;
font-weight:bold;
}

.home-btn{
background:#ff9800;
border:none;
padding:8px 15px;
border-radius:6px;
cursor:pointer;
color:white;
}


/* LOCATION */

.location{
text-align:center;
margin-top:5px;
font-size:18px;
color:#666;
}


/* SEARCH */

.search-box{
text-align:center;
margin-top:10px;
}

.search{
width:80%;
padding:12px;
border-radius:25px;
border:1px solid #ccc;
}


/* SLIDER */

.slider{
width:90%;
height:320px;
margin:20px auto;
overflow:hidden;
border-radius:15px;
position:relative;
}

.slide{
width:100%;
height:320px;
object-fit:cover;
display:none;
border-radius:15px;
}

.active{
display:block;
}


/* TITLES */

.title{
padding:20px;
font-size:20px;
font-weight:bold;
}


/* SERVICES GRID */

.services{
display:flex;
flex-wrap:wrap;
justify-content:center;
}


/* SERVICE CARD */
.card{
width:120px;
background:white;
margin:10px;
padding:10px;
border-radius:15px;
text-align:center;
cursor:pointer;
box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

.card img{
width:100%;
height:80px;
object-fit:cover;
border-radius:10px;
}

.card p{
margin-top:5px;
font-size:14px;
}
.service-banner{
width:100%;
height:400px;
border-radius:15px;
position:relative;
z-index:1;
overflow:hidden;
}

.service-slide{
position:absolute;
width:100%;
height:100%;
border-radius:15px;
object-fit:cover;
display:none;
}

.service-slide.active{
display:block;
}

.bottom-sheet{

position:fixed;
bottom:-100%;
left:0;
width:100%;
height:60%;
background:white;
border-radius:20px 20px 0 0;
box-shadow:0 -3px 10px rgba(0,0,0,0.2);
transition:0.3s;

}

.sheet-content{

padding:20px;
text-align:center;

}

.bottom-sheet img{

width:120px;
border-radius:10px;

}

.download-btn{

background:#ff9800;
border:none;
padding:12px 20px;
color:white;
border-radius:8px;
margin-top:15px;

}

.close{

position:absolute;
right:20px;
top:10px;
font-size:22px;
cursor:pointer;

}
.price{
margin:8px 0;
}

.actual{
text-decoration:line-through;
color:#888;
margin-right:8px;
}

.offer{
color:#ff5722;
font-weight:bold;
font-size:16px;
}
/* INTERIOR BANNER */

.interior-banner img{

width:100%;
height:420px;
border-radius:15px;
object-fit:cover;
display:none;

}

.interior-banner img.active{
display:block;
}


/* INTERIOR GALLERY */

.interior-gallery{

display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
padding:20px;

}

.interior-gallery img{

width:360px;
height:240px;
border-radius:12px;
object-fit:cover;
box-shadow:0 3px 10px rgba(0,0,0,0.2);

}


/* BUTTON */

.download-btn{

background:#ff9800;
border:none;
padding:12px 25px;
color:white;
border-radius:8px;
font-size:16px;
cursor:pointer;

}
.menu{
position:relative;
display:inline-block;
}

.menu-btn{
background:#ff6b2c;
color:white;
padding:10px 20px;
border:none;
border-radius:6px;
cursor:pointer;
font-size:16px;
}

.menu-content{
display:none;
position:absolute;
right:0;
background:#fff;
min-width:180px;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
border-radius:6px;
z-index:9999;
}

.menu-content a{
display:block;
padding:12px;
text-decoration:none;
color:#333;
}

.menu-content a:hover{
background:#f2f2f2;
}

.menu:hover .menu-content{
display:block;
}
img{
max-width:100%;
height:auto;
}