  body {
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
    }
    a {
        color: inherit;
        text-decoration: none;  
    }
    a:hover {
        color: #e76f51;
    }
  .topbar {
        background-color: #2c3e50;
        color: white;
        padding: 0px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        @media (max-width: 600px) {
            display: none;
        }
    }

    .contact-info {
        display: flex;
        gap: 20px;        .container {
            padding: 0 15px;
        }
    }
    .contact-info span {
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .material-icons {
        font-size: 16px;
    }

    .nav-links {
        display: flex;
        gap: 20px;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        padding: 5px 10px;
        border-radius: 3px;
        transition: background-color 0.3s;
    }

    .nav-links a:hover {
        color: #e76f51;
        background-color: #34495e;
    }

    @media (max-width: 768px) {
        .contact-info {
            flex-direction: column;
            gap: 5px;
            text-align: center;
        }
    }

    /* Simple Header Styles */
    .main-header {
        background-color: #fff;
        border-bottom: 2px solid #ddd;
        padding: 15px 0;
    }

    .header-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo p {
        margin: 0;
        font-size: 1.3rem;
        color: #333;
        font-weight: 600;
    }

    /* Simple Navigation */
    .nav-menu {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 25px;
    }

    .nav-menu a {
        color: #333;
        text-decoration: none;
        font-size: 1rem;
        padding: 8px 12px;
        transition: color 0.3s;
    }

    .nav-menu a:hover {
        color: #e76f51;
    }

    /* Simple Hamburger Menu */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 6px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 4px;
        position: relative;
        z-index: 9999;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        background-color: #333;
        margin: 3px 0;
        transition: 0.3s;
    }

    .hamburger.active {
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .header-container {
            padding: 0 10px;
        }
    .main-header{
        padding: 5px 0;
    }

        .hamburger {
            display: flex;
            position: relative;
            z-index: 10000;
        }

        .nav-menu {
            position: fixed;
            left: -100%;
            top: 0;
            flex-direction: column;
            background-color: #fff;
            width: 100%;
            height: 100vh;
            text-align: center;
            transition: 0.3s;
            padding-top: 80px;
            gap: 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 9998;
        }

        .nav-menu.active {
            left: 0;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
        }

        .close-menu {
            background: none;
            border: none;
            font-size: 2rem;
            color: #333;
            cursor: pointer;
            padding: 5px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .close-menu:hover {
            background-color: #f0f0f0;
            color: #e76f51;
        }

        .nav-menu li {
            margin: 15px 0;
        }

        .nav-menu a {
            font-size: 1.1rem;
            display: block;
            padding: 15px;
        }

        .logo h1 {
            font-size: 1.5rem;
        }
    }

     /* Footer Styles */
    .footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 50px 0 20px;
        margin-top: 50px;
    }

    .footer-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-column h3 {
        color: #fff;
        font-size: 1.2rem;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .footer-column p {
        line-height: 1.6;
        margin-bottom: 20px;
        color: #bdc3c7;
        font-size: 0.9rem;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
        line-height: 1.4;
    }

    .footer-links a:hover {
        color: #3498db;
    }

    .social-icons {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: #34495e;
        border-radius: 50%;
        color: #ecf0f1;
        transition: all 0.3s ease;
    }

    .social-icons a:hover {
        background-color: #3498db;
        transform: translateY(-2px);
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        color: #bdc3c7;
    }

    .contact-item i {
        margin-right: 10px;
        color: #3498db;
        font-size: 1.2rem;
    }

    .contact-item span {
        font-size: 0.9rem;
    }

    /* Footer Responsive Design */
    @media (max-width: 992px) {
        .footer-content {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .footer {
            padding: 40px 0 20px;
        }

        .footer-content {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .footer-column h3 {
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .footer-container {
            padding: 0 15px;
        }
    }

    @media (max-width: 480px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .footer-column {
            text-align: center;
        }

        .social-icons {
            justify-content: center;
        }

        .contact-item {
            justify-content: center;
        }
    }

      /* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25d366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
    z-index: 9999 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.whatsapp-float:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
    text-decoration: none !important;
}

.whatsapp-float i {
    font-size: 28px !important;
    color: white !important;
    line-height: 1 !important;
    font-family: 'Font Awesome 6 Brands' !important;
}

/* Tooltip styles */
.whatsapp-float .tooltip {
    position: absolute !important;
    right: 70px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: #333 !important;
    color: white !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    font-family: 'Poppins', sans-serif !important;
}

.whatsapp-float .tooltip::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 100% !important;
    margin-top: -5px !important;
    border: 5px solid transparent !important;
    border-left-color: #333 !important;
}

.whatsapp-float:hover .tooltip {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure floating buttons container doesn't interfere */
.floating-buttons {
    position: relative !important;
    z-index: 9999 !important;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        bottom: 15px !important;
        right: 15px !important;
    }

    .whatsapp-float i {
        font-size: 24px !important;
    }

    .whatsapp-float .tooltip {
        font-size: 12px !important;
        padding: 6px 10px !important;
        right: 60px !important;
    }
}
/* ---------------------- BOOKING FORM SECTION ---------------------- */

.booking-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.booking-title {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.booking-form {
    background-color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2c3e50;
    font-size: 15px;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-color: #e76f51;
}

.required {
    color: #e74c3c;
}

.captcha {
    text-align: center;
    margin-top: 25px;
}

.btn-book {
    display: block;
    width: 100%;
    background-color: #e76f51;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-book:hover {
    background-color: #cf6043;
}

.msg {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .booking-form {
        padding: 25px 20px;
    }

    .booking-title {
        font-size: 1.6rem;
    }
}
