  body {
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
    }
    a {
        color: inherit;
        text-decoration: none;  
    }
    a:hover {
        color: #e7d351;
    }
  .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: #e7d351;
        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: #e7d351;
    }

    /* 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: #e7d351;
        }

        .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 (bold gradient hero card) ---------------------- */

.booking-section {
    background: radial-gradient(120% 120% at 50% 0%, #1c2b3d 0%, #0f1b28 55%, #0b141d 100%);
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(231, 211, 81, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(231, 211, 81, 0.06) 0%, transparent 45%);
    pointer-events: none;
}

.booking-section .container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.booking-card {
    position: relative;
    background: linear-gradient(160deg, #1b2a3c 0%, #14212f 55%, #101a25 100%);
    border-radius: 24px;
    padding: 44px 40px;
    border: 1px solid rgba(231, 211, 81, 0.25);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.booking-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e7d351, #cf9f3f, #e7d351, transparent);
}

.booking-card-glow {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(231, 211, 81, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.booking-hero {
    text-align: center;
    margin-bottom: 26px;
    position: relative;
}

.booking-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e7d351, #cf9f3f);
    color: #1b2a3c;
    font-size: 26px;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(231, 211, 81, 0.4);
}

.booking-title {
    text-align: center;
    font-size: 2.15rem;
    color: #ffffff;
    margin: 0 0 10px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.booking-subtitle {
    text-align: center;
    color: #a9b7c6;
    font-size: 1rem;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.5;
}

.booking-trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 4px;
    position: relative;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(231, 211, 81, 0.08);
    color: #f1e9c8;
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 999px;
    border: 1px solid rgba(231, 211, 81, 0.28);
}

.trust-item i {
    color: #e7d351;
}

.booking-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(231, 211, 81, 0.35), transparent);
    margin: 28px 0 8px;
}

.booking-form {
    position: relative;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #dbe4ee;
    font-size: 13.5px;
}

.booking-form label i {
    color: #e7d351;
    font-size: 13px;
    width: 14px;
    text-align: center;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 13px 14px;
    font-size: 15px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    outline: none;
    font-family: inherit;
    background-color: rgba(255, 255, 255, 0.05);
    color: #f4f6f8;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    box-sizing: border-box;
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #7c8aa0;
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-color: #e7d351;
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(231, 211, 81, 0.15);
}

.required {
    color: #f4a259;
}

.captcha {
    display: flex;
    justify-content: center;
    margin: 10px 0 24px;
}

.btn-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #e7d351, #cf9f3f);
    color: #1b2a3c;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 12px 28px rgba(207, 159, 63, 0.3);
}

.btn-book:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(207, 159, 63, 0.4);
}

.btn-book:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.msg {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    min-height: 20px;
    font-size: 14px;
}

.msg-error {
    color: #ff8a8a;
}

.msg-success {
    color: #7be0a8;
}

/* ---------------------- SUCCESS POPUP ---------------------- */

.booking-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    backdrop-filter: blur(2px);
}

.booking-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-popup {
    position: relative;
    background: linear-gradient(160deg, #1b2a3c 0%, #14212f 60%, #101a25 100%);
    border: 1px solid rgba(231, 211, 81, 0.3);
    border-radius: 20px;
    padding: 42px 32px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    transform: scale(0.85);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.booking-popup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e7d351, #cf9f3f, #e7d351, transparent);
}

.booking-popup-overlay.active .booking-popup {
    transform: scale(1);
}

.booking-popup-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #1fa855);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 18px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    animation: booking-pop-in 0.4s ease;
}

@keyframes booking-pop-in {
    0% { transform: scale(0); }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.booking-popup h2 {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 0 0 10px;
}

.booking-popup p {
    color: #a9b7c6;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 6px;
}

.booking-popup-redirect {
    font-size: 12.5px !important;
    color: #e7d351 !important;
    font-style: italic;
}

@media (max-width: 640px) {
    .booking-section {
        padding: 50px 14px 70px;
    }

    .booking-card {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-title {
        font-size: 1.6rem;
    }

    .booking-hero-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .booking-trust-row {
        gap: 8px;
    }

    .trust-item {
        font-size: 12px;
        padding: 7px 12px;
    }

    .booking-popup {
        padding: 32px 24px;
    }
}
