.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: var(--header-height);
        background: white;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        z-index: 2000;
        border-bottom: 1px solid rgba(64, 145, 108, 0.1);
    }

    .navbar {
        padding: 0 2rem;
        height: 100%;
    }

    .logo {
        height: 45px;
        transition: transform 0.3s, filter 0.3s;
        border-radius: 50%;
        overflow: hidden;
    }

    .logo:hover {
        transform: translateY(-2px) scale(1.05);
    }

    .nav-link {
        color: var(--primary-dark) !important;
        padding: 8px 20px !important;
        margin: 0 4px;
        transition: all 0.3s;
        background: transparent;
        border: 1px solid rgba(64, 145, 108, 0.2);
        border-radius: 8px;
        font-weight: 500;
    }

    .nav-link:hover {
        transform: translateY(-2px);
        border-color: var(--highlight);
        background: rgba(77, 147, 112, 0.05);
        box-shadow: 0 4px 12px rgba(77, 147, 112, 0.15);
    }

    /* Search Trigger aligned to right */
    .search-trigger {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 7px 14px !important;
        border: 1px solid rgba(64, 145, 108, 0.2);
        border-radius: 8px;
        color: var(--primary-dark);
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-right: 6px;
    }

    .search-trigger:hover {
        background: rgba(77, 147, 112, 0.2);
        transform: scale(1.05);
    }

    .search-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
        z-index: 3000;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .search-overlay.active {
        display: flex;
        align-items: start;
        padding-top: 4rem;
        justify-content: center;
        opacity: 1;
    }

    .search-modal {
        position: relative;
        width: 90%;
        max-width: 600px;
        transform: scale(0.9);
        transition: transform 0.3s ease;
    }

    .search-overlay.active .search-modal {
        transform: scale(1);
    }

    .search-modal-input {
        width: 100%;
        padding: 20px 60px 20px 24px;
        border-radius: 12px;
        font-size: 1.2rem;
        transition: all 0.3s;
    }

    .search-modal-input:focus {
        outline: none;
        box-shadow: 0 12px 40px rgba(64, 145, 108, 0.4);
        border: none;
    }

    .btn-search-modal {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--highlight);
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 10px;
        font-size: 1.2rem;
        transition: all 0.3s;
    }

    .btn-search-modal:hover {
        background: var(--secondary-accent);
        transform: translateY(-50%) scale(1.05);
    }

    .close-search {
        position: absolute;
        top: -50px;
        right: 0;
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        opacity: 0.7;
        transition: opacity 0.3s;
    }

    .close-search:hover {
        opacity: 1;
    }

    .autocomplete-results {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        margin-top: -10px;
        max-height: 300px;
        overflow-y: auto;
    }

    .autocomplete-item {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(13, 36, 27, 0.1);
        color: var(--primary-dark);
        text-decoration: none;
        transition: all 0.2s;
    }

    .autocomplete-item:hover {
        background: rgba(77, 147, 112, 0.05);
    }

    .ac-event-name {
        font-weight: 600;
        margin-bottom: 0.3rem;
    }

    .ac-event-details {
        display: flex;
        justify-content: space-between;
        font-size: 0.9rem;
        color: var(--primary-accent);
    }

    /* Loading and empty states */
    .no-results {
        padding: 1rem;
        text-align: center;
        color: var(--primary-accent);
        font-style: italic;
    }

    .loading-spinner {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem;
    }

    .spinner {
        width: 20px;
        height: 20px;
        border: 2px solid rgba(77, 147, 112, 0.3);
        border-radius: 50%;
        border-top-color: var(--highlight);
        animation: spin 1s ease-in-out infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    @media (max-width: 991px) {
        .header {
            border-radius: 0;
        }

        .navbar-collapse {
            background: white;
            padding: 1rem;
            margin-top: 12px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .nav-link {
            margin: 8px 5px;
            text-align: center;
            padding: 12px !important;
            width: 100%;
            max-width: 280px;
        }

        .search-trigger {
            margin: 8px auto;
            width: 100%;
            max-width: 280px;
        }
    }

    #categoryNavbar {
        align-items: center;
    }

    #categoryNavbar .nav-item {
        position: relative;
    }

    #categoryNavbar .nav-link {
        border: none !important;
        background: transparent !important;
        padding: 8px 10px !important;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
    }

    #categoryNavbar .chevron {
        font-size: 0.7rem;
        transition: transform 0.25s ease;
        opacity: 0.7;
    }

    #categoryNavbar .nav-link:hover .chevron {
        transform: rotate(180deg);
        opacity: 1;
    }

    #categoryNavbar .nav-link:hover {
        box-shadow: none !important;
        background: rgba(77, 147, 112, 0.08);
    }

    .category-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        min-width: 220px;
        border-radius: 10px;
        padding: 8px 0;
        display: none;
        z-index: 3000;
    }

    .nav-item:hover .category-dropdown {
        display: block;
    }

    .country-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 14px;
        cursor: pointer;
        transition: background 0.2s ease;
        white-space: nowrap;
    }

    .country-item:hover {
        background: rgba(77, 147, 112, 0.08);
    }

    .country-flag {
        width: 22px;
        height: 16px;
        object-fit: cover;
        border-radius: 2px;
    }

    .country-submenu {
        position: absolute;
        top: 0;
        left: 100%;
        width: 340px;
        background: #ffffff;
        border-radius: 12px;
        /* box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15); */
        padding: 14px 16px;
        display: none;
    }

    .country-item:hover .country-submenu {
        display: block;
    }

    .submenu-section {
        margin-bottom: 14px;
    }

    .submenu-section:last-child {
        margin-bottom: 0;
    }

    .submenu-title {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #6c757d;
        margin-bottom: 8px;
    }

    .submenu-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .submenu-item {
        padding: 6px 10px;
        border-radius: 6px;
        font-size: 0.9rem;
        cursor: pointer;
        transition: background 0.2s ease, transform 0.15s ease;
    }

    .submenu-item:hover {
        background: rgba(77, 147, 112, 0.1);
        transform: translateX(3px);
    }


    .country-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 14px;
        cursor: pointer;
        transition: background 0.2s ease;
        white-space: nowrap;
    }

    .country-name {
        flex: 1;
    }

    .country-arrow {
        font-size: 0.75rem;
        opacity: 0.5;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .country-item:hover .country-arrow {
        transform: translateX(3px);
        opacity: 1;
    }
