/*==============================================
  Unified Navbar & Sidenav Styles
  Modern, Responsive Navigation System
===============================================*/

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

/* Header Container */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sticky Header */
header.sticky {
    position: fixed;
    background: rgba(73, 160, 3, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Navbar Structure */
#navbar {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.sticky #navbar {
    background: rgba(73, 160, 3, 0.95);
    padding: 10px 0;
}

#navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

#navbar .row {
    margin: 0;
}

/* Logo */
.logo {
    text-align: left;
}

.logo img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

header.sticky .logo img {
    max-height: 45px;
}

/* Navbar Center - Brand Tagline */
.navbar-center {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.brand-tagline span {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

header.sticky .brand-tagline span {
    color: rgba(255, 255, 255, 0.9);
}

/* Navbar Right Section */
.navbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    height: 100%;
}

/* Contact Number */
.navbar-contact a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-contact a:hover {
    color: #49a003;
}

.navbar-contact .fa {
    color: #49a003;
    font-size: 16px;
}

header.sticky .navbar-contact a {
    color: rgba(255, 255, 255, 0.9);
}

header.sticky .navbar-contact a:hover {
    color: #ffffff;
}

header.sticky .navbar-contact .fa {
    color: #ffffff;
}

/* Social Icons - Main Navbar */
.navbar-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(73, 160, 3, 0.15);
    color: #49a003;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(73, 160, 3, 0.2);
}

.navbar-social a:hover {
    background: rgba(73, 160, 3, 0.25);
    transform: translateY(-3px);
    color: #49a003;
    box-shadow: 0 4px 12px rgba(73, 160, 3, 0.3);
}

header.sticky .navbar-social a {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

header.sticky .navbar-social a:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Left Side - Contact Info */
.left-side {
    flex: 1;
    display: flex;
    align-items: center;
}

.left-side p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.2;
}

