
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
background:#f5f7fa;
color:#222;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.topbar{
background:#fff;
padding:18px 0;
box-shadow:0 2px 10px rgba(0,0,0,.05);
position:sticky;
top:0;
z-index:999;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:32px;
font-weight:bold;
color:#ff6600;
}

nav a{
text-decoration:none;
margin:0 10px;
color:#222;
font-weight:600;
}

.phone{
font-weight:bold;
color:#ff6600;
}

.hero{
height:520px;
background:url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1600&auto=format&fit=crop') center/cover;
}

.overlay{
background:rgba(0,0,0,.45);
height:100%;
}

.hero-content{
padding-top:120px;
color:#fff;
}

.hero h1{
font-size:64px;
line-height:1.1;
}

.hero span{
color:#ff7a00;
}

.hero p{
margin-top:20px;
font-size:20px;
}

.search-box{
margin-top:35px;
display:flex;
background:#fff;
padding:10px;
border-radius:12px;
max-width:700px;
}

.search-box input{
flex:1;
padding:16px;
border:none;
outline:none;
font-size:16px;
}

.search-box button{
background:#ff7a00;
color:#fff;
border:none;
padding:16px 30px;
border-radius:10px;
cursor:pointer;
font-weight:bold;
}

.features{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
padding:40px 0;
}

.features div{
background:#fff;
padding:25px;
border-radius:12px;
text-align:center;
font-weight:600;
box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.section{
padding:30px 0;
}

.section-head{
margin-bottom:25px;
}

.section h2{
font-size:32px;
}

.hotel-grid,
.tour-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.card{
background:#fff;
border-radius:16px;
overflow:hidden;
box-shadow:0 4px 20px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-5px);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.card-content{
padding:18px;
}

.card h3{
font-size:22px;
margin-bottom:10px;
}

.card p{
color:#666;
margin-bottom:8px;
}

.price{
font-size:28px;
font-weight:bold;
color:#ff6600;
margin:15px 0;
}

.card button{
width:100%;
padding:14px;
background:#006ce4;
color:#fff;
border:none;
border-radius:10px;
font-weight:bold;
cursor:pointer;
}

.newsletter{
background:#ff7a00;
padding:40px 0;
margin-top:50px;
}

.newsletter-wrap{
display:flex;
justify-content:space-between;
align-items:center;
color:#fff;
}

.newsletter input{
padding:14px;
width:280px;
border:none;
border-radius:8px;
}

.newsletter button{
padding:14px 22px;
background:#111;
color:#fff;
border:none;
border-radius:8px;
margin-left:10px;
}

footer{
background:#111827;
color:#fff;
padding:60px 0;
margin-top:0;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

footer h3,
footer h4{
margin-bottom:15px;
}

footer p{
margin-bottom:10px;
color:#d1d5db;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:28px;
text-decoration:none;
color:#fff;
box-shadow:0 5px 15px rgba(0,0,0,.2);
}

@media(max-width:768px){

.hero h1{
font-size:42px;
}

.features{
grid-template-columns:1fr 1fr;
}

.footer-grid{
grid-template-columns:1fr;
}

.newsletter-wrap{
flex-direction:column;
gap:20px;
text-align:center;
}

.search-box{
flex-direction:column;
gap:10px;
}

.search-box button{
width:100%;
}

}
