/* Mobile layout protection only. Keep the site's animations and scrolling enabled. */
    @media (max-width: 767px) {
        .bravo_wrap { overflow-x: hidden; }
    }

    body{
                                        font-family:Poppins, sans-serif;
                                                color:#0b6b3a;
                                                font-size:16px;
                                                line-height:1.8;
                                                font-weight:700;
                            }
            /*----------main color------------*/
        .text-blue-1,
        .header .header-menu .menu .subnav > li > a:hover,
        .bravo_wrap .footer .menu-footer .menu__nav li .subnav > li > a:hover,
        .desktopMenu .menu a:hover,
        .desktopMenu .menu .subnav__backBtn a,
        .hotel_rooms_form .nav-enquiry .enquiry-item.active span,
        .bravo_single_book .nav-enquiry .enquiry-item.active span,
        .pricing-table .title{
            color: #d4af37;
        }

        .tabs.-underline .tabs__controls .tabs__button:hover,
        .tabs.-pills-2 .tabs__controls .tabs__button:hover,
        .tabs.-bookmark-2 .tabs__button:hover,
        .sidebar.-dashboard .sidebar__button.-is-active,
        .tabs.-underline-2 .tabs__controls .tabs__button.is-tab-el-active,
        .accordion.-db-sidebar .accordion__item.is-active .sidebar__button,
        .tabs.-underline-2 .tabs__controls .tabs__button:hover{
            color: #d4af37 !important;
        }

        .pagination.-dots .pagination__item.is-active,
        .button.-outline-blue-1:hover,
        .form-checkbox:hover input ~ .form-checkbox__mark,
        .pricing-tabs .tab-btns:before,
        .tabs.-underline-2 .tabs__controls .tabs__button::after{
            background-color: #d4af37;
        }

        .bg-blue-1,
        .button.-blue-1:hover,
        .tabs.-pills-2 .tabs__controls .tabs__button.is-tab-el-active,
        .tourTypeCard.-type-1:hover,
        .noUi-connect,
        .accordion.-map .accordion__item.is-active .accordion__icon,
        .form-checkbox input:checked ~ .form-checkbox__mark{
            background-color: #d4af37 !important;
        }

        .button.-blue-1:hover,
        .border-blue-1,
        .button.-outline-blue-1,
        .noUi-handle,
        .hotel_rooms_form .nav-enquiry .enquiry-item.active span,
        .bravo_single_book .nav-enquiry .enquiry-item.active span,
        .form-checkbox input:checked ~ .form-checkbox__mark,
        .pricing-table .inner-box:hover, .pricing-table.tagged .inner-box{
            border-color: #d4af37;
        }
        /*-----------end main color------------*/
    
            h1{
            font-family: &quot;Poppins&quot;, sans-serif, sans-serif
        }
                h2{
            font-family: &quot;Poppins&quot;, sans-serif, sans-serif
        }
                h3{
            font-family: &quot;Poppins&quot;, sans-serif, sans-serif
        }
    
    /* ================================
   MASTHEAD / SLIDER FIX
================================ */
.masthead-slider {
    position: relative; /* anchor for absolute elements */
}

/* ================================
   FIXED (NON-SLIDING) COUNTDOWN
================================ */
.event-countdown-fixed {
    position: absolute;           /* floats over banner */
    top: 70%;                     /* visually below title */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;                  /* above banner & slides */
    pointer-events: none;         /* allow slider clicks */
    text-align: center;
    width: auto;
}

/* ================================
   COUNTDOWN STYLING
================================ */
.event-countdown-fixed .timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Time boxes */
.event-countdown-fixed .timer div {
    background: #28a745;          /* green */
    padding: 18px 22px;
    border-radius: 10px;
    min-width: 90px;
    text-align: center;
    color: #ffffff;
}

/* Numbers */
.event-countdown-fixed .timer div span {
    display: block;
    font-size: 3rem;              /* big numbers */
    font-weight: bold;
    color: gold;                  /* gold numbers */
    line-height: 1;
    padding-bottom: 6px;
    border-bottom: 3px solid gold; /* underline */
}

/* Labels */
.event-countdown-fixed .timer div {
    font-size: 0.9rem;
}

/* ================================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
    .event-countdown-fixed {
        top: 80%;
    }

    .event-countdown-fixed .timer {
        gap: 10px;
    }

    .event-countdown-fixed .timer div {
        min-width: 70px;
        padding: 14px 16px;
    }

    .event-countdown-fixed .timer div span {
        font-size: 2.2rem;
    }
}





/* ============================================================
   GLOBAL PREMIUM BEE MASCOT — CSS
   Safe to paste into Custom CSS admin field
============================================================ */

/* ── Bee Wrapper ─────────────────────────────────────────── */
#golden-bee-mascot {
    position: fixed;
    width: 60px;
    height: 60px;
    pointer-events: none; /* Never blocks clicks on page */
    z-index: 99999;
    transform-style: preserve-3d;
    will-change: transform;
    transition: none; /* JS handles all movement */
}

/* ── Bee Body Container ──────────────────────────────────── */
#golden-bee-mascot .bee-body-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: beeBob 2.2s ease-in-out infinite;
}

