body{
margin:0;
font-family:Arial;
background:#faf8f5;
}

/* ================= TOP HEADER ================= */

.top-header{
background:#4b0015;
padding:10px 0;
color:#fff;
}

.socials a{
color:#d4af37;
margin-right:10px;
}

/* ================= BUTTONS ================= */

.quote-btn,
.list-btn{
background:#d4af37;
padding:8px 14px;
color:#4b0015;
text-decoration:none;
border-radius:30px;
font-weight:700;
}

/* ================= CITY DROPDOWN ================= */

.city-dropdown{
padding:8px;
border-radius:8px;
border:1px solid #ddd;
}

/* ================= NAV ================= */

.main-nav{
background:#fff;
box-shadow:0 2px 15px rgba(0,0,0,.1);
}

.nav-link{
color:#4b0015;
font-weight:700;
}

/* ================= DROPDOWN ================= */

.dropdown{
position:relative;
}

.submenu{
display:none;
position:absolute;
top:100%;
left:0;
background:#fff;
padding:10px;
list-style:none;
width:220px;
box-shadow:0 5px 15px rgba(0,0,0,.2);
z-index:9999;
}

.dropdown:hover .submenu{
display:block;
}

.submenu a{
text-decoration:none;
color:#4b0015;
display:block;
padding:10px;
}

/* ================= HERO ================= */

.hero{
position:relative;
overflow:hidden;
}

.heroSwiper{
position:relative;
z-index:1;
}

.hero-img{
width:100%;
height:650px;
object-fit:cover;
display:block;
}

/* ================= FIXED FORM (SAFE CENTER VERSION) ================= */

.hero-fixed-form{

/* SAFE: no absolute (prevents blank issue) */
position:relative;

width:90%;
max-width:900px;
margin:-80px auto 20px auto;

background:rgba(255,255,255,0.95);
padding:15px;

border-radius:14px;

z-index:10;
box-shadow:0 12px 35px rgba(0,0,0,0.25);
backdrop-filter:blur(6px);
}

/* input small */
.hero-fixed-form .form-control{
padding:8px 10px;
font-size:14px;
}

/* button small */
.hero-fixed-form .search-btn{
padding:9px;
font-size:14px;
border-radius:8px;
}

/* ================= NOTICE ================= */

.notice-wrap{
background:#d4af37;
padding:12px;
font-weight:700;
color:#4b0015;
}

/* ================= CATEGORY ================= */

.category-section{
padding:70px 0;
}

.category-card{
display:flex;
align-items:center;
gap:20px;
background:#fff;
padding:18px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

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

.cat-img-wrap{
width:220px;
height:160px;
overflow:hidden;
border-radius:40px 0 40px 0;
flex-shrink:0;
}

.cat-img-wrap img{
width:100%;
height:100%;
object-fit:cover;
}

/* ================= PALACE ================= */

.palace-section{
padding:60px 0;
background:#fff8ef;
}

.category-heading{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;
}

.category-heading h2{
color:#4b0015;
font-weight:800;
}

.category-heading span{
background:#d4af37;
padding:10px 20px;
border-radius:30px;
font-weight:700;
}

/* ================= PALACE CARD ================= */

.palace-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

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

.palace-link{
text-decoration:none;
display:block;
}

.palace-img{
width:100%;
height:220px;
overflow:hidden;
}

.palace-img img{
width:100%;
height:100%;
object-fit:cover;
transition:0.5s;
}

.palace-card:hover .palace-img img{
transform:scale(1.05);
}

.palace-body{
padding:18px;
}

.palace-body h4{
color:#4b0015;
font-weight:700;
}

/* ================= FOOTER ================= */

.site-footer{
background:#4b0015;
color:#fff;
padding:70px 0;
margin-top:60px;
}

.footer-links{
padding:0;
list-style:none;
}

.footer-links a{
color:#fff;
text-decoration:none;
}

.footer-social a{
display:inline-flex;
width:45px;
height:45px;
align-items:center;
justify-content:center;
border-radius:50%;
background:#d4af37;
color:#4b0015;
margin-right:10px;
transition:0.3s;
}

.footer-social a:hover{
transform:translateY(-3px);
background:#fff;
}

/* ================= FLOAT BUTTONS ================= */

.whatsapp-btn{
position:fixed;
right:20px;
bottom:85px;
width:60px;
height:60px;
border-radius:50%;
background:#25D366;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
z-index:9999;
}

.scroll-top{
position:fixed;
right:20px;
bottom:20px;
width:55px;
height:55px;
border-radius:50%;
background:#d4af37;
color:#4b0015;
font-size:24px;
display:none;
z-index:9999;
}

/* ================= SWIPER FIX ================= */

.swiper-slide{
height:auto !important;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

.hero-img{
height:450px;
}

.category-card{
flex-direction:column;
}

.cat-img-wrap{
width:100%;
height:220px;
}

.hero-fixed-form{
width:95%;
margin:-60px auto 20px auto;
}

}