/* ============================================
           MOBILE NAVBAR FIX - Centered & Proper Gap
           ============================================ */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: #ffffff;
                padding: 20px 0;
                border-top: 1px solid #eee;
                margin-top: 10px;
            }
            
            .navbar-nav {
                align-items: center !important;
                text-align: center;
            }
            
            .navbar-nav .nav-item {
                width: 100%;
                margin: 0 !important;
                padding: 0;
            }
            
            .navbar-nav .nav-link {
                padding: 12px 20px !important;
                font-size: 16px;
                font-weight: 500;
                border-bottom: 1px solid #f0f0f0;
                display: block;
                text-align: center;
                color: #333;
                transition: all 0.3s ease;
            }
            
            .navbar-nav .nav-link:hover,
            .navbar-nav .nav-link.active {
                background: #f0f4ff;
                color: #0d6efd;
            }
            
            .navbar-nav .nav-item:last-child .nav-link {
                border-bottom: none;
            }
            
            .navbar-nav .btn {
                width: 80%;
                margin: 8px auto !important;
                display: block;
                text-align: center;
                padding: 10px 20px !important;
                font-size: 15px;
                border-radius: 8px;
            }
            
            .navbar-nav .nav-item.ms-lg-3,
            .navbar-nav .nav-item.ms-2 {
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        }

        /* ============================================
           SEARCH AUTOCOMPLETE / SUGGESTIONS STYLES
           ============================================ */
        .search-wrapper {
            position: relative;
            width: 100%;
        }

        .search-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #ffffff;
            border-radius: 0 0 16px 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            z-index: 9999;
            max-height: 380px;
            overflow-y: auto;
            display: none;
            border-top: 2px solid #0d6efd;
        }

        .search-suggestions.active {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .suggestion-header {
            padding: 12px 20px 8px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #6c757d;
            background: #f8f9fa;
            border-bottom: 1px solid #eee;
        }

        .suggestion-item {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            cursor: pointer;
            transition: all 0.2s ease;
            border-bottom: 1px solid #f5f5f5;
            text-decoration: none;
            color: inherit;
        }

        .suggestion-item:hover,
        .suggestion-item.highlighted {
            background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
            padding-left: 28px;
        }

        .suggestion-item:last-child {
            border-bottom: none;
        }

        .suggestion-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 14px;
            font-size: 16px;
            color: #fff;
            flex-shrink: 0;
        }

        .suggestion-icon.catering { background: linear-gradient(135deg, #ff6b6b, #ee5a24); }
        .suggestion-icon.photography { background: linear-gradient(135deg, #a29bfe, #6c5ce7); }
        .suggestion-icon.makeup { background: linear-gradient(135deg, #fd79a8, #e84393); }
        .suggestion-icon.decoration { background: linear-gradient(135deg, #fdcb6e, #f39c12); }
        .suggestion-icon.venue { background: linear-gradient(135deg, #55a3f8, #0d6efd); }
        .suggestion-icon.music { background: linear-gradient(135deg, #00cec9, #00b894); }
        .suggestion-icon.entertainment { background: linear-gradient(135deg, #e17055, #d63031); }
        .suggestion-icon.planning { background: linear-gradient(135deg, #74b9ff, #0984e3); }
        .suggestion-icon.mehendi { background: linear-gradient(135deg, #00b894, #00a085); }
        .suggestion-icon.invitation { background: linear-gradient(135deg, #fd79a8, #e84393); }
        .suggestion-icon.transport { background: linear-gradient(135deg, #636e72, #2d3436); }
        .suggestion-icon.cake { background: linear-gradient(135deg, #fdcb6e, #e17055); }
        .suggestion-icon.anchor { background: linear-gradient(135deg, #a29bfe, #6c5ce7); }
        .suggestion-icon.fireworks { background: linear-gradient(135deg, #ff6348, #ff4757); }
        .suggestion-icon.tent { background: linear-gradient(135deg, #7bed9f, #2ed573); }
        .suggestion-icon.pandit { background: linear-gradient(135deg, #ff8c00, #ff6348); }
        .suggestion-icon.choreography { background: linear-gradient(135deg, #e056fd, #be2edd); }
        .suggestion-icon.lighting { background: linear-gradient(135deg, #ffd32a, #f9ca24); }

        .suggestion-info {
            flex: 1;
            min-width: 0;
        }

        .suggestion-name {
            font-weight: 600;
            font-size: 14px;
            color: #2d3436;
            margin-bottom: 2px;
        }

        .suggestion-name .highlight {
            color: #0d6efd;
            font-weight: 700;
            background: rgba(13, 110, 253, 0.08);
            padding: 0 2px;
            border-radius: 3px;
        }

        .suggestion-desc {
            font-size: 12px;
            color: #6c757d;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .suggestion-arrow {
            color: #ccc;
            font-size: 12px;
            margin-left: 10px;
            transition: all 0.2s ease;
        }

        .suggestion-item:hover .suggestion-arrow {
            color: #0d6efd;
            transform: translateX(4px);
        }

        .no-results {
            padding: 30px 20px;
            text-align: center;
            color: #6c757d;
        }

        .no-results i {
            font-size: 36px;
            color: #dee2e6;
            margin-bottom: 12px;
            display: block;
        }

        .no-results p {
            margin: 0;
            font-size: 14px;
        }

        .no-results .no-result-title {
            font-weight: 600;
            color: #495057;
            font-size: 15px;
            margin-bottom: 4px;
        }

        /* Scrollbar for suggestions */
        .search-suggestions::-webkit-scrollbar {
            width: 5px;
        }

        .search-suggestions::-webkit-scrollbar-track {
            background: transparent;
        }

        .search-suggestions::-webkit-scrollbar-thumb {
            background: #ddd;
            border-radius: 10px;
        }

        .search-suggestions::-webkit-scrollbar-thumb:hover {
            background: #bbb;
        }

        /* Keyboard Navigation Indicator */
        .suggestion-item.highlighted {
            background: linear-gradient(135deg, #e3ecff 0%, #d5e5ff 100%);
            outline: none;
        }

        /* Popular searches tags */
        .popular-tags {
            padding: 14px 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            border-top: 1px solid #f0f0f0;
            background: #fafbfc;
            border-radius: 0 0 16px 16px;
        }

        .popular-tags span.tag-label {
            font-size: 12px;
            color: #6c757d;
            font-weight: 600;
            margin-right: 4px;
            align-self: center;
        }

        .popular-tag {
            padding: 5px 14px;
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 20px;
            font-size: 12px;
            color: #555;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .popular-tag:hover {
            background: #0d6efd;
            color: #fff;
            border-color: #0d6efd;
            transform: translateY(-1px);
        }


        .nav-icon-link i {
            font-size: 16px;
        }


        /* Search input focus enhancement */
        .hero-search-box:focus-within {
            transform: translateY(-2px);
            box-shadow: 0 20px 60px rgba(13, 110, 253, 0.2);
        }