/* ---------- GLOBAL STYLES ---------- */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f6f6f6;
    color: #333;
    transition: background 0.4s, color 0.4s;
}

body.dark {
    background: #121212;
    color: #e1e1e1;
}

/* HEADER & NAV */
header, nav, footer {
    background: #1e90ff;
    color: white;
    padding: 20px;
    text-align: center;
}

header img {
    width: 80px;
}

/* ---------- HERO ---------- */

.hero {
    padding: 80px 20px;
    background: url('https://via.placeholder.com/1400x500') center/cover no-repeat;
    color: white;
    text-align: center;
}

/* ---------- SECTIONS ---------- */

.section {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

/* SERVICES */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-box {
    background: white;
    width: 280px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform .3s;
}

body.dark .service-box {
    background: #1e1e1e;
}

.service-box:hover {
    transform: translateY(-8px);
}

/* ---------- BEFORE/AFTER SLIDER ---------- */

.slider-box {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: auto;
}

.slider-box img {
    width: 100%;
    border-radius: 10px;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    overflow: hidden;
    border-radius: 10px;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    background: #1e90ff;
    height: 100%;
    cursor: ew-resize;
}

/* ---------- BOOKING FORM ---------- */

.booking-box form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.booking-box input,
.booking-box select {
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* ---------- MAP ---------- */
.map-box iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 10px;
}

/* DARK MODE BUTTON */
.toggle-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1e90ff;
    padding: 10px 15px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    z-index: 999;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    padding: 15px;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 999;
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp .8s forwards;
}

@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUp { to { transform: translateY(0); opacity: 1; } }
