@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
/* =========================================
   DESKTOP NAVBAR — Floating Pill Style
   ========================================= */
* {
    font-family: "Poppins", sans-serif;
}

header {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    /* padding: 6px 10px; */
    pointer-events: none;
  
    background: transparent;

}

/* ---- LIGHT MODE (default) ---- */
header nav {
    position: absolute;
    top: 0px;
    z-index: 111111111;
    pointer-events: all;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: transparent;
    border-radius: 50px;
    padding: 8px 32px;
    max-width: 100%;
    margin: 0;
    width: 100%;
    left: 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

/* ---- DARK MODE ---- */
body.dark-mode header nav {
    background: transparent;
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.07); */
}

/* Logo */
.navbar-logo-container {
    padding: 0;
    justify-self: start;
}
.navbar-logo-container a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-logo {
    height: 36px;
    max-width: 48px;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
    filter: invert(30%) sepia(87%) saturate(5838%) hue-rotate(241deg) brightness(97%) contrast(85%);
    flex-shrink: 0;
}

/* Brand name text beside logo */
.navbar-brand-name {
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #09090b;
    letter-spacing: -0.02em;
    white-space: nowrap;
    transition: color 0.2s ease;
}
body.dark-mode .navbar-brand-name {
    color: #f8fafc;
}

/* Center nav links pill — LIGHT MODE */
ul.navbar {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 6px 8px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    gap: 4px;
    align-items: center;
    justify-self: center;
    transition: background 0.3s ease, border 0.3s ease;
}
body.dark-mode ul.navbar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

ul.navbar li a.nav-links {
    display: block;
    color: rgba(30, 30, 30, 0.75);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 7px 18px;
    border-radius: 50px;
    transition: all 0.25s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
    position: relative;
}
body.dark-mode ul.navbar li a.nav-links {
    color: rgba(255, 255, 255, 0.65);
}

ul.navbar li a.nav-links::before {
    display: none;
}

ul.navbar li a.nav-links:hover {
    color: #111;
    background: rgba(0, 0, 0, 0.07);
}
body.dark-mode ul.navbar li a.nav-links:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

ul.navbar li a.nav-links.active {
    background: var(--color-primary, #7c3aed);
    color: #fff !important;
    font-weight: 600;
}

/* Right side: dark mode + CTA */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
}

/* Dark mode toggle desktop — LIGHT MODE */
#darkModeToggle {
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border 0.2s ease;
    padding: 0;
}
#darkModeToggle:hover {
    background: rgba(0, 0, 0, 0.12);
}
body.dark-mode #darkModeToggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
body.dark-mode #darkModeToggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Contact Us CTA button — LIGHT MODE */
.nav-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #111111;
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.nav-cta-btn:hover {
    background: #333;
    color: #fff;
}
/* DARK MODE — invert CTA to light */
body.dark-mode .nav-cta-btn {
    background: #ffffff;
    color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
body.dark-mode .nav-cta-btn:hover {
    background: #e5e5e5;
    color: #111;
}

.nav-cta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    box-shadow: 0 0 8px #22c55e, 0 0 16px rgba(34, 197, 94, 0.4);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 6px #22c55e, 0 0 12px rgba(34, 197, 94, 0.4); }
    50%       { box-shadow: 0 0 12px #22c55e, 0 0 24px rgba(34, 197, 94, 0.6); }
}

/* =========================================
   MOBILE NAVBAR — Unchanged
   ========================================= */
#mobile-nav {
    display: none;
}
#darkModeMobile {
    display: none;
}
#navigation-menu {
    display: none;
}

#mobile-nav li {
    display: flex;
    background: var(--color-primary);
    justify-content: end;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

#mobile-nav .nav-btns {
    position: relative;
    right: -300px;
    opacity: 0;
    transition: all 0.5s ease;
}

#mobile-nav .nav-btns.animate {
    right: 0;
    opacity: 1;
}

#navigation-menu #mobile-nav li a {
    width: 100%;
    text-align: end;
    background: transparent;
}
#navigation-menu #mobile-nav li:hover {
    background: var(--color-secondary) !important;
    right: -5px;
}
#navigation-menu #mobile-nav .booking-dropdown-menu li a:hover {
    color: white;
}
#navigation-menu #ham-icon {
    position: relative;
    display: none;
    height: 50px;
    width: 50px;
    align-items: center;
    margin-bottom: 0;
    border-radius: 5px;
    animation: 0.5s ease;
    background: transparent;
    padding: 13px;
}