.left-side span {
    color: #ffffff;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}

/* Logo Center */
.logo {
    flex: 0 0 auto;
    text-align: center;
    padding: 0 20px;
}

.logo img {
    max-height: 65px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

header.sticky .logo img {
    max-height: 50px;
}

/* Right Side - Social Icons & Menu */
.right-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons.another {
    display: flex;
    gap: 8px;
}

.social-icons.another a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.social-icons.another a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icons i {
    font-size: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icons.another i {
    font-size: 18px;
}

/* Menu Toggle - For All Devices */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-menu {
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 25px;
    background: rgba(73, 160, 3, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(73, 160, 3, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-menu:hover {
    background: rgba(73, 160, 3, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(73, 160, 3, 0.3);
}

.slide-menu .fa-bars {
    font-size: 18px;
    color: #49a003;
    transition: all 0.3s ease;
}

.menu-text {
    color: #49a003;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

header.sticky .slide-menu {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

header.sticky .slide-menu .fa-bars,
header.sticky .menu-text {
    color: #ffffff;
}

header.sticky .slide-menu:hover {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Premium Sidenav Styles */
.sidenav {
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
    backdrop-filter: blur(20px);
    overflow-x: hidden;
    overflow-y: auto;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.sidenav.open {
    width: 350px;
}

/* Sidenav Header */
.sidenav-header {
    padding: 30px 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidenav-logo {
    max-height: 50px;
    width: auto;
}

.sidenav .closebtn {
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.sidenav .closebtn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Sidenav Menu */
.sidenav-menu {
    flex: 1;
    padding: 20px 0;
}

.sidenav-menu a {
    padding: 18px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.sidenav-menu a i {
    font-size: 18px;
    width: 20px;
    color: rgba(73, 160, 3, 0.8);
}

.sidenav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(73, 160, 3, 0.1), transparent);
    transition: left 0.5s ease;
}

.sidenav-menu a:hover::before {
    left: 100%;
}

.sidenav-menu a:hover,
.sidenav-menu a.active {
    color: #49a003;
    border-left-color: #49a003;
    background: rgba(73, 160, 3, 0.1);
    transform: translateX(5px);
}

.sidenav-menu a:hover i,
.sidenav-menu a.active i {
    color: #49a003;
}

/* Sidenav Footer */
.sidenav-footer {
    padding: 25px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidenav-contact {
    margin-bottom: 20px;
}

.sidenav-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidenav-contact i {
    color: #49a003;
    width: 16px;
}

.sidenav-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.sidenav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(73, 160, 3, 0.2);
    color: #49a003;
    font-size: 18px;
    transition: all 0.3s ease;
}

.sidenav-social a:hover {
    background: rgba(73, 160, 3, 0.4);
    transform: translateY(-2px);
}

/* Overlay for mobile */
.sidenav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidenav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Border Image */
.border-img {
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    opacity: 0.4;
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navbar-contact a {
        font-size: 13px;
    }
    
    .navbar-social {
        gap: 10px;
    }
    
    .navbar-social a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .navbar-right {
        gap: 15px;
    }
    
    .brand-tagline span {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .navbar-contact {
        display: none !important;
    }
    
    .navbar-social {
        gap: 8px;
    }
    
    .navbar-social a {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    .brand-tagline span {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    #navbar {
        padding: 10px 0;
    }
    
    .navbar-center {
        display: none !important;
    }
    
    .navbar-social {
        display: none !important;
    }
    
    .navbar-contact {
        display: none !important;
    }
    
    .logo img {
        max-height: 45px;
    }
    
    .slide-menu {
        padding: 10px;
    }
    
    .menu-text {
        display: none !important;
    }
    
    .sidenav.open {
        width: 280px;
    }
}

@media (max-width: 576px) {
    .top-contact-bar {
        padding: 5px 0;
        font-size: 11px;
    }
    
    .top-social-icons a {
        font-size: 14px;
    }
    
    #navbar {
        padding: 8px 0;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .slide-menu {
        padding: 8px;
    }
    
    .slide-menu .fa-bars {
        font-size: 18px;
    }
    
    .sidenav.open {
        width: 100%;
    }
    
    .sidenav a {
        font-size: 16px;
        padding: 12px 25px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    header {
        padding: 10px 0;
    }
    
    header.sticky {
        padding: 5px 0;
    }
    
    .logo img {
        max-height: 45px;
    }
    
    header.sticky .logo img {
        max-height: 35px;
    }
    
    .slide-menu .fa-bars {
        font-size: 20px;
    }
    
    .sidenav.open {
        width: 100%;
    }
    
    .sidenav {
        padding-top: 70px;
    }
    
    .sidenav a {
        font-size: 18px;
        padding: 15px 30px;
        text-align: center;
    }
}

@media (max-width: 375px) {
    .logo img {
        max-height: 40px;
    }
    
    header.sticky .logo img {
        max-height: 32px;
    }
    
    .slide-menu {
        padding: 6px;
    }
    
    .slide-menu .fa-bars {
        font-size: 18px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States for Accessibility */
.slide-menu:focus,
.sidenav a:focus,
.sidenav .closebtn:focus {
    outline: 2px solid #49a003;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .sidenav {
        background: #000000;
        border-right: 2px solid #ffffff;
    }
    
    .sidenav a {
        color: #ffffff;
        border-bottom: 1px solid #333333;
    }
    
    .sidenav a:hover,
    .sidenav a.active {
        background: #333333;
        color: #ffffff;
    }
}
/* 
Additional Utility Classes for Inline Style Replacement */

/* Admin Link Styling */
.admin-link {
    color: #d26e0b !important;
}

.admin-link:hover {
    color: #b85a09 !important;
}

/* Button Gradient Styling */
.btn-gradient {
    background: linear-gradient(45deg, #28a745, #20c997) !important;
    border: none !important;
    padding: 12px 25px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4) !important;
    transition: all 0.3s ease !important;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6) !important;
}

/* Carousel Buttons */
.carousel-buttons {
    position: relative;
    z-index: 100;
}

/* Notification Banner */
.notification-banner {
    background: linear-gradient(90deg, #5ba17a 0%, #4a9268 100%);
    color: white;
    padding: 15px 0;
}

.notification-banner .fa-bell {
    font-size: 20px;
}

.notification-banner .btn {
    color: #5ba17a;
    font-weight: 600;
    border-radius: 20px;
    padding: 8px 20px;
}

/* Wellness Programs Section */
.wellness-programs {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.wellness-programs img {
    margin-bottom: 20px;
}

.wellness-programs h2 {
    color: #5ba17a;
    font-weight: 700;
    margin-bottom: 15px;
}

.wellness-programs h3 {
    color: #6c757d;
    font-weight: 400;
}

/* Program Cards */
.program-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.program-card.weekend {
    border-left: 5px solid #5ba17a;
}

.program-card.three-day {
    border-left: 5px solid #28a745;
}

.program-card.seven-day {
    border-left: 5px solid #dc3545;
}

.program-card.online {
    border-left: 5px solid #6f42c1;
}

.program-card h4.weekend {
    color: #5ba17a;
    font-weight: 600;
    margin-bottom: 15px;
}

.program-card h4.three-day {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 15px;
}

.program-card h4.seven-day {
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 15px;
}

.program-card h4.online {
    color: #6f42c1;
    font-weight: 600;
    margin-bottom: 15px;
}

.program-card p {
    color: #6c757d;
    line-height: 1.6;
}

.program-card-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.program-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.program-badge.weekend {
    background: #5ba17a;
}

.program-badge.three-day {
    background: #28a745;
}

.program-badge.seven-day {
    background: #dc3545;
}

.program-badge.online {
    background: #6f42c1;
}

.program-btn {
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 600;
}

.program-btn.online {
    border-color: #6f42c1;
    color: #6f42c1;
}

/* Book Now Button */
.btn-book-now {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
}

/* Tabbed Section */
.tabbed-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.nav-tabs.nav-justified {
    border-bottom: 2px solid #5ba17a;
    margin-bottom: 0;
}

.nav-tabs .nav-link.active {
    color: #5ba17a;
    border: 2px solid #5ba17a;
    border-bottom: none;
    background: white;
    border-radius: 0;
}

.nav-tabs .nav-link {
    color: #000;
    border: 2px solid #ebeaea;
    background: #ebeaea;
    border-radius: 0;
}

.nav-tabs .nav-link h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

/* Responsive adjustments for program cards */
@media (max-width: 768px) {
    .program-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .program-btn {
        width: 100%;
        text-align: center;
    }
    
    .wellness-programs {
        padding: 40px 0;
    }
    
    .tabbed-section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .program-card {
        padding: 20px;
    }
    
    .btn-book-now {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .notification-banner {
        padding: 10px 0;
    }
    
    .nav-tabs .nav-link h4 {
        font-size: 13px;
    }
}
* Notification Banner Button */
.notification-btn {
    color: #5ba17a !important;
    font-weight: 600 !important;
    border-radius: 20px !important;
    padding: 8px 20px !important;
}/* 
Tab Content Styles */
.tab-content {
    background: white;
    border: 2px solid #5ba17a;
    border-top: none;
    padding: 40px;
    min-height: 500px;
}

.tab-content h3 {
    color: #5ba17a;
}

.tab-content h5 {
    color: #5ba17a;
    font-weight: 600;
}

.tab-content h6 {
    color: #5ba17a;
    font-weight: 600;
}

.tab-content .price-note {
    color: #d26e0b;
    font-weight: 600;
}

.tab-content .table thead {
    background: #5ba17a;
    color: white;
}

.tab-content .info-box {
    background: #f8f9fa;
    border-left: 4px solid #5ba17a;
    border-radius: 5px;
    padding: 15px;
}

.tab-content .accommodation-card h4 {
    color: #5ba17a;
    font-weight: 600;
    margin-bottom: 15px;
}

.tab-content .accommodation-card p {
    color: #6c757d;
    line-height: 1.6;
}

.tab-content .features-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #5ba17a;
}

.tab-content .features-box h6 {
    color: #5ba17a;
    font-weight: 600;
    margin-bottom: 10px;
}

.tab-content .features-box ul {
    margin-bottom: 0;
    color: #6c757d;
}

/* Remove all inline styles from tab elements */
.nav-tabs .nav-link h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

/* Responsive tab content */
@media (max-width: 768px) {
    .tab-content {
        padding: 20px;
        min-height: auto;
    }
    
    .nav-tabs .nav-link h4 {
        font-size: 13px;
    }
}
* Additional Accommodation Styles */
.accommodation-card {
    color: #5ba17a !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
}

.features-box.premium {
    border-left-color: #28a745 !important;
}

.features-box.premium h6 {
    color: #28a745 !important;
}

.booking-cta {
    background: linear-gradient(135deg, #5ba17a 0%, #4a9268 100%) !important;
    border-radius: 10px !important;
    color: white !important;
    text-align: center !important;
}

.booking-cta h5 {
    color: white !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
}

.booking-cta .fa {
    margin-right: 8px;
}/* M
obile Contact Info - Show in sidenav */




/* Show contact info on larger tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .left-side {
        display: flex;
    }
    
    .social-icons.another {
        display: flex;
    }
}
/* Book Now Button in Header - Enhanced */
.navbar-book-now {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.btn-book-now-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-book-now-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-book-now-header:hover::before {
    left: 100%;
}

.btn-book-now-header:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6), 0 4px 15px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #218838 0%, #1ea080 50%, #138496 100%);
    color: white;
    text-decoration: none;
}

.btn-book-now-header:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-book-now-header:focus {
    outline: 3px solid rgba(40, 167, 69, 0.3);
    outline-offset: 2px;
}

.btn-book-now-header .fa {
    font-size: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* Sticky header adjustments - Enhanced */
header.sticky .btn-book-now-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    color: #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(40, 167, 69, 0.2);
}

header.sticky .btn-book-now-header:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%);
    color: #218838;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4), 0 3px 10px rgba(0, 0, 0, 0.15);
    border-color: rgba(40, 167, 69, 0.4);
    transform: translateY(-3px) scale(1.02);
}

/* Responsive adjustments for Book Now button */
@media (max-width: 1200px) {
    .btn-book-now-header {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .navbar-book-now {
        margin-left: 10px;
    }
    
    .btn-book-now-header {
        padding: 8px 14px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .navbar-book-now {
        display: none !important;
    }
}

/* Mobile Book Now Button - Show in sidenav for mobile */
.sidenav-book-now {
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.sidenav-book-now .btn-book-now-mobile {
    width: 100%;
    background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
    color: white;
    border: none;
    padding: 18px 25px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4), 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.sidenav-book-now .btn-book-now-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.sidenav-book-now .btn-book-now-mobile:hover::before {
    left: 100%;
}

.sidenav-book-now .btn-book-now-mobile:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.6), 0 5px 15px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #218838 0%, #1ea080 50%, #138496 100%);
}

.sidenav-book-now .btn-book-now-mobile .fa {
    font-size: 20px;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
/* Floatin
g Book Now Button for Mobile */
.floating-book-now {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.btn-floating-book {
    background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3), 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 130px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-floating-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-floating-book:hover::before {
    left: 100%;
}

.btn-floating-book:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4), 0 6px 18px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #218838 0%, #1ea080 50%, #138496 100%);
    color: white;
}

.btn-floating-book .fa {
    font-size: 16px;
    animation: rotate 2s infinite linear;
}

.btn-floating-book span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Enhanced pulse animation using filter drop-shadow */
@keyframes pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 6px 20px rgba(40, 167, 69, 0.5))
                drop-shadow(0 3px 10px rgba(0, 0, 0, 0.1));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 8px 25px rgba(40, 167, 69, 0.8))
                drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 6px 20px rgba(40, 167, 69, 0.5))
                drop-shadow(0 3px 10px rgba(0, 0, 0, 0.1));
    }
}


/* Hide floating button when sidenav is open */
.sidenav.open ~ .floating-book-now {
    display: none;
}

/* Responsive adjustments for floating button */
@media (max-width: 576px) {
    .floating-book-now {
        bottom: 70px;
        right: 15px;
    }
    
    .btn-floating-book {
        padding: 10px 16px;
        font-size: 13px;
        min-width: 110px;
    }
}

@media (max-width: 375px) {
    .floating-book-now {
        bottom: 60px;
        right: 10px;
    }
    
    .btn-floating-book {
        padding: 8px 14px;
        font-size: 12px;
        min-width: 100px;
    }
}/* Additiona
l Book Now Button Enhancements */

/* Glow effect for all book now buttons */
.btn-book-now-header,
.btn-book-now-mobile,
.btn-floating-book {
    position: relative;
}

.btn-book-now-header::after,
.btn-book-now-mobile::after,
.btn-floating-book::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, #28a745, #20c997, #17a2b8);
    z-index: -1;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-book-now-header:hover::after,
.btn-book-now-mobile:hover::after,
.btn-floating-book:hover::after {
    opacity: 0.7;
}

/* Ripple effect on click */
.btn-book-now-header,
.btn-book-now-mobile,
.btn-floating-book {
    overflow: hidden;
}

.btn-book-now-header:active,
.btn-book-now-mobile:active,
.btn-floating-book:active {
    position: relative;
}

/* Enhanced text shadow for better readability */
.btn-book-now-header,
.btn-book-now-mobile,
.btn-floating-book {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Improved focus states for accessibility */
.btn-book-now-header:focus-visible,
.btn-book-now-mobile:focus-visible,
.btn-floating-book:focus-visible {
    outline: 3px solid rgba(40, 167, 69, 0.5);
    outline-offset: 3px;
}

/* Loading state animation */
@keyframes loading-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.btn-book-now-header.loading .fa,
.btn-book-now-mobile.loading .fa,
.btn-floating-book.loading .fa {
    animation: loading-spin 1s linear infinite;
}

/* Success state animation */
@keyframes success-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.btn-book-now-header.success,
.btn-book-now-mobile.success,
.btn-floating-book.success {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    animation: success-bounce 0.6s ease;
}

/* Disabled state */
.btn-book-now-header:disabled,
.btn-book-now-mobile:disabled,
.btn-floating-book:disabled {
    background: linear-gradient(135deg, #6c757d, #adb5bd) !important;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-book-now-header,
    .btn-book-now-mobile,
    .btn-floating-book {
        border: 2px solid #ffffff;
        background: #000000 !important;
        color: #ffffff !important;
    }
    
    .btn-book-now-header:hover,
    .btn-book-now-mobile:hover,
    .btn-floating-book:hover {
        background: #333333 !important;
        border-color: #ffffff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .btn-book-now-header,
    .btn-book-now-mobile,
    .btn-floating-book {
        animation: none !important;
        transition: none !important;
    }
    
    .btn-book-now-header .fa,
    .btn-book-now-mobile .fa,
    .btn-floating-book .fa {
        animation: none !important;
    }
    
    .floating-book-now {
        animation: none !important;
    }
}