    /* style.css */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        padding: 0 !important;
    }


    /* Add your existing navbar2 CSS here - it's too long to repeat */
    .desktop-only {
        display: block;
    }

    @media (max-width: 768px) {
        .desktop-only {
            display: none !important;
        }
    }

    /* Additional responsive utilities */
    .navbar2+.breadcrumb-area {
        margin-top: 80px;
    }

    .card-area {
        padding-top: 0 !important;
    }

    /* Navbar base styles */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 6px 0;
        transition: all 0.25s ease;
    }


    .navbar.white-nav {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar.white-nav .logo {
        color: #333;
    }

    .navbar.white-nav .logo-icon {
        color: #e91e63;
    }

    .navbar.white-nav .nav-link {
        color: #333;
    }

    .navbar.white-nav .nav-link:hover {
        color: #e91e63;
    }

    /* White nav contact info styles */
    .navbar.white-nav .contact-item {
        color: #666;
    }

    .navbar.white-nav .contact-item:hover {
        color: #e91e63;
    }

    .navbar.white-nav .search-container {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid #ddd;
    }

    /* Nav Container - Grid Layout */
    .nav-container {
        max-width: 2100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        padding: 0 20px;
        gap: 40px;
        transition: all 0.25s ease;
    }

    /* Default state - no search */
    .nav-container:not(.with-search) {
        grid-template-columns: auto 1fr;
        gap: 0;
    }



    .nav-container:not(.with-search) .nav-center {
        display: none;
    }

    .nav-container:not(.with-search) .nav-right {
        justify-self: end;
    }

    /* With search state */
    .nav-container.with-search {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }

    .nav-container.with-search .nav-center {
        display: flex;
        justify-content: start;
        width: 41rem;
        margin-right: 4rem;
    }

    .nav-container.with-search .nav-right {
        justify-self: end;
    }

    .nav-left {
        display: flex;
        align-items: center;
        gap: 25px;
        justify-self: start;
    }

    .logo {
        display: flex;
        align-items: center;
        color: white;
        font-size: 23px;
        font-weight: 600;
        transition: color 0.25s ease;
        white-space: nowrap;
    }




    /* Logo icon color stays the same */
    .logo-icon {
        color: #e91e63;
        margin-right: 8px;
        font-size: 20px;
        transform: rotate(45deg);
        transition: none !important;
    }

    /* Mobile Navbar Search Styles */
    .mobile-nav-search {
        width: 100%;
    }

    .mobile-nav-fields {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 5px;
        align-items: center;
    }

    .mobile-nav-input {
        padding: 8px 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 16px;
        /* Prevent zoom on iOS */
        background: white;
        color: #333;
        min-width: 0;
    }

    .nav-expand-btn {
        padding: 8px 12px;
        background: #6c757d;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 40px;
    }

    .nav-expand-btn.expanded {
        background: #e91e63;
    }

    .mobile-nav-btn {
        padding: 8px 16px;
        background: #e91e63;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
    }

    .mobile-nav-expanded {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 15px;
        border-radius: 0 0 8px 8px;
        z-index: 1001;
        display: grid;
        gap: 10px;
    }

    .mobile-expanded-input,
    .mobile-expanded-select {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 16px;
        background: white;
        color: #333;
    }

    /* Desktop Navbar Search (unchanged) */
    .desktop-nav-search .desktop-nav-fields {
        display: grid;
        grid-template-columns: 2fr 2fr 1fr auto;
        gap: 10px;
        align-items: center;
        justify-content: start;
        background: white;
        padding: 10px 30px;
        width: 133%;
        border-radius: 2rem;
    }

    /* Responsive adjustments */
    @media (max-width: 480px) {
        .mobile-nav-fields {
            grid-template-columns: 1fr auto;
            gap: 5px;
        }

        .nav-expand-btn {
            display: none;
        }

        .mobile-nav-input {
            font-size: 16px;
            padding: 10px 12px;
        }

        .mobile-nav-btn {
            padding: 10px 12px;
            font-size: 14px;
        }
    }

    @media (max-width: 380px) {
        .mobile-nav-btn {
            padding: 10px 8px;
            font-size: 12px;
        }

        .mobile-nav-input {
            padding: 8px 10px;
            font-size: 15px;
        }
    }

    /* Navbar transitions */
    .nav-search-container {
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-center.active .nav-search-container {
        opacity: 1;
        transform: translateY(0);
    }

    /* Contact Info Styles */
    .contact-info {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 6px;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .contact-item:hover {
        color: #e91e63;
        transform: translateY(-1px);
    }

    .contact-icon {
        font-size: 14px;
        opacity: 0.8;
    }

    .contact-text {
        font-size: 13px;
    }

    /* Nav Center - Search Bar */
    .nav-center {
        display: none;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.25s ease;
    }



    .nav-center.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-right {
        display: flex;
        gap: 15px;
        align-items: center;
        transition: all 0.25s ease;
        justify-self: end;
    }


    .nav-link {
        color: white;
        text-decoration: none;
        font-size: 15px;
        font-weight: 400;
        transition: color 0.25s ease;
        white-space: nowrap;
    }

    .nav-link:hover {
        color: #e91e63;
    }

    /* Dropdown Styles */
    .nav-dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-trigger::after {
        content: " ▾";
        font-size: 12px;
        margin-left: 5px;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background: white;
        min-width: 200px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        border-radius: 8px;
        z-index: 1001;
        top: 100%;
        left: 0;
        padding: 8px 0;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .dropdown-content a {
        color: #333 !important;
        padding: 10px 16px;
        text-decoration: none;
        display: block;
        transition: background-color 0.2s;
        font-size: 14px;
    }

    .dropdown-content a:hover {
        background-color: #f8f9fa;
        color: #e91e63 !important;
    }

    .nav-dropdown:hover .dropdown-content {
        display: block;
    }

    /* User avatar */
    .user-avatar {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        margin-right: 6px;
        vertical-align: middle;
    }

    /* White nav dropdown styles */
    .navbar.white-nav .dropdown-content {
        background: white;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }




    .nav-search-container {
        width: 100%;
        max-width: 700px;
    }


    .nav-search-form {
        width: 100%;
    }



    .nav-search-fields {
        display: flex;
        align-items: center;
        background: white;
        padding: 0px 6px;
        /* border-radius: 30px; */
        gap: 0;
        /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15); */
        position: relative;
        border: 0.5px solid #dbdbdb;
    }

    .nav-search-field {
        display: flex;
        align-items: center;
        flex: 1;
        position: relative;
    }


    .nav-search-icon {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        color: #666;
        flex-shrink: 0;
        z-index: 1;
    }


    .nav-select {
        padding: 8px 5px;
        border: none;
        font-size: 14px;
        background: white;
        color: #333;
    }

    .nav-input {
        flex: 1;
        padding: 4px 12px 4px 25px;
        border: none;
        font-size: 15px;
        background: transparent;
        color: #333;
        outline: none;
        min-width: 0;
        width: 100%;
    }

    .nav-input::placeholder {
        color: #999;
    }

    /* Hide the search button */
    .nav-search-btn {
        display: none;
    }


    .logo a span {
        font-size: 13px;
        color: white;
        margin-left: 4px;
        transition: color 0.25s ease;
        font-weight: 500;
    }



    .navbar.white-nav .logo a span {
        color: #333 !important;
    }

    /* Logo SVG - Keep same color always */
    .logo svg {
        transition: none !important;
    }

    /* Also change SVG color in white navbar */
    .navbar.white-nav .logo svg {
        fill: currentColor;
    }

    .navbar {
        transition: all 0.25s ease !important;
        /* Changed from 0.4s to 0.25s */
    }

    .nav-container {
        transition: all 0.25s ease !important;
        /* Changed from 0.4s to 0.25s */
    }

    .nav-center {
        transition: all 0.25s ease !important;
        /* Changed from 0.4s to 0.25s */
    }

    .nav-link {
        transition: color 0.25s ease !important;
        /* Changed from 0.4s to 0.25s */
    }

    .nav-input:focus,
    .nav-select:focus {
        outline: none;
        border-color: #e91e63;

    }


    /* .nav-search-btn {
    padding: 12px 24px;
    background: #e91e63;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    transition: background 0.3s ease;
} */

    .nav-search-btn:hover {
        background: #c2185b;
    }

    .nav-search-btn svg {
        width: 16px;
        height: 16px;
    }


    /* Mobile responsive */
    @media (max-width: 768px) {
        .nav-search-fields {
            grid-template-columns: 1fr auto;
            gap: 8px;
        }

        .nav-location,
        .nav-category {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .nav-input {
            font-size: 16px;
            /* Prevent zoom on iOS */
        }
    }




    .card-label {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .category-name {
        font-weight: 600;
        font-size: 16px;
        color: #E91E63;
        margin-bottom: -7px;
    }

    .category-count {
        font-size: 12px;
        color: #666;
        /* background: rgba(233, 30, 99, 0.1); */
        padding: 2px 8px;
        border-radius: 12px;
        font-weight: 500;
    }

    .more-btn-box {
        margin-top: 40px;
    }

    .btn-gray {
        background: #f8f9fa;
        color: #333;
        padding: 12px 24px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 1px solid #e1e5e9;
    }

    .btn-gray:hover {
        background: #e91e63;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(233, 30, 99, 0.2);
    }

    .hover-scale-2:hover {
        transform: translateY(-2px) scale(1.02);
    }

    /* No categories found styling */
    .info-box {
        text-align: center;
        padding: 60px 20px;
        background: #f8f9fa;
        border-radius: 12px;
        margin-top: 40px;
    }

    .info-icon {
        font-size: 48px;
        color: #e91e63;
        margin-bottom: 20px;
    }

    .info__title {
        font-size: 20px;
        color: #333;
        font-weight: 600;
    }








    /* Hero Section */
    .hero {
        height: 85vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: radial-gradient(ellipse at center, rgba(139, 69, 19, 0.4) 0%, rgb(46 0 38 / 80%) 25%, rgb(9 0 38 / 90%) 50%, rgb(8 8 18 / 95%) 75%, rgb(8 8 24) 100%);
        color: white;
        position: relative;
        overflow: hidden;
        padding-top: 70px;
    }

    .hero-content {
        text-align: center;
        z-index: 2;
        max-width: 1000px;
        padding: 0 20px;
        margin-top: 5rem;
        margin-bottom: 4rem;
    }

    .rating {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        gap: 5px;
        margin-bottom: 40px;
        position: absolute;
        top: 30px;
        left: 30px;
        border-radius: 25px;
        z-index: 3;
    }

    .stars {
        display: flex;
        gap: 3px;
    }

    .star {
        color: #666;
        font-size: 30px;
    }

    .star.filled {
        color: #ffd700;
    }

    .rating-text {
        font-size: 14px;
        color: #fff !important;
        margin-left: 8px;
    }

    .heart-icon {
        position: absolute;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: #e91e63;
        background: rgba(0, 0, 0, 0.6);
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Desktop video container */
    .video-container {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        aspect-ratio: 16/9;
    }

    .video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(233, 30, 99, 0.2), rgba(0, 0, 0, 0.6));
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: center;
        text-align: center;
        z-index: 2;
        border-radius: 20px;
    }

    /* Overlay text styles */
    .subtitle {
        font-size: 20px;
        color: #f0f0f0;
        margin-bottom: 0px;
        font-weight: 400;
        /* margin-top: 14rem; */
    }

    .main-title {
        font-size: 32px;
        font-weight: 500;
        margin-bottom: 10px;
        line-height: 1.2;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        color: white;
        line-height: 84px;
    }

    /* Search Section */
    .search-section {
        margin-bottom: 10px;
        opacity: 1;
        transform: translateY(0);
        transition: all 0.4s ease;
        width: 100%;
    }

    .search-section.hidden {
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
    }

    .search-wrapper {
        display: inline-block;
        width: 100%;
    }

    .search-container {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        margin-bottom: 15px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .nav-center .search-container {
        background: rgba(255, 255, 255, 0.95);
        margin-bottom: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        max-width: 400px;
        min-width: 300px;
    }

    .search-icon {
        padding: 0 20px;
        color: #999;
        font-size: 18px;
        flex-shrink: 0;
    }

    .search-input {
        flex: 1;
        border: none;
        padding: 18px 5px;
        font-size: 16px;
        color: #333;
        background: transparent;
        min-width: 200px;
    }

    .nav-center .search-input {
        padding: 14px 5px;
        font-size: 14px;
        min-width: 200px;
    }

    .search-input:focus {
        outline: none;
    }

    .search-input::placeholder {
        color: #999;
    }

    .search-btn {
        background: #e91e63;
        color: white;
        border: none;
        /* padding: 18px 35px; */
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease;
        border-radius: 0 50px 50px 0;
        flex-shrink: 0;
    }

    .nav-center .search-btn {
        padding: 14px 25px;
        font-size: 14px;
    }

    .search-btn:hover {
        background: #c2185b;
    }


    /* Search Info Text */
    .search-info {
        color: #ffffff;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        /* margin-top: 15px; */
        margin-bottom: 0;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .view-all {
        margin-top: 4%;
        margin-bottom: 1.5rem;
    }

    .view-all-link {
        color: white;
        text-decoration: underline;
        font-size: 16px;
        transition: color 0.3s ease;
        text-underline-offset: 4px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .view-all-link:hover {
        color: #e91e63;
    }

    /* Advanced Search Styles */
    .desktop-advanced-search {
        background: rgba(255, 255, 255, 0.95);
        padding: 25px;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        margin-bottom: 15px;
    }

    .advanced-search-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr auto;
        gap: 15px;
        align-items: end;
    }

    .search-field {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .search-label {
        font-size: 13px;
        font-weight: 600;
        color: #333;
    }

    .search-input-field,
    .search-select-field {
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 14px;
        background: #f8f9fa;
    }

    .search-input-field:focus,
    .search-select-field:focus {
        outline: none;
        border-color: #e91e63;
        background: white;
    }

    .search-buttons {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .advanced-search-btn,
    .simple-search-btn {
        padding: 12px 20px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        font-size: 14px;
    }

    .advanced-search-btn {
        background: #e91e63;
        color: white;
    }

    .simple-search-btn {
        background: #6c757d;
        color: white;
    }

    /* Mobile Advanced Search */
    .mobile-advanced-search {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 15px;
        backdrop-filter: blur(10px);
    }

    .mobile-search-field {
        margin-bottom: 15px;
    }

    .mobile-search-field label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
    }

    .mobile-search-field input,
    .mobile-search-field select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
    }



    .mobile-search-buttons {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .mobile-search-btn,
    .mobile-simple-btn {
        padding: 12px 20px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
    }

    .mobile-search-btn {
        background: #e91e63;
        color: white;
    }

    .mobile-simple-btn {
        background: #6c757d;
        color: white;
    }

    /* Mobile content */
    .mobile-hero-content {
        display: none;
    }







    /* Desktop Search Form Styling */
    .main-search-input {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr auto;
        /* gap: 15px; */
        background: rgba(255, 255, 255, 0.95);
        padding: 25px;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        margin-bottom: 20px;
    }

    .main-search-input-item {
        display: flex;
        flex-direction: column;
    }

    .input-box {
        display: flex;
        flex-direction: column;
        /* gap: 8px; */
    }

    .label-text {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
    }

    .form-group {
        position: relative;
        margin-bottom: 0;
    }

    .form-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #666;
        z-index: 2;
    }

    .form-control {
        width: 100%;
        padding: 15px 15px 15px 45px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 15px;
        background: #f8f9fa;
        color: #333;
        outline: none;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        border-color: #e91e63;
        background: white;
        box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
    }

    .user-chosen-select {
        width: 100%;
        padding: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 15px;
        background: #f8f9fa;
        color: #333;
        cursor: pointer;
    }

    .user-chosen-select:focus {
        border-color: #e91e63;
        background: white;
        outline: none;
    }

    .theme-btn {
        background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
        color: white;
        border: none;
        /* padding: 15px 25px; */
        /* border-radius: 8px; */
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .theme-btn:hover {
        background: linear-gradient(135deg, #9c164c 0%, #830f41 100%);
        /* transform: translateY(-2px); */
        /* box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4); */
    }

    /* Mobile Search Form Styling */
    .mobile-search-container {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        padding: 25px;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        margin-bottom: 20px;
    }

    .mobile-search-field {
        margin-bottom: 20px;
    }

    .mobile-search-field label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
    }

    .mobile-input,
    .mobile-select {
        width: 100%;
        padding: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
        background: #f8f9fa;
        color: #333;
    }

    .mobile-input:focus,
    .mobile-select:focus {
        outline: none;
        border-color: #e91e63;
        background: white;
    }

    .mobile-search-btn {
        width: 100%;
        background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
        color: white;
        border: none;
        padding: 18px 25px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .mobile-search-btn:hover {
        background: linear-gradient(135deg, #c2185b 0%, #ad1457 100%);
    }

    /* Responsive adjustments */
    /* @media (max-width: 1024px) {
        .main-search-input {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 20px;
        }

    } */


    @media (max-width: 992px) {
        .main-search-input {
            display: none;
        }

        .mobile-search-container {
            padding: 20px;
        }
    }

    @media (max-width: 480px) {
        .mobile-search-container {
            padding: 15px;
        }

        .mobile-search-field {
            margin-bottom: 15px;
        }
    }






    /* ============================================
    CATEGORIES CAROUSEL - BRAND NEW
    ============================================ */

    .categories-carousel-section {
        background: radial-gradient(ellipse at center,
                rgba(139, 69, 19, 0.4) 0%,
                rgb(46 0 38 / 80%) 25%,
                rgb(9 0 38 / 90%) 50%,
                rgb(8 8 18 / 95%) 75%,
                rgb(8 8 24) 100%);
        padding: 60px 0 120px 0;
        position: relative;
        overflow: hidden;
    }

    .categories-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 0;
    }

    .categories-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .categories-title {
        font-size: 48px;
        font-weight: 600;
        color: #ffffff;
        margin: 0 0 10px 0;
    }

    .highlight-text {
        color: #e91e63;
    }

    .categories-subtitle {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
    }

    /* Slider Wrapper */
    .slider-wrapper {
        position: relative;
        padding: 0 60px;
    }

    .slider-track-container {
        overflow: hidden;
        position: relative;
    }

    .slider-track {
        display: flex;
        transition: transform 0.4s ease-in-out;
        gap: 25px;
    }

    /* Individual Slide */
    .category-slide {
        flex: 0 0 320px;
        width: 320px;
        cursor: pointer;
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    /* .category-slide:hover {
        transform: translateY(-10px);
    } */

    .category-image-wrapper {
        width: 100%;
        height: 350px;
        border-radius: 20px;
        overflow: hidden;
        background: #1a1a1a;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .category-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .category-slide:hover .category-image {
        transform: scale(1.05);
    }


    .category-slide:hover .category-name {
        text-decoration: underline;

    }

    .category-info {
        /* background: #ffffff; */
        padding: 5px 6px;
        border-radius: 12px;
        margin-top: 2px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        /* text-align: center; */
    }

    .category-name {
        font-size: 18px;
        font-weight: 600;
        color: #e91e63;
        margin: 0;
    }

    .category-count {
        font-size: 13px;
        color: #666666;
        margin: 0;
        display: none;
    }

    /* Navigation Buttons */
    .slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.7);
        border: none;
        color: #ffffff;
        font-size: 28px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        line-height: 1;
        padding-bottom: 6px;
    }

    .slider-nav:hover {
        background: rgba(233, 30, 99, 0.9);
        transform: translateY(-50%) scale(1.1);
    }

    .slider-nav-prev {
        left: 0;
    }

    .slider-nav-next {
        right: 0;
    }

    /* Footer */
    .categories-footer {
        text-align: center;
        margin-top: 50px;
    }

    .view-all-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #f8f9fa;
        color: #333333;
        padding: 14px 30px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        border: 1px solid #e1e5e9;
        transition: all 0.3s ease;
    }

    .view-all-btn:hover {
        background: #e91e63;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
    }

    /* No Categories */
    .no-categories {
        text-align: center;
        padding: 80px 20px;
    }

    .no-categories-icon {
        font-size: 60px;
        color: #e91e63;
        margin-bottom: 20px;
    }

    .no-categories-text {
        font-size: 22px;
        color: #ffffff;
        font-weight: 600;
    }

    /* ============================================
    RESPONSIVE - MOBILE (ONE CARD)
    ============================================ */

    @media (max-width: 768px) {
        .categories-carousel-section {
            padding: 40px 0 80px 0;
        }

        .categories-title {
            font-size: 32px;
        }

        .categories-header {
            margin-bottom: 30px;
        }

        .slider-wrapper {
            padding: 0;
        }

        .slider-track {
            gap: 15px;
            padding: 0 15px;
        }

        .category-slide {
            flex: 0 0 calc(100vw - 30px);
            width: calc(100vw - 30px);
        }

        .category-image-wrapper {
            height: 280px;
        }

        .slider-nav {
            width: 45px;
            height: 45px;
            font-size: 24px;
            background: rgba(0, 0, 0, 0.85);
        }

        .slider-nav-prev {
            left: 5px;
        }

        .slider-nav-next {
            right: 5px;
        }

        .categories-footer {
            margin-top: 30px;
        }
    }

    @media (max-width: 480px) {
        .categories-title {
            font-size: 26px;
        }

        .slider-track {
            padding: 0 10px;
        }

        .category-slide {
            flex: 0 0 calc(100vw - 20px);
            width: calc(100vw - 20px);
        }

        .category-image-wrapper {
            height: 260px;
        }

        .slider-nav {
            width: 40px;
            height: 40px;
            font-size: 22px;
        }
    }

    /* Popular Venues Section - Proper positioning */

    .popular-venues-zone {
        background: #ffffff;
        padding: 80px 0 40px 0;
        position: relative;
        z-index: 1;
        margin-top: 0;
    }



    .venues-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
    }


    .venues-title-area {
        text-align: center;
        margin-bottom: 50px;
    }

    .venues-main-title {
        font-size: 35px;
        font-weight: 600;
        color: #333333;
        margin-bottom: 10px;
    }

    .venues-subtitle {
        font-size: 16px;
        color: #666666;
        font-weight: 500;
    }

    .venues-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 30px;
        justify-content: center;
    }



    /* New Venue Card */
    .venue-card-new {
        /* background: #ffffff; */
        border-radius: 20px;
        overflow: hidden;
        /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
        cursor: pointer;
        transition: all 0.3s ease;
        /* border: 1px solid #f0f0f0; */
        flex: 0 1 calc(33.333% - 20px);
        min-width: 300px;
        max-width: 16%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }


    /* Responsive adjustments for venue cards */
    @media (max-width: 1400px) {
        .venue-card-new {
            flex: 0 1 calc(33.333% - 20px);
            /* Still 3 cards */
            min-width: 280px;
        }
    }

    /* .venue-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
 */


    /* Image Container */
    .venue-image-container {
        position: relative;
        width: 100%;
        height: 240px;
        overflow: hidden;
        cursor: default;
        /* background: #f5f5f5; */
    }

    .venue-main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        border-radius: 12px;
    }

    /*
.venue-card-new:hover .venue-main-image {
    transform: scale(1.05);
}

 */


    .location-badge {
        position: absolute;
        top: 5px;
        left: -1px;
        /* background: rgba(0, 0, 0, 0.75); */
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 15px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 5px;
        z-index: 15;
        font-weight: 600;
        pointer-events: none;
    }



    .location-badge svg {
        flex-shrink: 0;
        margin-top: 3px;
    }

    /* Status Badge - Top Right */
    .status-badge {
        position: absolute;
        top: 9px;
        right: 15px;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        z-index: 15;
        pointer-events: none;
    }

    .badge-open {
        background: #4CAF50;
        color: white;
    }

    .badge-closed {
        background: #f44336;
        color: white;
    }


    /* Image Navigation Dots */
    .image-dots {
        position: absolute;
        bottom: 15px;
        left: 15px;
        display: flex;
        gap: 6px;
        z-index: 2;
    }

    .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        transition: all 0.3s ease;
    }

    .dot.active {
        background: white;
        width: 20px;
        border-radius: 10px;
    }



    /* Next Arrow */
    .image-arrow {
        position: absolute;
        bottom: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        background: white;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .image-arrow:hover {
        background: #e91e63;
    }

    .image-arrow:hover svg {
        stroke: white;
    }

    .image-arrow svg {
        stroke: #333;
        transition: stroke 0.3s ease;
    }

    .venue-card {
        max-width: 400px;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        margin: 0 auto;
    }


    /* Card Content */
    .venue-card-content {
        padding: 7px;
    }

    .venue-card-title {
        font-size: 18px;
        font-weight: 700;
        /* color: #e91e63; */
        margin: 0 0 2px 0;
        line-height: 1.3;
    }

    .venue-card-new:hover .venue-card-title {
        color: #e91e63;
        text-decoration: underline;
        text-decoration-color: #e91e63;
        text-transform: none;
    }

    .venue-image-section {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

    .venue-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .open-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #4CAF50;
        color: white;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 500;
        z-index: 5;
    }

    .venue-content {
        padding: 20px;
    }

    .venue-title {
        font-size: 20px;
        font-weight: 600;
        color: #333333;
        margin-bottom: 10px;
    }

    .venue-description {
        font-size: 14px;
        color: #2e2d2d;
        line-height: 1.5;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .venue-stats {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        justify-content: start;
    }

    .rating-badge {
        background: #4CAF50;
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 600;
    }

    .rating-text2 {
        font-size: 16px;
        color: #666666;
    }

    .venue-tags {
        display: flex;
        align-items: center;
        gap: 10px;
        /* margin-left: auto; */
    }

    .tag {
        font-size: 16px;
        color: #666666;
    }

    .venue-details {
        border-top: 1px solid #f0f0f0;
        padding-top: 15px;
    }

    .detail-item {
        display: flex;
        align-items: center;
        gap: 8px;
        /* margin-bottom: 8px; */
        font-size: 14px;
        color: #666666;
    }

    .detail-icon {
        font-size: 16px;
        color: #4CAF50;
    }


    /* Status badge styles */
    .open-badge.status-open {
        background: #4CAF50 !important;
        color: white !important;
    }

    .open-badge.status-closed {
        background: #f44336 !important;
        color: white !important;
    }

    /* Responsive grid layout */
    @media (max-width: 1200px) {
        .popular-venues-zone .venue-card {
            flex: 0 1 calc(50% - 0.5rem);
        }

        .venues-grid {
            gap: 25px;
        }

        .venue-card-new {
            flex: 0 1 calc(50% - 12.5px);
            /* 2 cards per row */
            min-width: 300px;
        }
    }

    @media (max-width: 992px) {
        .venue-card-new {
            flex: 0 1 calc(50% - 12.5px);
            /* 2 cards per row */
            min-width: 280px;
        }
    }


    @media (max-width: 768px) {
        .popular-venues-zone {
            padding: 60px 0;
        }

        .venues-container {
            padding: 0 15px;
        }

        .venues-title-area {
            margin-bottom: 30px;
        }

        .venues-main-title {
            font-size: 28px;
        }

        /* .venues-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    } */

        .venues-grid {
            gap: 20px;
            justify-content: center;
        }

        .venue-card-new {
            flex: 0 1 100%;
            /* 1 card per row */
            max-width: 450px;
            min-width: 0;
        }

        .venue-image-container {
            height: 220px;
        }

        .venue-card-content {
            padding: 16px;
        }

        .venue-card-title {
            font-size: 16px;
        }

        .feature-item {
            font-size: 12px;
        }

        .popular-venues-zone .venue-card {
            flex: 1 1 100% !important;
            max-width: 400px;
        }
    }



    /* Venue card hover effects */
    .venue-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }

    .venues-display-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }

    .venue-block {
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .venue-block:hover {
        cursor: pointer;
    }

    .venue-photo-section {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .venue-location-label {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(0, 0, 0, 0.75);
        color: #ffffff;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 500;
        z-index: 5;
    }

    .photo-display-area {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .venue-photo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .venue-photo.current-photo {
        opacity: 1;
    }

    .photo-indicators {
        position: absolute;
        bottom: 15px;
        left: 15px;
        display: flex;
        gap: 8px;
        z-index: 5;
    }

    .indicator-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .indicator-dot.current-dot {
        background: #ffffff;
    }

    .photo-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.6);
        color: #ffffff;
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 5;
    }

    .photo-nav-btn:hover {
        background: rgba(0, 0, 0, 0.8);
        transform: translateY(-50%) scale(1.1);
    }

    .photo-prev-btn {
        left: 15px;
    }

    .photo-next-btn {
        right: 15px;
    }

    .venue-info-section {
        padding: 20px;
    }

    .venue-title {
        font-size: 18px;
        font-weight: 600;
        color: #333333;
        margin-bottom: 10px;
        line-height: 1.3;
        transition: color 0.3s ease, text-decoration 0.3s ease;
    }

    .venue-block:hover .venue-title {
        color: #E91E63;
    }

    .venue-title:hover {
        text-decoration: underline;
    }

    .venue-features {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 8px;
    }


    .feature-item {
        font-size: 13px;
        color: #666;
        position: relative;
        padding-right: 12px;
        font-weight: 500;
    }



    .feature-item:not(:last-child)::after {
        content: '•';
        position: absolute;
        right: 0;
        color: #ddd;
    }

    .feature-item:last-child {
        padding-right: 0;
    }



    /* Bottom Info */
    .venue-card-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* border-top: 1px solid #f0f0f0; */
        padding-top: 6px;
    }

    /* Price */
    .venue-price {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .price-duration {
        font-size: 12px;
        color: #999;
    }

    .price-amount {
        font-size: 18px;
        font-weight: 700;
        color: #333;
    }

    /* Rating */
    .venue-rating-box {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .rating-score {
        font-size: 16px;
        font-weight: 700;
        color: #333;
    }

    .rating-stars-small {
        display: flex;
        gap: 2px;
    }

    .star-small {
        font-size: 14px;
        color: #ddd;
    }

    .star-small.filled {
        color: #FFD700;
    }

    .rating-count {
        font-size: 12px;
        color: #999;
    }



    .venue-bottom-info {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .venue-pricing {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .price-duration {
        font-size: 12px;
        color: #666666;
        margin-bottom: 2px;
    }

    .price-amount {
        font-size: 18px;
        font-weight: 700;
        color: #333333;
    }

    .venue-rating {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .rating-number {
        font-size: 16px;
        font-weight: 700;
        color: #333333;
    }

    .rating-stars {
        display: flex;
        gap: 2px;
    }

    .rating-star {
        font-size: 14px;
        color: #dddddd;
    }

    .rating-star.active-star {
        color: #ffd700;
    }

    .rating-reviews {
        font-size: 12px;
        color: #666666;
    }

    /* Bottom Navigation with grey icons */
    .bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 10px 0;
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transform: translateY(0);
        transition: transform 0.4s ease;
    }

    .bottom-nav.hidden {
        transform: translateY(100%);
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 8px 12px;
        cursor: pointer;
        color: #666;
        transition: color 0.3s ease;
        text-decoration: none;
        min-width: 0;
        flex: 1;
        position: relative;
    }

    .bottom-nav-item:hover {
        color: #e91e63;
    }

    .bottom-nav-icon {
        font-size: 20px;
        color: #666;
        transition: color 0.3s ease;
    }

    .bottom-nav-item:hover .bottom-nav-icon {
        color: #e91e63;
    }

    .bottom-nav-item span {
        font-size: 10px;
        font-weight: 500;
        color: #666;
        transition: color 0.3s ease;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .bottom-nav-item:hover span {
        color: #e91e63;
    }

    .bottom-nav-item:nth-child(5)~.bottom-nav-item,
    .bottom-nav-item:nth-child(5) {
        padding: 6px 8px;
    }

    .bottom-nav-item:nth-child(5)~.bottom-nav-item .bottom-nav-icon,
    .bottom-nav-item:nth-child(5) .bottom-nav-icon {
        font-size: 18px;
    }

    .bottom-nav-item:nth-child(5)~.bottom-nav-item span,
    .bottom-nav-item:nth-child(5) span {
        font-size: 9px;
    }

    /* Mobile dropdown styles for bottom nav */
    .mobile-dropdown-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1001;
    }

    .mobile-dropdown-overlay.active {
        display: block;
    }

    .mobile-dropdown-content {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-radius: 20px 20px 0 0;
        z-index: 1002;
        max-height: 70vh;
        overflow-y: auto;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    }

    .mobile-dropdown-content.active {
        display: block;
        animation: slideUp 0.3s ease-out;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .mobile-dropdown-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #eee;
        background: #f8f9fa;
        border-radius: 20px 20px 0 0;
    }

    .mobile-dropdown-header h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        color: #333;
    }

    .mobile-dropdown-close {
        background: none;
        border: none;
        font-size: 24px;
        color: #666;
        cursor: pointer;
        padding: 5px;
        line-height: 1;
    }

    .mobile-dropdown-body {
        padding: 10px 0 30px 0;
    }

    .mobile-dropdown-body a {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #f5f5f5;
        gap: 15px;
        font-size: 16px;
    }

    .mobile-dropdown-body a:hover {
        background-color: #f8f9fa;
        color: #e91e63;
    }

    .mobile-dropdown-body a:last-child {
        border-bottom: none;
    }

    .mobile-dropdown-body a svg {
        color: #666;
        flex-shrink: 0;
    }

    .mobile-dropdown-body a:hover svg {
        color: #e91e63;
    }

    /* Contact option styling */
    .contact-option {
        flex-direction: row !important;
    }

    .contact-option div {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .contact-label {
        font-size: 14px;
        font-weight: 600;
        color: #333;
    }

    .contact-value {
        font-size: 13px;
        color: #666;
    }

    /* Bottom nav avatar */
    .bottom-nav-avatar {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        object-fit: cover;
    }

    .view-all-categories {
        background: #f8f9fa !important;
        font-weight: 600 !important;
        color: #e91e63 !important;
    }

    /* Active state for bottom nav */
    .bottom-nav-item.active {
        color: #e91e63;
    }

    .bottom-nav-item.active .bottom-nav-icon {
        color: #e91e63;
    }

    .bottom-nav-item.active span {
        color: #e91e63;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .contact-info {
            gap: 15px;
        }

        .contact-text {
            font-size: 12px;
        }

        .carousel-card {
            flex: 0 0 280px;
        }

        .card-image {
            height: 200px;
        }

        .venues-display-grid {
            gap: 25px;
        }

        .venues-container {
            padding: 0 20px;
        }
    }

    @media (max-width: 1200px) {
        .nav-container {
            padding: 0 20px;
            gap: 15px;
            display: none;
        }

        .navbar {
            display: none;
        }

        .nav-left {
            gap: 20px;
        }

        .contact-info {
            gap: 12px;
        }

        .nav-right {
            gap: 25px;
        }
    }



    @media (max-width: 992px) {
        /* .navbar {
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .navbar.show {
            transform: translateY(0);
            opacity: 1;
        }

        .nav-container {
            padding: 0 15px;
        }

        .nav-right {
            display: none;
        }

        .nav-link {
            font-size: 14px;
        }

        .logo {
            font-size: 16px;
        }

        .contact-info {
            display: none;
        } */

        /* Mobile - hide dropdowns but keep bottom nav */
        .nav-dropdown {
            display: none;
        }

        .hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=400&h=300&fit=crop&crop=center');
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
            height: 90vh;
        }


        .video-container {
            display: none !important;
        }

        .mobile-hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            text-align: center;
            position: relative;
        }

        .mobile-content {
            max-width: 100%;
            padding: 0 20px;
        }

        .rating {
            position: absolute;
            top: -60px;
            left: 3px;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
        }

        .rating .stars {
            display: flex;
            gap: 2px;
            margin-bottom: 3px;
        }

        .rating .star {
            font-size: 25px;
            color: #666;
        }

        .rating .star.filled {
            color: #ffd700;
        }

        .rating-text {
            font-size: 14px;
            color: #fff !important;
            white-space: nowrap;
        }

        .heart-icon {
            width: 30px;
            height: 30px;
            font-size: 18px;
            right: -12px;
        }

        .subtitle {
            font-size: 18px;
            margin-bottom: 15px;
            margin-top: 1rem;
        }

        .main-title {
            font-size: 32px;
            margin-bottom: 30px;
        }

        .search-section {
            margin-bottom: 25px;
            width: 100%;
        }

        .search-container {
            flex-direction: column;
            border-radius: 15px;
            margin-bottom: 12px;
            max-width: 350px;
            margin-left: auto;
            margin-right: auto;
        }

        .search-icon {
            display: none;
        }

        .search-input {
            padding: 16px 20px;
            font-size: 16px;
            text-align: center;
            width: 100%;
            border-radius: 15px 15px 0 0;
        }

        .search-btn {
            width: 100%;
            padding: 16px;
            font-size: 16px;
            border-radius: 0 0 15px 15px;
        }

        .search-info {
            font-size: 13px;
            margin-bottom: 20px;
        }

        .mobile-search {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
        }

        .mobile-search .search-wrapper {
            width: 100%;
        }

        .mobile-search .search-container {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 25px;
            overflow: hidden;
            width: 100%;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
            margin-bottom: 15px;
        }

        .mobile-search .search-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            background: transparent;
            font-size: 16px;
            color: #333;
            min-width: 0;
        }

        .mobile-search .search-input::placeholder {
            color: #999;
        }

        .mobile-search .search-btn {
            padding: 15px 25px;
            background: #e91e63;
            color: white;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            flex-shrink: 0;
            transition: background 0.3s ease;
        }

        .mobile-search .search-btn:hover {
            background: #c2185b;
        }

        .mobile-search .search-icon {
            padding: 0 15px;
            color: #999;
            font-size: 16px;
            flex-shrink: 0;
        }

        .mobile-search .search-info {
            color: #f0f0f0;
            font-size: 13px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }

        .view-all {
            margin-top: 20px;
        }

        .view-all-link {
            font-size: 14px;
            margin-top: 20px;
        }

        .nav-center .search-container {
            min-width: 250px;
            max-width: 300px;
            flex-direction: row;
            border-radius: 50px;
        }

        .nav-center .search-icon {
            display: block;
        }

        .nav-center .search-input {
            min-width: 100px;
            font-size: 13px;
            padding: 12px 5px;
            text-align: left;
        }

        .nav-center .search-btn {
            padding: 12px 20px;
            font-size: 13px;
            border-radius: 0 50px 50px 0;
            width: auto;
        }


    }

    @media (max-width: 480px) {

        .venue-card-new {
            flex: 0 1 100%;
            max-width: 400px;
        }

        .venue-image-container {
            height: 200px;
        }

        .location-badge,
        .status-badge {
            font-size: 12px;
            padding: 5px 10px;
        }

        .image-arrow {
            width: 32px;
            height: 32px;
        }

        .image-arrow svg {
            width: 16px;
            height: 16px;
        }

        .popular-venues-zone {
            padding: 60px 0;
        }

        .venues-container {
            padding: 0 15px;
        }

        .venues-title-area {
            margin-bottom: 30px;
        }

        .venues-main-title {
            font-size: 28px;
        }

        .venues-display-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .venue-block {
            max-width: 400px;
            margin: 0 auto;
        }

        .venue-info-section {
            padding: 15px;
        }

        .venue-title {
            font-size: 16px;
        }

        .venue-features {
            font-size: 13px;
        }

        .rating {
            position: absolute;
            top: -85px;
            left: 0px;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
            margin-top: 1rem;
        }

        .hero-content {
            padding: 0 10px;
        }

        .main-title {
            font-size: 28px;
        }

        .subtitle {
            font-size: 16px;
        }

        .search-container {
            max-width: 320px;
        }

        .search-input {
            padding: 13px 18px;
            font-size: 15px;
        }

        .search-btn {
            padding: 13px;
            font-size: 15px;
        }

        .logo-text {
            display: none;
        }
    }

    @media (min-width: 1200px) {
        .bottom-nav {
            display: none;
        }

        .mobile-hero-content {
            display: none !important;
        }

        .video-container {
            display: block;
        }
    }

    @media (max-width: 320px) {
        .bottom-nav-item span {
            font-size: 8px;
        }

        .bottom-nav-item {
            padding: 6px 4px;
        }

    }

    @media (max-width: 360px) {
        @media (max-width: 360px) {
            .venue-card-new {
                max-width: 100%;
            }
        }

        .venue-photo-section {
            height: 200px;
        }

        .venues-main-title {
            font-size: 24px;
        }

        .venue-block {
            max-width: 100%;
        }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
        .venues-display-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }


    .voucher-app-links {
        margin: 18px 0 25px 0;
        display: flex;
        gap: 13px;
        flex-wrap: wrap;
    }

    .download-badge img {
        height: 46px;
        width: auto;
        border-radius: 11px;
        box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
        transition: filter 0.18s;
    }

    .download-badge img:hover {
        filter: brightness(0.9);
    }

    .voucher-login-btn {
        display: inline-block;
        background: #E91E63;
        color: #fff;
        border-radius: 20px;
        font-size: 1.07rem;
        padding: 10px 34px;
        font-weight: 600;
        margin-top: 15px;
        text-decoration: none;
        box-shadow: 0 2px 12px rgba(51, 60, 81, 0.13);
        transition: background 0.2s;
        border: none;
        cursor: pointer;
    }

    .voucher-login-btn:hover {
        background: #eb185e;
        color: #fff;
    }

    @media (max-width:768px) {
        .voucher-app-links {
            justify-content: center;
        }

        .voucher-login-btn {
            margin-bottom: 16px;
        }
    }

    .voucher-section {
        width: 70%;
        background: #fff;
        padding: 65px 0 110px 0;
        margin: 0 auto;
    }

    .voucher-container {
        max-width: 1100px;
        margin: 1rem auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8rem;
    }

    .voucher-info {
        min-width: 300px;
        flex: 1;
    }

    .voucher-info h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: #181818;
    }

    .voucher-subtitle {
        color: #666;
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .voucher-list {
        margin: 0 0 22px 0;
        padding-left: 18px;
    }

    .voucher-list li {
        color: #181818;
        font-size: 1rem;
        margin-bottom: 7px;
        font-weight: 500;
        list-style-type: disc;
        list-style-position: inside;
    }

    .voucher-list li::marker {
        color: #E91E63;
    }

    .voucher-btn {
        background: #e91e63;
        color: #fff;
        border: none;
        font-size: 1.1rem;
        border-radius: 22px;
        padding: 10px 34px;
        font-weight: 600;
        box-shadow: 0 2px 12px rgba(233, 30, 99, 0.10);
        cursor: pointer;
        transition: background 0.2s;
        margin-left: 1rem;
    }

    .voucher-btn:hover {
        background: #c2185b;
    }

    .voucher-images {
        position: relative;
        width: 340px;
        height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .voucher-card {
        width: 310px;
        height: 180px;
        border-radius: 22px;
        box-shadow: 0 6px 28px rgba(25, 8, 52, 0.12);
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .back-card {
        background: linear-gradient(135deg, #ac1a56, #7f1143 80%);
        top: -22px;
        left: 26px;
        transform: rotate(20deg);
        z-index: 1;
    }

    .main-card {
        background: #fff;
        left: 0;
        top: 120px;
        transform: rotate(-15deg);
        z-index: 2;
    }

    .voucher-card-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        filter: brightness(0.93);
    }

    .voucher-card-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 2;
        pointer-events: none;
    }

    .voucher-card-logo {
        width: 54px;
        height: 54px;
        margin-bottom: 14px;
        filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    }

    .voucher-card-title {
        color: #fff;
        font-size: 2rem;
        font-weight: bold;
        text-shadow: 0 3px 16px rgba(0, 0, 0, 0.40);
        text-align: center;
        letter-spacing: 0.5px;
    }

    .main-card .voucher-card-title {
        color: #fff;
    }

    @media (max-width: 1200px) {
        .voucher-container {
            gap: 3rem;
        }

        .voucher-images {
            width: 340px;
            height: 220px;
        }

        .voucher-card {
            width: 310px;
            height: 150px;
        }

        .back-card {
            top: -15px;
            left: 20px;
        }

        .main-card {
            top: 80px;
        }
    }

    @media (max-width: 768px) {
        .voucher-section {
            width: 100%;
            padding: 40px 20px 100px 20px;
        }

        .voucher-container {
            flex-direction: column;
            gap: 60px;
            align-items: center;
            text-align: center;
        }

        .voucher-info {
            min-width: 0;
            width: 100%;
            max-width: 400px;
        }

        .voucher-info h2 {
            font-size: 1.8rem;
            margin-bottom: 12px;
        }

        .voucher-subtitle {
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .voucher-list {
            text-align: left;
            margin-bottom: 30px;
        }

        .voucher-list li {
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .voucher-btn {
            margin-left: 0;
            padding: 12px 40px;
            font-size: 1.1rem;
        }

        .voucher-images {
            width: 320px;
            height: 200px;
            margin: 0 auto;
        }

        .voucher-card {
            width: 280px;
            height: 160px;
            border-radius: 20px;
        }

        .back-card {
            top: -20px;
            left: 25px;
            transform: rotate(18deg);
        }

        .main-card {
            top: 100px;
            left: 0;
            transform: rotate(-12deg);
        }

        .voucher-card-title {
            font-size: 1.6rem;
        }
    }

    @media (max-width: 480px) {
        .voucher-section {
            padding: 30px 15px 80px 15px;
        }

        .voucher-container {
            gap: 60px;
        }

        .voucher-info h2 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .voucher-subtitle {
            font-size: 0.95rem;
            margin-bottom: 18px;
        }

        .voucher-list li {
            font-size: 0.95rem;
            margin-bottom: 6px;
        }

        .voucher-btn {
            padding: 10px 32px;
            font-size: 1rem;
        }

        .voucher-images {
            width: 280px;
            height: 180px;
        }

        .voucher-card {
            width: 240px;
            height: 140px;
            border-radius: 18px;
        }

        .back-card {
            top: -18px;
            left: 22px;
            transform: rotate(16deg);
        }

        .main-card {
            top: 85px;
            left: 0;
            transform: rotate(-10deg);
        }

        .voucher-card-title {
            font-size: 1.4rem;
        }
    }

    @media (max-width: 360px) {
        .voucher-images {
            width: 260px;
            height: 160px;
        }

        .voucher-card {
            width: 220px;
            height: 125px;
        }

        .back-card {
            top: -15px;
            left: 20px;
        }

        .main-card {
            top: 75px;
        }

        .voucher-card-title {
            font-size: 1.2rem;
        }
    }

    @media (min-width: 1600px) {
        .horLine {
            margin: 0 auto;
            width: 50%;
            border: none;
            height: 2px;
            background-color: rgba(187, 187, 187, 0.3);
        }
    }

    @media (max-width: 1600px) {
        .horLine {
            margin: 0 auto;
            width: 70%;
            border: none;
            height: 2px;
            background-color: rgba(187, 187, 187, 0.3);
        }
    }

    .main-footer {
        background-color: #f4f4f4;
        padding: 40px 0 20px 0;
        font-family: 'Segoe UI', Arial, sans-serif;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .app-links {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        gap: 10px;
    }

    .app-link {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #666;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s ease;
    }

    .app-link:hover {
        color: #e91e63;
    }

    .footer-content {
        display: flex;
        gap: 40px;
        margin-bottom: 30px;
        justify-content: space-around;
        width: 100%;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .footer-title {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin-bottom: 16px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 8px;
        color: #666;
        font-size: 14px;
    }

    .footer-links a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
        line-height: 1.4;
        transition: color 0.2s ease;
    }

    .footer-links a:hover {
        color: #e91e63;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .copyright-logo {
        width: 14px;
        height: 14px;
        color: #e91e63;
    }

    .footer-bottom span {
        color: #666;
        font-size: 14px;
    }

    @media (max-width: 768px) {
        .main-footer {
            padding: 30px 0 20px 0;
        }

        .footer-content {
            flex-direction: column;
            gap: 20px;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 8px;
        }
    }

    @media (max-width: 480px) {
        .footer-container {
            padding: 0 15px;
        }
    }

    /* first card css */
    .container {
        max-width: 420px;
        margin: 20px auto;
        /* background: white; */
        border-radius: 10px;
        box-shadow: 0 4px 15px rgb(0 0 0 / 0.1);
        overflow: hidden;
    }


    /* first card css */
    .containerss {
        max-width: 1400px;
        margin: 30px auto;
        /* background: white; */
        padding: 50px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgb(0 0 0 / 0.1);
        overflow: hidden;

    }


    .breadcrumb {
        padding: 15px 20px;
        font-size: 14px;
        color: #666;
    }

    .breadcrumb span {
        margin-right: 5px;
    }

    .breadcrumb span::after {
        content: ">";
        margin-left: 5px;
        color: #aaa;
    }

    .breadcrumb span:last-child::after {
        content: "";
    }

    .title-rate {
        padding: 0 20px 15px 20px;
    }

    .title-rate h1 {
        margin: 0 0 5px;
        font-size: 22px;
        font-weight: 600;
    }

    .rating {
        font-size: 15px;
        color: #ffb400;
    }

    .rating span {
        font-weight: bold;
        color: #222;
        margin-left: 8px;
    }

    .carousel-container {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .carousel-slide {
        display: flex;
        transition: transform 0.4s ease-in-out;
    }

    .carousel-slide img {
        width: 100%;
        user-select: none;
        pointer-events: none;
        object-fit: cover;
        height: 250px;
    }

    .dots {
        text-align: center;
        padding: 10px 0;
        background: white;
    }

    .dot {
        cursor: pointer;
        height: 10px;
        width: 10px;
        margin: 0 6px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.3s;
    }

    .dot.active {
        background-color: #717171;
    }

    .prev,
    .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.7);
        color: #000;
        padding: 8px 13px;
        border-radius: 50%;
        user-select: none;
        cursor: pointer;
        font-weight: bold;
        font-size: 18px;
        z-index: 10;
    }

    .prev:hover,
    .next:hover {
        background: #fff;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .booking-info {
        padding: 15px 20px 25px 20px;
        border-top: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .price {
        font-size: 20px;
        font-weight: 700;
    }

    .price small {
        font-weight: 400;
        color: #555;
        font-size: 14px;
    }

    .book-btn {
        background-color: #6c63ff;
        color: white;
        border: none;
        border-radius: 5px;
        font-weight: 600;
        font-size: 16px;
        padding: 12px 22px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .book-btn:hover {
        background-color: #5753d7;
    }

    @media (max-width: 480px) {
        .container {
            max-width: 320px;
            margin: 15px auto;
        }

        .carousel-slide img {
            height: 200px;
        }

        .price {
            font-size: 18px;
        }

        .book-btn {
            font-size: 14px;
            padding: 10px 18px;
        }
    }

    /* Modal Styles */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
    }

    .modal-content {
        background-color: white;
        margin: 5% auto;
        padding: 0;
        border-radius: 12px;
        width: 90%;
        max-width: 500px;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        animation: modalSlideIn 0.3s ease-out;
    }

    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translateY(-50px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .modal-header {
        background: linear-gradient(135deg, #AE006D 0%, #D80057 100%);
        color: white;
        padding: 20px 30px;
        border-radius: 12px 12px 0 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .modal-header h2 {
        margin: 0;
        font-size: 24px;
        font-weight: 600;
    }

    .close-btn {
        color: white;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background-color 0.2s ease;
        padding-bottom: 7px;
    }

    .close-btn:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .register-form {
        padding: 2px 15px 5px;
    }

    .form-group {
        margin-bottom: 10px;
        padding: 10px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
        font-size: 14px;
    }

    .regform-group {
        margin-bottom: 0px;
    }

    .regform-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
        font-size: 14px;
    }

    .input-wrapper {
        position: relative;
        border-left: 4px solid #AE006D;
        background-color: #f8f9fa;
        border-radius: 8px;
        transition: border-color 0.2s ease;
    }

    .input-wrapper:focus-within {
        border-left-color: #AE006D;
        background-color: #fff;
        box-shadow: 0 0 0 3px rgba(76, 128, 255, 0.1);
    }

    .input-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        color: #6c757d;
        pointer-events: none;
    }

    .input-wrapper input {
        width: 100%;
        padding: 15px 15px 15px 50px;
        border: none;
        background: transparent;
        font-size: 16px;
        color: #333;
        border-radius: 0 8px 8px 0;
        outline: none;
    }

    .input-wrapper input::placeholder {
        color: #adb5bd;
    }

    .register-btn {
        width: 100%;
        background: linear-gradient(135deg, #AE006D 0%, #D80057 100%);
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    .register-btn:hover {
        background: linear-gradient(135deg, #970160 0%, #c40250 100%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 76, 180, 0.4);
    }

    .btn-icon {
        width: 20px;
        height: 20px;
    }

    .login-link {
        text-align: center;
        margin-top: 14px;
        color: #6c757d;
        font-size: 14px;
    }

    .login-link a {
        color: #AE006D;
        text-decoration: none;
        font-weight: 600;
    }

    .login-link a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .modal-content {
            margin: 2% auto;
            width: 95%;
            max-height: 95vh;
        }

        .modal-header {
            padding: 15px 20px;
        }

        .modal-header h2 {
            font-size: 20px;
        }

        .register-form {
            padding: 20px;
        }

        .input-wrapper input {
            padding: 12px 12px 12px 45px;
            font-size: 16px;
        }

        .register-btn {
            padding: 12px 20px;
        }
    }

    @media (max-width: 480px) {
        .modal-content {
            margin: 1% auto;
            width: 98%;
        }

        .modal-header {
            padding: 12px 15px;
        }

        .modal-header h2 {
            font-size: 18px;
        }

        .register-form {
            padding: 15px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .regform-group {
            margin-bottom: 15px;
        }
    }

    body.modal-open {
        overflow: hidden;
    }

    /* Login Modal Specific Styles */
    .form-options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px;
    }

    .checkbox-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        user-select: none;
    }

    .checkbox {
        width: 18px;
        height: 18px;
        accent-color: #AE006D;
        cursor: pointer;
    }

    .checkbox-label {
        color: #333;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
    }

    .forgot-password {
        color: #970160;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .forgot-password:hover {
        color: #970160;
        text-decoration: underline;
    }

    .login-btn {
        width: 90%;
        background: linear-gradient(135deg, #AE006D 0%, #D80057 100%);
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 10px auto 0;
    }

    .login-btn:hover {
        background: linear-gradient(135deg, #c5007d 0%, #e9015e 100%);
        transform: translateY(-2px);
    }

    .form-footer {
        margin-top: 25px;
        padding-top: 20px;
        padding-bottom: 10px;
        border-top: 1px solid #e9ecef;
    }

    .signup-text {
        text-align: center;
        margin-bottom: 15px;
        color: #6c757d;
        font-size: 14px;
    }

    .signup-link {
        color: #970160;
        text-decoration: none;
        font-weight: 600;
    }

    .signup-link:hover {
        text-decoration: underline;
        color: #860256;
    }

    .admin-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .admin-link,
    .company-link {
        color: #c5007d;
        text-decoration: none;
        font-size: 13px;
        padding: 8px 12px;
        border: 1px solid #c5007d;
        border-radius: 6px;
        transition: all 0.2s ease;
    }

    .admin-link:hover,
    .company-link:hover {
        color: #c5007d;
        border-color: #c5007d;
    }

    @media (max-width: 768px) {
        .form-options {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .admin-links {
            flex-direction: column;
            gap: 10px;
            width: 100%;
        }

        .admin-link,
        .company-link {
            text-align: center;
            width: 100%;
        }
    }

    @media (max-width: 480px) {
        .checkbox-wrapper {
            font-size: 13px;
        }

        .forgot-password {
            font-size: 13px;
        }
    }





    /* Prevent modal backdrop */
    .modal-backdrop {
        display: none !important;
    }

    /* Ensure body doesn't get modal-open class styling issues */
    body.modal-open {
        overflow: auto !important;
        padding-right: 0 !important;
    }

    /* Make sure your custom modals don't create backdrops */
    .modal {
        background-color: rgba(0, 0, 0, 0.5);
        /* Your modal should have its own background */
    }




    /* singlebusiness.php css code */


    main {
        padding: 40px 8vw 0 8vw;
        margin-top: 2rem;
    }

    .breadcrumbs {
        font-size: 0.98rem;
        color: #757575;
        margin-bottom: 0px;
    }

    .breadcrumbs a {
        color: #757575;
        text-decoration: none;
    }

    .breadcrumbs a:hover {
        color: #E91E63;
    }

    h1 {
        font-weight: 700;
        font-size: 28px;
        margin: 0 0 0;
    }

    .h1-bold {
        font-weight: 700;
    }

    .rating-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 0 0 0 0;
    }

    .stars {
        color: #FFD700;
        font-size: 1.22rem;
    }

    .rating-number {
        color: #232323;
        font-size: 20px;
        font-weight: 500;
    }

    /* Gallery Row */
    .gallery-row {
        display: flex;
        gap: 32px;
        align-items: flex-start;
        margin-top: 14px;
        margin-bottom: 44px;
    }

    /* Carousel */
    .carousel {
        position: relative;
        width: 710px;
        max-width: 60vw;
        height: 500px;
        border-radius: 23px;
        overflow: hidden;
        background: #232323;
        box-shadow: 0 8px 38px rgba(0, 0, 0, 0.22);
        flex: 1 1 710px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-main {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 23px;
        display: block;
        transition: opacity 0.25s;
    }

    /* Carousel Arrows */
    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(33, 33, 33, 0.36);
        color: #fff;
        font-size: 2.6rem;
        border: none;
        border-radius: 100px;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        z-index: 2;
        transition: all 0.2s;
    }

    .carousel-arrow.left {
        left: 18px;
    }

    .carousel-arrow.right {
        right: 18px;
    }

    .carousel:hover .carousel-arrow {
        opacity: 1;
        visibility: visible;
    }

    .carousel-dots {
        position: absolute;
        bottom: 30px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 7px;
        pointer-events: none;
        z-index: 2;
    }

    .dot {
        height: 11px;
        width: 11px;
        border-radius: 50%;
        background: #fff;
        opacity: 0.67;
        border: none;
        transition: background 0.2s, opacity 0.2s;
        cursor: pointer;
        pointer-events: all;
    }

    .dot.active {
        background: #f2097a;
        opacity: 1;
    }

    @media (min-width:500px) {
        .carousel-all-photos1 {
            position: absolute;
            bottom: 18px;
            right: 24px;
            background: #fff;
            color: #232323;
            font-size: 0.97rem;
            padding: 8px 22px;
            border-radius: 14px;
            font-weight: 500;
            border: none;
            box-shadow: 0 2px 11px rgba(0, 0, 0, 0.07);
            cursor: pointer;
            display: block;
        }

        .carousel-all-photos2 {
            display: none;
        }
    }

    @media (max-width:500px) {
        .carousel-all-photos1 {
            display: none;
        }

        .carousel-all-photos2 {
            display: block;
            background: #ececec;
            color: #232323;
            font-size: 1.1rem;
            padding: 10px 25px;
            border-radius: 5px;
            width: 100%;
            font-weight: 500;
            text-align: left;
            border: none;
            box-shadow: 0 2px 11px rgba(0, 0, 0, 0.07);
            cursor: pointer;
        }

        .gallery-row {
            margin-bottom: 24px;
        }
    }

    .side-images {
        display: flex;
        flex-direction: column;
        gap: 29px;
        min-width: 500px;
    }

    .side-image {
        width: 500px;
        height: 235px;
        object-fit: cover;
        border-radius: 21px;
        box-shadow: 0 4px 22px rgba(0, 0, 0, 0.19);
        background: #232323;
        cursor: pointer;
    }

    /* Container holds both columns */
    .section-row {
        display: flex;
        gap: 0px;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        margin: 2rem auto;
        padding: 8px 8vw 0 8vw;
    }

    /* Left column: Info, facilities, description */
    .section-left {
        background: none;
        padding: 0;
        border-radius: 24px;
        flex: 1 1 0;
        min-width: 67%;
        max-width: 700px;
    }

    /* Right column: Booking panel */
    .section-right {
        background: #fff;
        border-radius: 24px;
        min-width: 31%;
        max-width: 463px;
        flex: 0 0 463px;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        top: 80px;
        gap: 2rem;
        align-self: flex-start;
        height: fit-content;
    }

    /* Wellness Card Styles */
    .wellness-card {
        background: #F5F5F5;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 28px;
        display: flex;
        flex-direction: column;
        border-left: 7px solid #CE036A;
        height: fit-content;
    }

    .wellness-header {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 20px;
    }

    .wellness-logo {
        flex: 0 0 70px;
    }

    .wellness-icon {
        width: 70px;
        height: 70px;
        border-radius: 8px;
        background: #fff;
        padding: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .wellness-content {
        flex: 1;
    }

    .wellness-name {
        font-size: 1.3rem;
        font-weight: 700;
        color: #232323;
        margin: 0 0 8px 0;
    }

    .wellness-location,
    .wellness-type {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #666;
        font-size: 0.98rem;
        margin: 6px 0;
        font-weight: 500;
    }

    .location-icon,
    .service-icon {
        width: 16px;
        height: 16px;
        color: #CE036A;
        flex-shrink: 0;
    }

    .wellness-rating {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 10px;
        font-size: 0.95rem;
        flex-wrap: wrap;
    }

    .review-count {
        color: #666;
        font-weight: 500;
    }

    .wellness-hours {
        color: #28a745;
        font-weight: 500;
    }

    .wellness-action {
        margin-top: auto;
        padding-top: 15px;
    }

    .book-btn {
        background: linear-gradient(135deg, #AE006D 0%, #D80057 100%);
        color: #fff;
        border: none;
        border-radius: 13px;
        padding: 12px 24px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        width: 100%;
    }

    .book-btn:hover {
        background: linear-gradient(135deg, #9e0165 0%, #c2024e 100%);
        transform: translateY(-1px);
    }




    /* Description and content sections */
    .description-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: rgb(20, 20, 20);
        margin-top: 28px;
        margin-bottom: 9px;
    }

    .facilities-details {
        margin-top: 12px;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.6;
    }

    /* Location/Contact Section */
    .location-contact-section {
        margin-top: 40px;
        background: #fff;
        border-radius: 16px;
        padding: 24px 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .location-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #232323;
        margin-bottom: 24px;
        position: relative;
    }

    .title-underline {
        width: 40px;
        height: 3px;
        background: linear-gradient(135deg, #AE006D 0%, #D80057 100%);
        margin-top: 8px;
        border-radius: 2px;
    }

    .map-container {
        margin-bottom: 24px;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #e0e0e0;
    }

    .location-map {
        width: 100%;
        height: 300px;
        border: none;
        display: block;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-row {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

    .contact-icon-wrapper {
        flex: 0 0 24px;
        padding-top: 2px;
    }

    .contact-detail-icon {
        width: 20px;
        height: 20px;
        color: #E91E63;
    }

    .contact-info {
        flex: 1;
        display: flex;
        gap: 8px;
        align-items: flex-start;
    }

    .contact-label {
        font-weight: 600;
        color: #666;
        min-width: 80px;
        font-size: 1rem;
    }

    .contact-value {
        color: #666;
        font-size: 1rem;
        line-height: 1.4;
    }

    .contact-value a {
        color: #E91E63;
        text-decoration: none;
    }

    .contact-value a:hover {
        text-decoration: underline;
    }

    /* Services Section */
    .services-section,
    .reviews-section {
        margin: 40px 0;
        background: #fff;
        border-radius: 16px;
        padding: 32px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-title {
        font-size: 1.6rem;
        font-weight: 700;
        color: #232323;
        margin: 0 0 8px 0;
    }

    .count-badge {
        color: #E91E63;
        font-weight: 600;
    }

    .package-filter {
        margin-bottom: 24px;
    }

    .filter-active {
        background: #E91E63;
        color: #fff;
        border: none;
        border-radius: 20px;
        padding: 8px 20px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
    }

    .service-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .service-card {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        background: #fafbfc;
        transition: all 0.2s;
    }

    .service-card:hover {
        border-color: #E91E63;
        transform: translateY(-2px);
    }

    .service-icon {
        width: 48px;
        height: 48px;
        background: #E91E63;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        flex-shrink: 0;
    }

    .service-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-details {
        flex: 1;
    }

    .service-name {
        font-size: 1.1rem;
        font-weight: 700;
        color: #232323;
        margin: 0 0 8px 0;
    }

    .service-meta {
        display: flex;
        gap: 16px;
        font-size: 0.9rem;
        color: #666;
    }

    .service-duration::before {
        content: "🕐 ";
    }

    .service-type::before {
        content: "👤 ";
    }

    .service-price {
        font-size: 1.2rem;
        font-weight: 700;
        color: #E91E63;
        flex-shrink: 0;
    }

    /* Reviews Styles */
    .reviews-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .review-card {
        padding: 20px;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        background: #fafbfc;
    }

    .review-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 12px;
    }

    .reviewer-info {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .reviewer-name {
        font-weight: 600;
        color: #232323;
        font-size: 1rem;
    }

    .review-date {
        font-size: 0.85rem;
        color: #666;
    }

    .review-rating {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .rating-score {
        font-weight: 600;
        color: #232323;
        font-size: 0.95rem;
    }

    .review-title {
        font-size: 1.05rem;
        font-weight: 600;
        color: #232323;
        margin: 0 0 8px 0;
    }

    .review-text {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
    }

    .load-more-reviews {
        background: transparent;
        border: 2px solid #E91E63;
        color: #E91E63;
        border-radius: 25px;
        padding: 12px 24px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        align-self: center;
    }

    .load-more-reviews:hover {
        background: #E91E63;
        color: #fff;
    }

    /* Info Section Styles */
    .info-section {
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        margin-bottom: 24px;
        min-width: 31%;
        max-width: 493px;
        flex: 0 0 463px;
    }

    .info-section-title {
        background: linear-gradient(135deg, #AE006D 0%, #D80057 100%);
        border-radius: 24px 24px 0 0;
        color: #fff;
        font-size: 1.65rem;
        font-weight: 700;
        padding: 36px 28px 22px 28px;
        margin-bottom: 0;
        letter-spacing: -0.5px;
    }

    .info-section-content {
        padding: 24px 28px 28px 28px;
    }

    /* Opening Hours Styles */
    .hours-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .hours-row:last-child {
        border-bottom: none;
    }

    .day-name {
        font-size: 1rem;
        font-weight: 500;
        color: #666;
    }

    .hours-time {
        font-size: 1rem;
        font-weight: 500;
        color: #666;
    }

    .hours-time.text-color-2 {
        color: #dc3545;
    }

    /* Business Owner Styles */
    .owner-profile {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
    }

    .owner-avatar {
        width: 50px;
        height: 50px;
        background: #e9ecef;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        overflow: hidden;
    }

    .owner-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .owner-avatar svg {
        width: 24px;
        height: 24px;
    }

    .owner-name {
        font-size: 1.2rem;
        font-weight: 700;
        color: #232323;
        margin-bottom: 4px;
    }

    .owner-services {
        font-size: 0.95rem;
        color: #666;
    }

    .contact-info-owner {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1rem;
        color: #ffffff;
        font-weight: 500;
    }


    .contact-item a {
        color: #E91E63;
        text-decoration: none;
    }

    .contact-item a:hover {
        text-decoration: underline;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
        color: #E91E63;
        flex-shrink: 0;
    }




    /* Action bar for mobile */
    @media (max-width: 600px) {
        .action-bar {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            height: 72px;
            background: #fff;
            box-shadow: 0 -2px 14px rgba(0, 0, 0, 0.12);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 26px;
            z-index: 130;
        }

        .action-bar .price {
            font-size: 1.32rem;
            font-weight: 700;
            color: #232323;
        }

        .action-bar .desc {
            font-size: 0.92rem;
            color: #999;
            margin-left: 6px;
        }

        .action-bar button {
            background: #E92E63;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 13px;
            padding: 12px 32px;
            cursor: pointer;
            box-shadow: 0 1px 7px rgba(233, 46, 99, 0.08);
            margin-left: 16px;
        }
    }

    /* Hide action-bar on desktop */
    @media (min-width: 601px) {
        .action-bar {
            display: none !important;
        }
    }

    /* Responsive */
    @media (max-width: 1100px) {
        .carousel {
            width: 98vw;
            max-width: 500px;
            height: 300px;
        }

        .side-image {
            width: 99vw;
            max-width: 320px;
            height: 128px;
        }

        .side-images {
            min-width: unset;
        }

        .gallery-row {
            gap: 16px;
            justify-content: center;
        }

        main {
            padding: 0px 2vw 0 2vw;
        }

        .section-row {
            flex-direction: column;
            gap: 28px;
            padding: 0 6vw;
        }

        .section-left {
            max-width: 100%;
            min-width: 0;
            border-radius: 16px;
        }

        .section-right {
            background: #fff;
            border-radius: 24px;
            min-width: 100%;
            max-width: 463px;
            flex: 0 0 463px;
        }

        .wellness-card {
            margin: 20px 0;
        }

        .info-section {
            max-width: 100%;
            flex: none;
        }
    }

    @media (max-width: 768px) {
        .side-images {
            display: none;
        }

        .gallery-row {
            flex-direction: column;
            align-items: center;
            height: 400px;
        }

        main {
            /* padding-top: 70px; */
        }

        .section-row {
            flex-direction: column;
            gap: 13px;
            padding: 0 2vw;
        }

        .section-left {
            max-width: 100vw;
            border-radius: 9px;
            padding: 0;
        }

        .location-contact-section {
            margin: 20px -2vw 0 -2vw;
            border-radius: 0;
        }

        .contact-info {
            flex-direction: column;
            gap: 4px;
        }

        .contact-label {
            min-width: unset;
        }

        .location-map {
            height: 250px;
        }

        .services-section,
        .reviews-section {
            margin: 20px -2vw;
            border-radius: 0;
            padding: 24px 4vw;
        }

        .service-card {
            flex-direction: column;
            text-align: center;
            gap: 12px;
        }

        .service-meta {
            justify-content: center;
        }

        .review-header {
            flex-direction: column;
            gap: 12px;
            align-items: flex-start;
        }

        .wellness-header {
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 15px;
        }

        .wellness-rating {
            justify-content: center;
            gap: 8px;
        }

        .wellness-location,
        .wellness-type {
            justify-content: center;
        }

        .wellness-action {
            padding-top: 10px;
        }

        .info-section-title {
            padding: 24px 20px 18px 20px;
            font-size: 1.4rem;
        }

        .info-section-content {
            padding: 20px;
        }
    }

    @media (max-width: 480px) {
        .section-title {
            font-size: 1.3rem;
        }

        .service-card {
            padding: 16px;
        }

        .review-card {
            padding: 16px;
        }

        .wellness-card {
            padding: 15px;
        }

        .wellness-name {
            font-size: 1.1rem;
        }

        .wellness-location,
        .wellness-type {
            font-size: 0.9rem;
        }

        .book-btn {
            padding: 10px 20px;
            font-size: 0.95rem;
        }
    }


    .map-container {
        margin-bottom: 24px;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #e0e0e0;
        min-height: 300px;
        /* Add minimum height */
    }

    .location-map {
        width: 100%;
        height: 300px;
        border: none;
        display: block;
        background: #f5f5f5;
        /* Fallback background */
    }

    /* Ensure Google Maps controls are visible */
    .location-map * {
        box-sizing: content-box;
    }





































    /* booking login form */


    /* Booking Login Form Styles */
    .booking-login-container {
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        min-width: 31%;
        max-width: 495px;
        flex: 0 0 463px;
        padding: 0;
        display: flex;
        flex-direction: column;
        height: fit-content;
    }

    .booking-login-header {
        background: linear-gradient(135deg, #AE006D 0%, #D80057 100%);
        border-radius: 24px 24px 0 0;
        color: #fff;
        padding: 36px 28px 22px 28px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .booking-login-title {
        font-size: 1.65rem;
        font-weight: 700;
        margin: 0;
        letter-spacing: -0.5px;
    }

    .booking-close-btn {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #fff;
        transition: background 0.2s;
    }

    .booking-close-btn:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .booking-close-btn svg {
        width: 18px;
        height: 18px;
    }

    .booking-login-form {
        padding: 28px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .booking-form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .booking-form-label {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
    }

    .booking-input-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }

    .booking-input-icon {
        position: absolute;
        left: 12px;
        width: 20px;
        height: 20px;
        color: #666;
        z-index: 1;
    }

    .booking-form-input {
        width: 100%;
        padding: 12px 12px 12px 45px;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        font-size: 1rem;
        outline: none;
        transition: border-color 0.2s;
        background: #fafbfc;
        box-sizing: border-box;
    }

    .booking-form-input:focus {
        border-color: #9c0264;
        background: #fff;
    }

    .booking-form-input::placeholder {
        color: #999;
    }

    .booking-form-options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 8px 0;
    }

    .booking-checkbox-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }

    .booking-checkbox {
        width: 16px;
        height: 16px;
        accent-color: #AE006D;
    }

    .booking-checkbox-label {
        font-size: 0.95rem;
        color: #666;
    }

    .booking-forgot-password {
        color: #b40149;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.2s;
    }

    .booking-forgot-password:hover {
        color: #ca0252;
    }

    .booking-login-btn {
        background: linear-gradient(135deg, #AE006D 0%, #D80057 100%);
        color: #fff;
        border: none;
        border-radius: 13px;
        padding: 16px 24px;
        font-size: 1.18rem;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: background 0.3s;
        letter-spacing: 0.05rem;
    }

    .booking-login-btn:hover {
        background: linear-gradient(135deg, #c5007d 0%, #e9015e 100%);
    }

    .booking-btn-icon {
        width: 20px;
        height: 20px;
    }

    .booking-form-footer {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 8px;
    }

    .booking-signup-text {
        text-align: center;
        font-size: 0.95rem;
        color: #666;
        margin: 0;
    }

    .booking-signup-link {
        color: #AE006D;
        text-decoration: none;
        font-weight: 600;
    }

    .booking-signup-link:hover {
        color: #9c0264;
    }

    .booking-admin-links {
        display: flex;
        justify-content: space-between;
        gap: 16px;
    }

    .booking-admin-link,
    .booking-company-link {
        color: #AE006D !important;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.2s;
    }

    .booking-admin-link:hover,
    .booking-company-link:hover {
        color: #9c0264;
    }

    /* Responsive */
    @media (max-width: 1100px) {
        .booking-login-container {
            max-width: 100%;
            flex: none;
            margin: 20px 0;
        }
    }

    @media (max-width: 768px) {
        .booking-login-header {
            padding: 24px 20px 18px 20px;
        }

        .booking-login-title {
            font-size: 1.4rem;
        }

        .booking-login-form {
            padding: 20px;
            gap: 16px;
        }

        .booking-form-options {
            flex-direction: column;
            gap: 12px;
            align-items: flex-start;
        }

        .booking-admin-links {
            flex-direction: column;
            gap: 8px;
            text-align: center;
        }
    }











    /* services selection css */


    /* Service Selection Container */
    .service-selection-container {
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        min-width: 31%;
        max-width: 463px;
        flex: 0 0 463px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        height: fit-content;
        gap: 20px;
    }

    .selection-title,
    .overview-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #333;
        margin: 0 0 8px 0;
    }

    .title-underline {
        width: 40px;
        height: 3px;
        background: #E91E63;
        border-radius: 2px;
        margin-bottom: 20px;
    }

    .service-filter {
        margin-bottom: 16px;
    }

    .filter-btn {
        background: #E91E63;
        color: #fff;
        border: none;
        border-radius: 20px;
        padding: 8px 20px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
    }

    .service-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .service-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        background: #fafbfc;
        cursor: pointer;
        transition: all 0.2s;
        position: relative;
    }

    .service-item:hover {
        border-color: #E91E63;
        background: #fff;
    }

    .service-item.selected {
        border-color: #E91E63;
        background: #fdf2f8;
    }

    .service-item.selected::after {
        content: '✓';
        position: absolute;
        top: 8px;
        right: 8px;
        width: 20px;
        height: 20px;
        background: #E91E63;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
    }

    .service-icon-container {
        width: 40px;
        height: 40px;
        background: #4ECDC4;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .service-icon-svg {
        width: 20px;
        height: 20px;
        color: #fff;
    }

    .service-details {
        flex: 1;
    }

    .service-name {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        margin: 0 0 4px 0;
    }

    .service-meta {
        display: flex;
        gap: 12px;
        font-size: 0.85rem;
        color: #666;
    }

    .service-price {
        font-size: 1.1rem;
        font-weight: 700;
        color: #333;
    }

    .booking-details {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

    .detail-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .detail-label {
        font-weight: 500;
        color: #666;
    }

    .detail-value {
        font-weight: 500;
        color: #333;
    }

    .selected-services {
        margin-bottom: 20px;
    }

    .selected-service {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px;
        background: #fdf2f8;
        border-radius: 8px;
        margin-bottom: 8px;
        border: 1px solid #E91E63;
    }

    .service-info {
        flex: 1;
    }

    .service-info h4 {
        font-size: 0.95rem;
        font-weight: 600;
        color: #333;
        margin: 0 0 4px 0;
    }

    .service-info p {
        font-size: 0.8rem;
        color: #666;
        margin: 0;
    }

    .service-cost {
        font-weight: 600;
        color: #E91E63;
        margin-right: 8px;
    }

    .total-section {
        border-top: 2px solid #e9ecef;
        padding-top: 16px;
    }

    .total-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .total-label {
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
    }

    .total-amount {
        font-size: 1.2rem;
        font-weight: 700;
        color: #E91E63;
    }

    .continue-btn {
        background: #E91E63;
        color: #fff;
        border: none;
        border-radius: 13px;
        padding: 14px 24px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        width: 100%;
        transition: background 0.2s;
    }

    .continue-btn:hover {
        background: #C2185B;
    }

    .continue-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

    /* Time & Location Container */
    .time-location-container {
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        min-width: 31%;
        max-width: 463px;
        flex: 0 0 463px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        height: fit-content;
        gap: 20px;
    }

    .form-fields {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .form-field {
        position: relative;
    }

    .date-input {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        font-size: 1rem;
        outline: none;
        transition: border-color 0.2s;
        background: #fafbfc;
        box-sizing: border-box;
    }

    .date-input:focus {
        border-color: #E91E63;
        background: #fff;
    }

    .time-select,
    .location-select {
        width: 100%;
        padding: 12px 40px 12px 16px;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        font-size: 1rem;
        outline: none;
        transition: border-color 0.2s;
        background: #fafbfc;
        appearance: none;
        cursor: pointer;
        box-sizing: border-box;
    }

    .time-select:disabled {
        background: #f5f5f5;
        color: #999;
        cursor: not-allowed;
    }

    .time-select:focus,
    .location-select:focus {
        border-color: #E91E63;
        background: #fff;
    }

    .dropdown-icon {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        color: #666;
        pointer-events: none;
    }

    .address-select {
        width: 100%;
        padding: 12px 40px 12px 16px;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        font-size: 1rem;
        outline: none;
        transition: border-color 0.2s;
        background: #fafbfc;
        appearance: none;
        cursor: pointer;
        box-sizing: border-box;
        color: #999;
    }

    .address-select:focus {
        border-color: #E91E63;
        background: #fff;
    }

    .address-select option {
        color: #333;
    }

    .booking-actions-nav {
        display: flex;
        gap: 12px;
        margin-top: auto;
    }

    .previous-btn,
    .next-btn {
        flex: 1;
        padding: 14px 24px;
        border: none;
        border-radius: 13px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
    }

    .previous-btn {
        background: transparent;
        border: 2px solid #E91E63;
        color: #E91E63;
    }

    .previous-btn:hover {
        background: #E91E63;
        color: #fff;
    }

    .next-btn {
        background: #E91E63;
        color: #fff;
    }

    .next-btn:hover {
        background: #C2185B;
    }

    .next-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

    .no-employees-message {
        text-align: center;
        padding: 60px 20px;
        background: #fafafa;
        border-radius: 20px;
        margin: 20px 0;
    }

    .no-employees-icon {
        margin-bottom: 20px;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 1;
        }

        50% {
            transform: scale(1.05);
            opacity: 0.8;
        }
    }

    /* Staff Selection Container */
    .staff-selection-container {
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        min-width: 31%;
        max-width: 463px;
        flex: 0 0 463px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        height: fit-content;
        gap: 20px;
    }

    .staff-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .staff-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        background: #fafbfc;
        cursor: pointer;
        transition: all 0.2s;
        position: relative;
    }

    .staff-item:hover {
        border-color: #E91E63;
        background: #fff;
    }

    .staff-item.selected {
        border-color: #E91E63;
        background: #fdf2f8;
    }

    .staff-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #e9ecef;
        flex-shrink: 0;
    }

    .staff-avatar .emoji {
        font-size: 24px;
    }

    .staff-info {
        flex: 1;
    }

    .staff-name {
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
        margin: 0;
    }

    .staff-check {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #E91E63;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.2s;
    }

    .staff-item.selected .staff-check {
        opacity: 1;
    }

    .check-icon {
        width: 14px;
        height: 14px;
        color: white;
    }

    /* Discount Code Container */
    .discount-code-container {
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        min-width: 31%;
        max-width: 463px;
        flex: 0 0 463px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        height: fit-content;
        gap: 20px;
    }

    .discount-form {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 1rem;
    }

    .discount-input-wrapper {
        display: flex;
        gap: 0;
        border-radius: 8px;
        overflow: hidden;
        border: 2px solid #e9ecef;
        transition: border-color 0.2s;
    }

    .discount-input-wrapper:focus-within {
        border-color: #E91E63;
    }

    .discount-input {
        flex: 1;
        padding: 12px 16px;
        border: none;
        font-size: 1rem;
        outline: none;
        background: #fafbfc;
        box-sizing: border-box;
    }

    .discount-input:focus {
        background: #fff;
    }

    .discount-input::placeholder {
        color: #999;
    }

    .apply-btn {
        background: #E91E63;
        color: #fff;
        border: none;
        padding: 12px 20px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: background 0.2s;
        white-space: nowrap;
    }

    .apply-btn:hover {
        background: #C2185B;
    }

    .arrow-icon {
        width: 16px;
        height: 16px;
    }

    .discount-message {
        padding: 16px;
        border-radius: 8px;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
    }

    .no-codes-text {
        color: #999;
        font-size: 0.95rem;
    }

    .success-message {
        color: #28a745;
        background: #d4edda;
        border-color: #c3e6cb;
    }

    .error-message {
        color: #dc3545;
        background: #f8d7da;
        border-color: #f5c6cb;
    }

    .discount-section {
        border-top: 1px solid #e9ecef;
        padding-top: 12px;
        margin-bottom: 8px;
    }

    .discount-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .discount-label {
        font-size: 1rem;
        font-weight: 500;
        color: #666;
    }

    .discount-amount {
        font-size: 1.1rem;
        font-weight: 600;
        color: #28a745;
    }

    /* Payment Method Container */
    .payment-method-container {
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        min-width: 31%;
        max-width: 463px;
        flex: 0 0 463px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        height: fit-content;
        gap: 20px;
    }

    .payment-options {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .payment-option {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        background: #fafbfc;
        cursor: pointer;
        transition: all 0.2s;
    }

    .payment-option:hover {
        border-color: #E91E63;
        background: #fff;
    }

    .payment-option.active {
        border-color: #E91E63;
        background: #fdf2f8;
    }

    .payment-radio {
        position: relative;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .payment-radio input[type="radio"] {
        opacity: 0;
        position: absolute;
        width: 20px;
        height: 20px;
        margin: 0;
        cursor: pointer;
    }

    .radio-circle {
        width: 20px;
        height: 20px;
        border: 2px solid #ccc;
        border-radius: 50%;
        display: inline-block;
        position: relative;
        transition: all 0.2s;
    }

    .payment-option.active .radio-circle {
        border-color: #E91E63;
        background: #E91E63;
    }

    .payment-option.active .radio-circle::after {
        content: '';
        width: 8px;
        height: 8px;
        background: white;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .payment-details {
        flex: 1;
    }

    .payment-name {
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
        margin: 0 0 8px 0;
    }

    .payment-description {
        font-size: 0.95rem;
        color: #666;
        margin: 0;
        line-height: 1.4;
    }

    .send-btn {
        flex: 1;
        background: #E91E63;
        color: #fff;
        border: none;
        border-radius: 13px;
        padding: 14px 24px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s;
    }

    .send-btn:hover {
        background: #C2185B;
    }

    /* Responsive */
    @media (max-width: 1100px) {

        .service-selection-container,
        .time-location-container,
        .staff-selection-container,
        .discount-code-container,
        .payment-method-container {
            max-width: 100%;
            flex: none;
            margin: 20px 0;
        }
    }

    @media (max-width: 768px) {

        .service-selection-container,
        .time-location-container,
        .staff-selection-container,
        .discount-code-container,
        .payment-method-container {
            padding: 16px;
        }

        .booking-actions-nav {
            flex-direction: column;
        }

        .service-meta {
            flex-direction: column;
            gap: 4px;
        }
    }








    /* Registration Form Error States */
    #RegisterForm input.is-invalid {
        border-color: #dc3545 !important;
        background-color: #fff5f5;
    }

    #RegisterForm input.is-invalid:focus {
        border-color: #dc3545 !important;
        box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
    }

    .invalid-div {
        display: block;
        margin-top: 5px;
        min-height: 20px;
    }

    .invalid-div span {
        font-size: 13px;
        display: block;
    }

    /* Success state */
    #RegisterForm input.is-valid {
        border-color: #28a745 !important;
        background-color: #f0fff4;
    }

    /* Registration Button States */
    .register-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .register-btn .formloader {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }


    /* ============================================
    SWEETALERT MODAL POSITIONING FIX
    ============================================ */

    /* Ensure SweetAlert appears centered and above registration modal */
    /* SweetAlert centered positioning */
    .swal2-container {
        z-index: 10000 !important;
    }

    .swal2-popup {
        margin: 0 auto !important;
    }

    /* When registration modal is open */
    body.modal-open .swal2-container {
        z-index: 10000 !important;
    }

    body.modal-open .swal2-popup {
        margin: 0 auto !important;
    }

    /* Backdrop for SweetAlert */
    .swal2-container.swal2-backdrop-show {
        background: rgba(0, 0, 0, 0.6) !important;
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
        .swal2-popup {
            width: 95% !important;
            padding: 1.5em !important;
        }
    }





















    /* ULTRA-FLEXIBLE LOGO SYSTEM */
    .navbar-logo {
        /* Use max values instead of fixed values */
        max-height: 50px;
        max-width: 220px;

        /* Let it scale automatically */
        height: auto;
        width: auto;

        /* Maintain aspect ratio */
        object-fit: contain;

        /* Center it */
        display: block;

        /* Smooth transitions */
        transition: all 0.3s ease;
    }

    /* Container to prevent overflow */
    .logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 8px 0;
        min-width: 60px;
        max-width: 250px;
        /* Prevent extremely wide logos */
    }


    .logo a {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    /* Adjust for different logo types automatically */
    @media (min-aspect-ratio: 2/1) {

        /* Wide logos (like text-based) */
        .navbar-logo {
            max-width: 162px;
            max-height: 25px;
        }
    }

    @media (max-aspect-ratio: 1/1) {

        /* Square or tall logos (like icons) */
        .navbar-logo {
            max-width: 50px;
            max-height: 50px;
        }
    }







    /* ============================================
    NAVBAR ICON DROPDOWNS
    ============================================ */

    /* Icon dropdown styling */
    .nav-icon-dropdown {
        position: relative;
        display: inline-block;
    }

    .nav-icon-link {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        transition: all 0.3s ease;
        padding: 0 !important;
    }

    .nav-icon-link:hover {
        background: rgba(233, 30, 99, 0.1);
    }

    .navbar.white-nav .nav-icon-link:hover {
        background: rgba(233, 30, 99, 0.1);
    }

    /* Icon dropdown content */
    .icon-dropdown-content {
        min-width: 191px !important;
        padding: 8px 0;
    }

    .icon-dropdown-content a {
        display: flex !important;
        align-items: center;
        gap: 12px;
        padding: 12px 16px !important;
    }

    .icon-dropdown-content a svg {
        flex-shrink: 0;
        color: #666;
    }

    .icon-dropdown-content a:hover svg {
        color: #e91e63;
    }

    /* Contact dropdown items */
    .dropdown-contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .dropdown-contact-item span {
        font-size: 13px;
    }

    /* User dropdown header */
    .dropdown-user-header {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 4px;
    }

    .dropdown-user-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        object-fit: cover;
    }

    .dropdown-user-name {
        font-size: 14px;
        font-weight: 600;
        color: #333;
    }

    /* Adjust nav-right spacing */
    .nav-right {
        display: flex;
        gap: 8px !important;
        align-items: center;
        margin-left: 7rem !important;
    }

    /* User avatar in navbar */
    .nav-icon-link .user-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0;
    }

    .nav-icon-link svg {
        stroke: white;
        transition: stroke 0.25s ease;
    }

    /* White navbar adjustments for icons */
    .navbar.white-nav .nav-icon-link svg {
        stroke: #333;
    }

    /* Icon dropdown hover effect */
    .nav-icon-dropdown:hover .icon-dropdown-content {
        display: block;
    }


    /* Responsive adjustments */
    @media (max-width: 1400px) and (min-width: 1101px) {
        .nav-container.with-search {
            gap: 10px;
        }

        .nav-right {
            gap: 12px !important;
        }

        .nav-icon-link {
            width: 32px;
            height: 32px;
        }

        .nav-icon-link svg {
            width: 18px;
            height: 18px;
        }

        .nav-search-container {
            max-width: 600px;
        }

        .nav-search-icon {
            width: 16px;
            height: 16px;
        }

        .nav-input {
            padding: 4px 12px 4px 25px;
            font-size: 14px;
        }
    }

    @media (max-width: 1300px) and (min-width: 1101px) {
        .icon-dropdown-content {
            min-width: 200px !important;
        }

        .icon-dropdown-content a {
            font-size: 13px;
            padding: 10px 14px !important;
        }
    }

    @media (max-width: 1250px) and (min-width: 1101px) {
        .nav-container.with-search {
            gap: 25px;
        }

        .nav-right {
            gap: 10px !important;
        }

        .nav-search-container {
            max-width: 500px;
        }
    }

    /* Hide icons on mobile - bottom nav handles this */
    @media (max-width: 1100px) {
        .nav-icon-dropdown {
            display: none;
        }

        .nav-container {
            display: none;
        }

        .navbar {
            display: none;
        }
    }










    /* Active state for icon dropdowns */
    .nav-icon-dropdown.active .icon-dropdown-content {
        display: block !important;
    }

    .nav-icon-dropdown .icon-dropdown-content {
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-icon-dropdown:hover .icon-dropdown-content,
    .nav-icon-dropdown.active .icon-dropdown-content {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        top: calc(100% + 1px);
        left: -228%;
    }















    /* ============================================
   BREADCRUMB - MATCHING IMAGE EXACTLY
   ============================================ */

    .booking-breadcrumb {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
        padding: 0;

        background: transparent;
    }

    .breadcrumb-step {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        border-radius: 25px;
        background: #f8f9fa;
        border: none;
        transition: all 0.3s ease;
        color: #999;
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 10;
    }

    .breadcrumb-step.active {
        background: linear-gradient(135deg, #E91E63 0%, #D80057 100%);
        color: white;
    }

    .breadcrumb-step.active span {
        display: inline;
    }

    .breadcrumb-step span {
        display: none;
        font-weight: 600;
        font-size: 15px;
    }

    .breadcrumb-step svg {
        width: 18px;
        height: 18px;
        stroke-width: 2;
    }

    .breadcrumb-like {
        margin-left: auto;
        padding: 10px 15px;
        font-size: 14px;
        color: #666;
        font-weight: 500;
    }

    /* Calendar Container - Clean Design */
    .calendar-container {
        background: #fff;
        border-radius: 16px;
        padding: 25px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .calendar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .calendar-month {
        font-size: 1.4rem;
        font-weight: 700;
        color: #333;
        margin: 0;
    }

    .calendar-nav-btn {
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: background 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .calendar-nav-btn:hover {
        background: #f8f9fa;
    }

    .calendar-nav-btn svg {
        color: #333;
        stroke-width: 2.5;
    }

    /* Weekdays */
    .calendar-weekdays {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 8px;
        margin-bottom: 15px;
    }

    .weekday {
        text-align: center;
        font-size: 13px;
        font-weight: 600;
        color: #999;
        padding: 10px 0;
        text-transform: lowercase;
    }

    /* Calendar Days Grid */
    .calendar-days {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 8px;
    }

    /* Calendar day base */
    .calendar-day {
        aspect-ratio: 1;
        border: none;
        background: transparent;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        color: #333;
        cursor: pointer;
        transition: all 0.2s;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    /* Empty, past, closed days */
    .calendar-day.empty {
        cursor: default;
        pointer-events: none;
    }

    .calendar-day.past,
    .calendar-day.closed {
        color: #d0d0d0;
        text-decoration: line-through;
        cursor: not-allowed;
        background: transparent;
    }

    /* Available days */
    .calendar-day.available {
        color: #4CAF50;
    }

    .calendar-day.available:hover {
        background: rgba(76, 175, 80, 0.1);
        transform: scale(1.08);
    }


    /* Orange colored days (partly available) */
    .calendar-day.orange {
        color: #FF9800;
    }

    .calendar-day.orange:hover {
        background: rgba(255, 152, 0, 0.1);
        transform: scale(1.08);
    }

    /* Selected date - Pink background, NO border ever */
    .calendar-day.selected {
        background: #E91E63 !important;
        color: white !important;
        transform: scale(1.08);
        border: none !important;
    }

    .calendar-day.selected:hover {
        background: #E91E63 !important;
        color: white !important;
    }


    /* Remove today's border when selected */
    .calendar-day.today.selected {
        border: none !important;
        /* Completely remove border */
    }


    /* Today - will have border set by JS when not selected */
    .calendar-day.today {
        /* Border added dynamically by JavaScript */
    }

    /* Today */
    .calendar-day.today {
        border: 2px solid #E91E63;
    }

    /* Remove legend completely */
    .calendar-legend {
        display: none;
    }

    /* Time Slots Container */
    .time-slots-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 12px;
        padding: 20px 0;
    }

    .time-slot {
        padding: 14px 20px;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        background: #fafbfc;
        cursor: pointer;
        transition: all 0.2s;
        text-align: center;
        font-weight: 600;
        font-size: 15px;
        color: #333;
    }

    .time-slot:hover {
        border-color: #E91E63;
        background: #fff;
    }

    .time-slot.selected {
        border-color: #E91E63;
        background: #fdf2f8;
        color: #E91E63;
    }

    .time-slot.disabled {
        background: #f5f5f5;
        color: #ccc;
        cursor: not-allowed;
        text-decoration: line-through;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .booking-breadcrumb {
            padding: 15px;
            gap: 8px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .breadcrumb-step {
            padding: 8px 12px;
            flex-shrink: 0;
        }

        .breadcrumb-like {
            display: none;
        }

        .calendar-container {
            padding: 15px;
        }

        .calendar-month {
            font-size: 1.1rem;
        }

        .calendar-days {
            gap: 6px;
        }

        .calendar-day {
            font-size: 14px;
        }

        .time-slots-container {
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .time-slot {
            padding: 12px 16px;
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .breadcrumb-step span {
            display: none !important;
        }
    }


    /* Available days - Only Green color */
    .calendar-day.available {
        color: #4CAF50;
    }

    .calendar-day.available:hover {
        background: rgba(76, 175, 80, 0.1);
        transform: scale(1.08);
    }

    /* Remove orange color class completely */
    .calendar-day.orange {
        display: none;
    }


    /* Shake animation */
    @keyframes shake {

        0%,
        100% {
            transform: translateX(0);
        }

        10%,
        30%,
        50%,
        70%,
        90% {
            transform: translateX(-10px);
        }

        20%,
        40%,
        60%,
        80% {
            transform: translateX(10px);
        }
    }



















    /* ============================================
   UPDATED HERO SEARCH BAR - SINGLE FIELD
   ============================================ */

    /* Video Top Bar with Rating and Logo */
    .video-top-bar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 19px 20px;
        z-index: 3;
    }

    /* Rating on Left */
    .video-top-bar .rating {
        position: static;
        margin: 0;
        background: transparent;
        border-radius: 0;
    }

    /* Logo on Right */
    .hero-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-logo svg {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }

    /* Center Content Adjustments */
    .hero-center-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: end;
        text-align: center;
        width: 100%;
        max-width: 960px;
        margin: 0 auto 0rem;
    }

    /* Simple Search Wrapper - Single Field */
    .simple-search-wrapper {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
        width: 100%;
        max-width: 730px;
        margin: 0 auto;
    }



    /* Search Icon on Left */
    .simple-search-wrapper::before {
        content: '';
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='M21 21l-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 1;
        pointer-events: none;
    }

    .search-input-simple {
        flex: 1;
        border: none;
        padding: 13px 21px 13px 37px;
        font-size: 16px;
        color: #333;
        background: transparent;
        min-width: 0;
        outline: none;
    }

    .search-input-simple::placeholder {
        color: #999;
    }

    .search-btn-simple {
        background: #e91e63;
        color: white;
        border: none;
        padding: 8px 21px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3sease;
        border-radius: 50px;
        flex-shrink: 0;
        white-space: nowrap;
        margin: 0 8px;
    }

    .search-btn-simple:hover {
        background: #c2185b;
    }


    /* Mobile Search */
    @media (max-width: 992px) {
        .video-top-bar {
            padding: 20px 15px;
        }

        .hero-logo svg {
            width: 32px;
            height: 32px;
        }

        .simple-search-wrapper {
            max-width: 100%;
        }

        .simple-search-wrapper::before {
            left: 12px;
            width: 16px;
            height: 16px;
        }

        .search-input-simple {
            padding: 15px 20px 15px 33px;
            font-size: 15px;
        }

        .search-btn-simple {
            padding: 8px 16px;
            font-size: 15px;
        }
    }


    @media (max-width: 480px) {
        .video-top-bar {
            flex-direction: column;
            gap: 15px;
            align-items: flex-start;
        }

        .hero-logo {
            align-self: flex-end;
        }

        .simple-search-wrapper {
            flex-direction: row;
        }

        .simple-search-wrapper::before {
            left: 15px;
            width: 16px;
            height: 16px;
        }

        .search-input-simple {
            padding: 13px 40px;
            font-size: 14px;
        }

        .search-btn-simple {
            padding: 8px 12px;
            font-size: 14px;
        }
    }














    /* ============================================
   FULL SCREEN IMAGE MODAL - FIXED
   ============================================ */

    .image-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        z-index: 10000;
        opacity: 0;
        transition: opacity 0.3s ease;
        overflow: hidden;
        /* Prevent scrollbar */
    }

    .image-modal.active {
        display: flex;
        opacity: 1;
    }

    /* Hide scrollbar when modal is open */
    body.modal-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    .modal-close-btn {
        position: fixed;
        top: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10002;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .modal-close-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    .modal-close-btn svg {
        stroke: white;
        stroke-width: 2.5;
    }

    .modal-image-container {
        display: flex;
        /* align-items: center; */
        justify-content: center;
        width: 100%;
        height: 100%;
        padding: 80px 80px;
        position: relative;
    }

    .modal-image-container img {
        max-width: 95%;
        max-height: 95%;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    }

    /* REMOVE Navigation Arrows - They are hidden now */
    .modal-nav-btn {
        display: none !important;
    }


    /* Hover effect on gallery images */
    .gallery-image {
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .gallery-image:hover {
        opacity: 0.8;
        transform: scale(1.02);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .modal-close-btn {
            top: 15px;
            left: 15px;
            width: 42px;
            height: 42px;
        }

        .modal-image-container {
            padding: 70px 20px;
        }

        .modal-image-container img {
            max-width: 90%;
            max-height: 90%;
        }
    }

    @media (max-width: 480px) {
        .modal-close-btn {
            width: 38px;
            height: 38px;
            top: 10px;
            left: 10px;
        }

        .modal-image-container {
            padding: 60px 15px;
        }

        .modal-image-container img {
            max-width: 85%;
            max-height: 85%;
        }

    }














    /* ============================================
   IMAGE CAROUSEL STYLES FOR VENUE CARDS
   ============================================ */

    .venue-images-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .venue-main-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        overflow: hidden;
        /* transform: translateX(100%); */
        transition: transform 0.4s ease;
        pointer-events: none;
    }

    .venue-main-image.active-image {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
        z-index: 2;
    }


    .venue-main-image.slide-out-left {
        transform: translateX(-100%);
        opacity: 0;
    }

    .venue-main-image.slide-out-right {
        transform: translateX(100%);
        opacity: 0;
    }

    /* Navigation Arrows */
    .carousel-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.95);
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex !important;
        /* Force flex display */
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 20;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        opacity: 0;
        /* Hidden by default */
        visibility: hidden;
        pointer-events: none;
    }

    /* Show arrows on hover - ONLY if they have show-arrow class */
    .venue-image-container:hover .carousel-nav-btn.show-arrow {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;


    }

    .venue-image-container:hover {
        cursor: pointer;
    }

    .carousel-nav-btn:hover {
        background: white;
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    /* Style the SVG arrows */
    .carousel-nav-btn svg {
        fill: #333;
        transition: fill 0.2s ease;
        display: block;
    }


    /* .carousel-nav-btn:hover svg {
    fill: #AE006D;
} */

    /* Dots Indicator - Smaller and cleaner */
    .carousel-dots {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 5px;
        align-items: center;
        z-index: 10;
        padding: 4px 8px;
        /* background: rgba(0, 0, 0, 0.25); */
        border-radius: 12px;
        /* backdrop-filter: blur(4px); */
    }

    .carousel-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        cursor: pointer;
        /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); Smooth easing */
        border: none;
        flex-shrink: 0;
    }

    .carousel-dot:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: scale(1.2);
    }

    .carousel-dot.active-dot {
        background: white;
        width: 8px;
        height: 8px;
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
    }

    /* Mobile Adjustments */
    @media (max-width: 768px) {
        .carousel-nav-btn {
            width: 28px;
            height: 28px;
        }

        /* Always show on mobile if has show-arrow class */
        .carousel-nav-btn.show-arrow {
            opacity: 1 !important;
            visibility: visible !important;
            pointer-events: auto !important;
        }

        .carousel-prev {
            left: 8px;
        }

        .carousel-next {
            right: 8px;
        }

        .carousel-dots {
            bottom: 8px;
            padding: 3px 6px;
            gap: 4px;
        }

        .carousel-dot {
            width: 5px;
            height: 5px;
        }

        .carousel-dot.active-dot {
            width: 7px;
            height: 7px;
        }
    }


/* Range Time Slider For Booking */

/* Wrapper */
.gear-slider-wrap {
  position: relative;
  width: 100%;
}

/* Slider container */
.gear-slider {
  position: relative;
  padding: 0 10px;
}

/* Tooltip (reusing your .range-tooltip style) */
.range-tooltip {
  position: absolute;
  top: -45px;
  left: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transform: translateX(-50%);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  transition: left 0.15s ease;
}

.range-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #764ba2;
}

/* Range inputs (shared with your fancy range) */
.form-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right,
      #e0e7ff 0%,
      #667eea 0%,
      #667eea 50%,
      #e0e7ff 50%);
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
  pointer-events: none; /* stacked inputs */
  position: absolute;
  top: 25px;
}

.form-range:hover {
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Thumb styling (same as fancyRange) */
.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 3px solid white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  transition: all 0.2s ease;
  pointer-events: all;
}

.form-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
}

.form-range::-webkit-slider-thumb:active {
  transform: scale(1.05);
}

/* Firefox */
.form-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 3px solid white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  transition: all 0.2s ease;
  pointer-events: all;
}

/* Range labels */
.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding: 0 2px;
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}



.no-employees-message {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #fef5f8 0%, #fff0f5 100%);
    border-radius: 20px;
    margin: 20px 0;
    border: 2px dashed #e91e63;
}

.no-employees-icon {
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.no-employees-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.no-employees-message p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.btn-browse-businesses {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-browse-businesses:hover {
    background: linear-gradient(135deg, #c2185b 0%, #ad1457 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    color: white !important;
}

.guest-selection-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

/* Guests step styling */
.guest-selection-container .booking-content {
    width: 100%;
}
.guest-selection-container .booking-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}
.guest-selection-container .detail-row { display: flex; flex-direction: column; }
.guest-selection-container .guest-header-row {
    margin: 12px 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.guest-selection-container .guest-max-text { color: #6b7280; font-size: 12px; }
.guest-groups { border-top: 1px solid #eee; }
.guest-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.guest-group-title { font-weight: 600; }
.guest-counter { display: inline-flex; align-items: center; gap: 16px; }
.guest-minus, .guest-plus {
    width: 40px; height: 40px; border-radius: 9999px;
    border: none; background: #f3f4f6; color: #374151; font-size: 20px;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: inset 0 0 0 1px #e5e7eb; cursor: pointer;
}
.guest-minus:disabled, .guest-plus:disabled { opacity: .4; cursor: not-allowed; }
.guest-count { min-width: 20px; text-align: center; font-weight: 600; }

/* Stack navigation buttons only on Guests step */
.guest-selection-container .booking-actions-nav { display: flex; flex-direction: column; gap: 10px; }
.guest-selection-container .booking-actions-nav .previous-btn,
.guest-selection-container .booking-actions-nav .next-btn { width: 100%; }

@media (max-width: 1024px) {
    .guest-selection-container {
        padding: 20px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .guest-selection-container {
        padding: 18px;
        gap: 18px;
    }

    .guest-selection-container .booking-details {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .guest-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .guest-counter { justify-content: space-between; }
}