#navigation-menu ul span {
    position: absolute;
    bottom: 8px;
    left: 53px;
    width: 47px;
    height: 3px;
    background: var(--booking-nav-theme-color);
    transition: 0.4s ease;
}

#navigation-menu ul li:nth-child(3).active ~ span { left: 249px; width: 85px; }
#navigation-menu ul li:nth-child(2).active ~ span { left: 139px; width: 74px; }
#navigation-menu ul li:nth-child(1):hover ~ span  { left: 53px;  width: 47px; }
#navigation-menu ul li:nth-child(2):hover ~ span  { left: 139px; width: 74px; }
#navigation-menu ul li:nth-child(3):hover ~ span  { left: 249px; width: 85px; }

#navigation-menu ul li {
    color: white;
    list-style: none;
    cursor: pointer;
    z-index: 1111;
}
#navigation-menu ul li a {
    padding: 10px 24px;
    text-decoration: none;
    color: white;
}

/* =========================================
   HAMBURGER TOGGLE
   ========================================= */
.toggle {
    position: relative;
    width: 45px;
    height: 40px;
    background: #2b2b2b;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.4s;
}

.toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: calc(38px);
    height: 2px;
    background: black;
    transform-style: preserve-3d;
    box-shadow: 0 -12px 0 black, 0 12px 0 black;
    transition-property: transform, box-shadow;
    transition-delay: 0s, 1s;
    transition-duration: 0.5s, 0.5s;
}
.dark-mode .toggle span {
    box-shadow: 0 -12px 0 white, 0 12px 0 white;
    background: white;
}
.toggle.active span {
    background: white;
    box-shadow: 60px -12px 0 white, -60px 12px 0 white;
    transform: translate(-50%, -50%) rotate(-315deg);
    transition-property: box-shadow, transform;
    transition-delay: 0s, 0.5s;
    transition-duration: 0.5s, 0.5s;
}
.dark-mode .toggle.active span {
    box-shadow: 45px -12px 0 var(--dark-bg), -45px 12px 0 var(--dark-bg);
}
.toggle span::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 38px;
    background: black;
    transition: 0.5s;
    transition-delay: 0.5s;
    z-index: 1;
}
.dark-mode .toggle span::before { background: white; }
.toggle.active span::before {
    top: 50%;
    transition-delay: 1s;
    background: white;
}

/* =========================================
   RESPONSIVE — switch to mobile at ≤1130px
   ========================================= */
@media (max-width: 1130px) {
    header {
          padding-top: 0;
    }
    .navbar-logo-container {
        padding: 0;
    }
    header nav {
        display: flex;
        justify-content: space-between!important;
        border-radius: 16px;
        max-width: 100%;
    }

    #navigation-menu {
        display: flex;
    }
    ul.navbar,
    .navbar-right {
        display: none !important;
    }
    #darkModeMobile {
        display: block;
    }

    #navigation-menu #mobile-nav.show {
        position: fixed;
        display: flex !important;
        gap: 10px;
        flex-direction: column;
        overflow: hidden;
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.45) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        left: 0;
        right: 0;
        opacity: 1;
        align-items: end;
        padding-top: 80px;
        top: 0;
        bottom: 0;
        z-index: 11111111;
    }
    #navigation-menu #ham-icon {
        display: flex;
        right: 0;
        z-index: 111111111;
    }
    body.active .chatbot-container {
        z-index: 10 !important;
    }
}

@media only screen and (max-width: 820px) {
    #navigation-menu #lap-nav { display: none !important; }
}

@media only screen and (max-width: 420px) {
    #navigation-menu #lap-nav { display: none !important; }
    #navigation-menu #ham-icon {
        display: flex !important;
        right: -16px;
        padding: 10px;
        height: 42px;
        width: 42px;
    }
}

@media (max-width: 820px) {
    .navbar-logo { height: 48px; max-width: 140px; }
}
@media (max-width: 420px) {
    .navbar-logo { height: 42px; max-width: 110px; }
}


/* Body top padding to offset the fixed navbar */
body {
    /* padding-top: 68px; */
}
@media (max-width: 1130px) {
    /* body { padding-top: 60px; } */
}