/* Gentle bob up/down to simulate hovering */
@keyframes beeBob {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50%       { transform: translateY(-6px) rotate(2deg); }
}

/* ── Main Bee SVG ────────────────────────────────────────── */
#golden-bee-mascot .bee-svg {
    width: 60px;
    height: 60px;
    filter:
        drop-shadow(0 4px 6px rgba(0,0,0,0.25))
        drop-shadow(0 0 12px rgba(255,215,0,0.35));
    transition: filter 0.3s ease;
}

/* Glow intensifies on happy state */
#golden-bee-mascot.bee-happy .bee-svg {
    filter:
        drop-shadow(0 4px 8px rgba(0,0,0,0.3))
        drop-shadow(0 0 22px rgba(255,215,0,0.75));
}

/* ── Wings ───────────────────────────────────────────────── */
#golden-bee-mascot .wing-left,
#golden-bee-mascot .wing-right {
    transform-origin: center bottom;
    animation: wingFlap 0.18s ease-in-out infinite alternate;
}

#golden-bee-mascot .wing-right {
    animation-delay: 0.09s;
}

@keyframes wingFlap {
    from { transform: scaleY(1)   rotateX(0deg); opacity: 0.75; }
    to   { transform: scaleY(0.6) rotateX(20deg); opacity: 0.55; }
}

/* Wings speed up during happy burst */
#golden-bee-mascot.bee-happy .wing-left,
#golden-bee-mascot.bee-happy .wing-right {
    animation-duration: 0.09s;
}

/* ── Ground Shadow ───────────────────────────────────────── */
#golden-bee-mascot .bee-shadow {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 8px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.18) 0%, transparent 70%);
    border-radius: 50%;
    animation: shadowPulse 2.2s ease-in-out infinite;
}

@keyframes shadowPulse {
    0%, 100% { transform: translateX(-50%) scaleX(1);   opacity: 0.4; }
    50%       { transform: translateX(-50%) scaleX(0.7); opacity: 0.2; }
}

/* ── Golden Sparkle Particles ────────────────────────────── */
.bee-sparkle {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    background: radial-gradient(circle, #fff8c0 0%, #ffd700 40%, #b8860b 100%);
    box-shadow: 0 0 6px 2px rgba(255,215,0,0.6);
    animation: sparkleOut 0.9s ease-out forwards;
}

@keyframes sparkleOut {
    0%   { transform: translate(0, 0) scale(1);   opacity: 1; }
    100% { transform: var(--tx, 30px) var(--ty, -30px) scale(0.1); opacity: 0; }
}

/* Star-shaped sparkle variant */
.bee-sparkle.star {
    width: 6px;
    height: 6px;
    background: none;
    box-shadow: none;
    opacity: 1;
    animation: starOut 0.8s ease-out forwards;
}

.bee-sparkle.star::before,
.bee-sparkle.star::after {
    content: "✦";
    position: absolute;
    font-size: 14px;
    color: #ffd700;
    text-shadow: 0 0 6px rgba(255,215,0,0.9);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes starOut {
    0%   { transform: translate(0, 0) scale(1) rotate(0deg);   opacity: 1; }
    100% { transform: var(--tx, 0px) var(--ty, -40px) scale(0) rotate(180deg); opacity: 0; }
}

/* ── Happy Bounce ────────────────────────────────────────── */
#golden-bee-mascot.bee-happy .bee-body-wrap {
    animation: beeHappyBounce 0.5s ease-in-out;
}

@keyframes beeHappyBounce {
    0%  { transform: scale(1)    rotate(0deg); }
    25% { transform: scale(1.25) rotate(-15deg); }
    50% { transform: scale(0.9)  rotate(12deg); }
    75% { transform: scale(1.1)  rotate(-6deg); }
    100%{ transform: scale(1)    rotate(0deg); }
}

/* ── Tooltip on hover (optional) ────────────────────────── */
#golden-bee-mascot .bee-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(20,10,0,0.88);
    color: #ffd700;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    border: 1px solid rgba(255,215,0,0.4);
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
    opacity: 0;
    pointer-events: none;
}

#golden-bee-mascot:hover .bee-tooltip {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}








#wa-widget{
    position:fixed;
    bottom:20px;
    right:20px;
    z-index:999999;
    font-family:Arial,sans-serif;
}

#wa-popup{
    width:260px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.18);
    padding:15px;
    margin-bottom:12px;
    display:none;
    animation:fadeIn .4s ease;
    cursor:pointer;
}

#wa-popup h4{
    margin:0 0 8px;
    font-size:16px;
    color:#111;
}

#wa-popup p{
    margin:0;
    color:#666;
    font-size:14px;
    line-height:1.5;
}

#wa-close{
    float:right;
    cursor:pointer;
    color:#999;
    font-size:20px;
}

#wa-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
    text-decoration:none;
    transition:.3s;
    cursor:pointer;
}

#wa-btn:hover{
    transform:scale(1.08);
}

#wa-btn svg{
    width:34px;
    height:34px;
    fill:#fff;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

#wa-popup{
    width:260px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.18);
    padding:15px;
    margin-bottom:12px;
    display:none;
    animation:fadeIn .4s ease;

    cursor:default;      /* Not clickable */
    pointer-events:auto;
}
    
