body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f0f8ff;
}

/* HEADER */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #0078d4;
}

.brand {
    color: white;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
}

.nav-menu a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

/* HERO */
.hero-section {
    text-align: center;
    padding: 40px 20px;
}

/* SLIDER */
.slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 350px;
    object-fit: contain;
    opacity: 0;
    transition: opacity 2.4s ease-in-out; /* faster fade */
}

.slide.active {
    opacity: 1;
}

/* FEATURES */
.features {
    display: flex;
    justify-content: space-around;
    padding: 40px;
}

.feature {
    width: 30%;
}

/* BOOKING */
.booking-section {
    padding: 40px;
    text-align: center;
}

.booking-form input,
.booking-form button {
    display: block;
    margin: 10px auto;
    padding: 10px;
    width: 300px;
}

/* FOOTER */
.site-footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
}

.whatsapp-float:hover {
    background: #1ebe5d;
}

