  /* MODAL FIXES - COMPLETE SOLUTION */
    .modal-backdrop {
        background-color: rgba(0, 0, 0, 0.85) !important;
        opacity: 1 !important;
        z-index: 1040 !important;
    }
    
    .modal-backdrop.show {
        opacity: 1 !important;
    }
    
    .modal {
        z-index: 1050 !important;
        overflow-y: auto !important;
    }
    
    .modal.show .modal-dialog {
        transform: translate(0, 0) !important;
    }
    
    body.modal-open {
        overflow: hidden !important;
        padding-right: 0 !important;
    }
    
    /* Modal Content Styling */
    .items-modal .modal-dialog {
        max-width: 90%;
        margin: 30px auto;
    }
    
    .items-modal .modal-header {
        background: #4D4D4D;
        color: white;
        border-bottom: none;
        padding: 20px;
        position: relative;
    }
    
    .items-modal .modal-title {
        font-weight: 600;
        font-size: 1.5rem;
    }
    
    .items-modal .close {
        color: white !important;
        text-shadow: none !important;
        opacity: 1 !important;
        font-size: 1.8rem !important;
        padding: 10px !important;
        margin: -10px -10px -10px auto !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 50% !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
    }
    
    .items-modal .close:hover {
        color: white !important;
        opacity: 1 !important;
        background: rgba(255, 255, 255, 0.2) !important;
        transform: scale(1.1);
    }
    
    .items-modal .modal-body {
        max-height: 70vh;
        overflow-y: auto;
        padding: 20px;
        background: #f8f9fa;
    }
    
    .item-card {
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        margin-bottom: 20px;
        transition: transform 0.3s, box-shadow 0.3s;
        overflow: hidden;
        background: white;
        cursor: pointer;
        position: relative;
    }
    
    .item-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-color: #4D4D4D;
    }
    
    .item-image {
        height: 200px;
        width: 100%;
        object-fit: cover;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .item-content {
        padding: 20px;
    }
    
    .item-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }
    
    .item-price {
        font-size: 1.1rem;
        font-weight: 700;
        color: #28a745;
        margin-bottom: 10px;
    }
    
    .item-meta {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 10px;
    }
    
    .item-description {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 15px;
        max-height: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .empty-state {
        text-align: center;
        padding: 40px 20px;
        color: #666;
    }
    
    .empty-state i {
        font-size: 3rem;
        color: #ddd;
        margin-bottom: 20px;
    }
    
    .modal-tabs {
        border-bottom: 1px solid #dee2e6;
        margin-bottom: 20px;
    }
    
    .modal-tabs .nav-link {
        color: #666;
        font-weight: 500;
        border: none;
        padding: 10px 20px;
        transition: all 0.3s;
    }
    
    .modal-tabs .nav-link:hover {
        color: #4D4D4D;
    }
    
    .modal-tabs .nav-link.active {
        color: #4D4D4D;
        border-bottom: 3px solid #4D4D4D;
        background: none;
    }
    
    .tab-pane {
        padding-top: 20px;
    }
    
    /* Grid layout for items */
    .items-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
    
    @media (max-width: 768px) {
        .items-grid {
            grid-template-columns: 1fr;
        }
        
        .items-modal .modal-dialog {
            max-width: 95%;
            margin: 10px;
        }
        
        .items-modal .modal-body {
            max-height: 60vh;
        }
    }
    
    /* View All Button */
    .view-all-btn {
        background: #4D4D4D;
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 25px;
        font-weight: 500;
        font-size: 1rem;
        transition: transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
    }
    
    .view-all-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(77, 77, 77, 0.4);
        color: white;
        background: #3D3D3D;
    }
    
    /* Book Now Button */
    .book-now-btn {
        background: #28a745;
        color: white;
        border: none;
        padding: 8px 20px;
        border-radius: 5px;
        font-weight: 500;
        transition: all 0.3s;
        display: inline-block;
        text-decoration: none;
        cursor: pointer;
    }
    
    .book-now-btn:hover {
        background: #218838;
        color: white;
        text-decoration: none;
    }
    
    /* Statistics */
    .stats-badge {
        background: #f8f9fa;
        border-radius: 20px;
        padding: 5px 15px;
        font-size: 0.85rem;
        color: #666;
        margin-bottom: 10px;
        display: inline-block;
    }
    
    /* Badge styles */
    .badge {
        font-size: 0.75rem;
        font-weight: 500;
        padding: 4px 8px;
        border-radius: 10px;
    }
    
    /* Modal footer */
    .modal-footer {
        border-top: 1px solid #e0e0e0;
        padding: 15px 20px;
        background: white;
    }
    
    /* Emergency close button for modal if needed */
    .modal-emergency-close {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 9999;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #333;
        cursor: pointer;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    /* ==================== FIXED SEARCH BAR STYLES ==================== */
    .search-section {
        background: #4D4D4D;
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .search-container {
        max-width: 800px;
        margin: 0 auto;
        width: 90%;
    }
    
    .search-title {
        color: white;
        text-align: center;
        font-size: 2rem;
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    /* Fixed Search Form - Won't get too wide */
    .search-form-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
        position: relative;
    }
    
    .search-form {
        display: flex;
        gap: 10px;
        width: 100%;
        max-width: 700px;
        align-items: center;
    }
    
    .search-input {
        flex: 1;
        min-width: 250px;
        max-width: 550px;
        padding: 15px 20px;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .search-input:focus {
        outline: none;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        transform: translateY(-1px);
    }
    
    .search-btn {
        background: white;
        color: #4D4D4D;
        border: none;
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .search-btn:hover {
        background: #f8f9fa;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    
    .quick-search-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-top: 20px;
    }
    
    .search-tag {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .search-tag:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }
    
    /* ==================== SEARCH SUGGESTIONS STYLES ==================== */
    .search-suggestions {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 700px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        z-index: 9999;
        margin-top: 10px;
        display: none;
        overflow: hidden;
        max-height: 400px;
        overflow-y: auto;
    }
    
    .search-suggestions.show {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
        to { opacity: 1; transform: translateX(-50%) translateY(0); }
    }
    
    .suggestions-header {
        padding: 15px 20px;
        background: #4D4D4D;
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .suggestions-header h4 {
        margin: 0;
        font-size: 1rem;
        font-weight: 500;
    }
    
    .close-suggestions {
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0;
        line-height: 1;
        opacity: 0.7;
        transition: opacity 0.3s;
    }
    
    .close-suggestions:hover {
        opacity: 1;
    }
    
    .suggestions-container {
        padding: 20px;
    }
    
    .suggestions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .suggestion-category {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 15px;
        transition: all 0.3s;
        cursor: pointer;
        border: 1px solid #e0e0e0;
    }
    
    .suggestion-category:hover {
        background: #4D4D4D;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .suggestion-category:hover .category-title {
        color: white;
    }
    
    .suggestion-category:hover .suggestion-item {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .category-title {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .category-title i {
        font-size: 1.1rem;
    }
    
    .suggestion-items {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .suggestion-item {
        padding: 8px 0;
        font-size: 0.9rem;
        color: #666;
        cursor: pointer;
        transition: all 0.2s;
        border-bottom: 1px solid #eee;
    }
    
    .suggestion-item:last-child {
        border-bottom: none;
    }
    
    .suggestion-item:hover {
        color: #4D4D4D;
        padding-left: 5px;
    }
    
    .suggestion-category:hover .suggestion-item:hover {
        color: white;
        font-weight: 500;
    }
    
    /* Popular searches quick links */
    .popular-searches {
        margin-top: 20px;
    }
    
    .popular-searches h5 {
        color: #333;
        margin-bottom: 10px;
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    .popular-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .popular-tag {
        background: #f0f0f0;
        color: #4D4D4D;
        padding: 5px 12px;
        border-radius: 15px;
        font-size: 0.85rem;
        cursor: pointer;
        transition: all 0.3s;
        border: 1px solid #ddd;
    }
    
    .popular-tag:hover {
        background: #4D4D4D;
        color: white;
        border-color: #4D4D4D;
    }
    
    /* No suggestions state */
    .no-suggestions {
        text-align: center;
        padding: 30px 20px;
        color: #666;
    }
    
    .no-suggestions i {
        font-size: 2.5rem;
        color: #ddd;
        margin-bottom: 15px;
    }
    
    /* Search input with suggestions active */
    .search-input.active {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    
    /* Highlight for filtered text */
    .highlight {
        background-color: #fff3cd;
        color: #856404;
        padding: 2px 4px;
        border-radius: 3px;
        font-weight: 600;
    }
    
    /* Search Results Styles */
    .search-results-section {
        padding: 40px 0;
    }
    
    .search-results-header {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .search-results-header h2 {
        color: #333;
        margin-bottom: 10px;
        font-size: 1.8rem;
    }
    
    .search-results-header p {
        color: #666;
        font-size: 1.1rem;
    }
    
    .results-count {
        background: #4D4D4D;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        margin-left: 10px;
    }
    
    .no-results {
        text-align: center;
        padding: 60px 20px;
    }
    
    .no-results i {
        font-size: 4rem;
        color: #ddd;
        margin-bottom: 20px;
    }
    
    .no-results h3 {
        color: #666;
        margin-bottom: 10px;
    }
    
    .no-results p {
        color: #888;
        margin-bottom: 20px;
    }
    
    .suggested-searches {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-top: 20px;
    }
    
    .suggested-search {
        background: #f8f9fa;
        color: #4D4D4D;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s;
        border: 1px solid #e0e0e0;
    }
    
    .suggested-search:hover {
        background: #4D4D4D;
        color: white;
        border-color: #4D4D4D;
    }
    
    /* Recommendations Section */
    .recommendations-section {
        padding: 40px 0;
        background: #f8f9fa;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        color: #333;
        margin-bottom: 10px;
    }
    
    .section-title p {
        color: #666;
        font-size: 1.1rem;
    }
    
    .recommendations-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .recommendation-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .recommendation-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    
    .recommendation-header {
        padding: 20px;
        background: #4D4D4D;
        color: white;
    }
    
    .recommendation-header h3 {
        margin: 0;
        font-size: 1.3rem;
    }
    
    .recommendation-body {
        padding: 20px;
    }
    
    .recommendation-item {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }
    
    .recommendation-item:last-child {
        border-bottom: none;
    }
    
    .recommendation-item i {
        color: #4D4D4D;
        font-size: 1.2rem;
    }
    
    .recommendation-item-text {
        flex: 1;
    }
    
    .recommendation-item-text h4 {
        margin: 0 0 5px 0;
        font-size: 1rem;
        color: #333;
    }
    
    .recommendation-item-text p {
        margin: 0;
        font-size: 0.85rem;
        color: #666;
    }
    
    .recommendation-link {
        display: block;
        text-align: center;
        padding: 10px;
        background: #f8f9fa;
        color: #4D4D4D;
        text-decoration: none;
        font-weight: 500;
        border-top: 1px solid #e0e0e0;
        transition: all 0.3s;
    }
    
    .recommendation-link:hover {
        background: #4D4D4D;
        color: white;
    }
    
    /* Popular Categories */
    .popular-categories {
        padding: 40px 0;
    }
    
    .category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    
    .category-card {
        background: white;
        border-radius: 10px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s;
        cursor: pointer;
    }
    
    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        background: #4D4D4D;
        color: white;
    }
    
    .category-card:hover .category-icon {
        color: white;
    }
    
    .category-icon {
        font-size: 3rem;
        color: #4D4D4D;
        margin-bottom: 15px;
    }
    
    .category-card h3 {
        margin: 0 0 10px 0;
        font-size: 1.2rem;
    }
    
    .category-card p {
        margin: 0;
        font-size: 0.9rem;
        color: #666;
    }
    
    .category-card:hover p {
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* ==================== TESTIMONIALS SECTION STYLES ==================== */
    .testimonials-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .testimonials-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .testimonials-header h2 {
        color: #333;
        font-size: 2.5rem;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }
    
    .testimonials-header h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: #4D4D4D;
        border-radius: 2px;
    }
    
    .testimonials-header p {
        color: #666;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .overall-rating {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        text-align: center;
        max-width: 300px;
        margin: 0 auto 50px;
    }
    
    .rating-number {
        font-size: 4rem;
        font-weight: 700;
        color: #4D4D4D;
        line-height: 1;
        margin-bottom: 10px;
    }
    
    .stars {
        color: #FFD700;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .stars .fa-star-half-alt {
        color: #FFD700;
    }
    
    .total-reviews {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .rating-progress {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
    }
    
    .rating-label {
        font-size: 0.85rem;
        color: #666;
        width: 60px;
    }
    
    .progress-bar-container {
        flex: 1;
        background: #e0e0e0;
        height: 8px;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .progress-bar {
        height: 100%;
        background: #FFD700;
    }
    
    .rating-count {
        font-size: 0.85rem;
        color: #666;
        width: 40px;
        text-align: right;
    }
    
    .testimonials-container {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .testimonials-slider {
        position: relative;
    }
    
    .testimonials-track {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .testimonial-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 5rem;
        color: #f0f0f0;
        font-family: Georgia, serif;
        line-height: 1;
    }
    
    .testimonial-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .user-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, #4D4D4D 0%, #333 100%);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 600;
        margin-right: 15px;
    }
    
    .user-info {
        flex: 1;
    }
    
    .user-name {
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
    }
    
    .user-stay {
        font-size: 0.85rem;
        color: #666;
    }
    
    .testimonial-rating {
        margin-bottom: 20px;
    }
    
    .review-stars {
        color: #FFD700;
        font-size: 1rem;
    }
    
    .testimonial-content {
        color: #555;
        line-height: 1.8;
        font-size: 0.95rem;
        position: relative;
        z-index: 1;
    }
    
    .testimonial-date {
        text-align: right;
        color: #888;
        font-size: 0.8rem;
        margin-top: 20px;
        font-style: italic;
    }
    
    .no-testimonials {
        text-align: center;
        padding: 60px 20px;
        color: #666;
    }
    
    .no-testimonials i {
        font-size: 4rem;
        color: #ddd;
        margin-bottom: 20px;
    }
    
    .no-testimonials h3 {
        color: #666;
        margin-bottom: 10px;
    }
    
    .no-testimonials p {
        color: #888;
        margin-bottom: 20px;
    }
    
    .view-all-reviews {
        text-align: center;
        margin-top: 40px;
    }
    
    .review-btn {
        display: inline-block;
        background: #4D4D4D;
        color: white;
        padding: 12px 30px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
        border: 2px solid #4D4D4D;
        cursor: pointer;
    }
    
    .review-btn:hover {
        background: transparent;
        color: #4D4D4D;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* Testimonial slider navigation */
    .testimonial-nav {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }
    
    .nav-btn {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ddd;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        padding: 0;
    }
    
    .nav-btn.active {
        background: #4D4D4D;
        transform: scale(1.2);
    }
    
    .nav-btn:hover {
        background: #4D4D4D;
    }
    
    /* ==================== ALL REVIEWS MODAL STYLES ==================== */
    .reviews-modal .modal-dialog {
        max-width: 1000px;
        margin: 30px auto;
    }
    
    .reviews-modal .modal-header {
        background: linear-gradient(135deg, #4D4D4D 0%, #333 100%);
        color: white;
        border-bottom: none;
        padding: 30px;
        position: relative;
    }
    
    .reviews-modal .modal-title {
        font-weight: 600;
        font-size: 1.8rem;
        text-align: center;
        width: 100%;
    }
    
    .reviews-modal .modal-body {
        padding: 0;
        background: #f8f9fa;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .reviews-modal .modal-footer {
        border-top: 1px solid #e0e0e0;
        padding: 20px;
        background: white;
        text-align: center;
    }
    
    .reviews-summary {
        background: white;
        padding: 30px;
        text-align: center;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .modal-rating-number {
        font-size: 3.5rem;
        font-weight: 700;
        color: #4D4D4D;
        line-height: 1;
        margin-bottom: 10px;
    }
    
    .modal-stars {
        color: #FFD700;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .modal-total-reviews {
        color: #666;
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .modal-rating-distribution {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .reviews-carousel-container {
        padding: 30px;
        background: #f8f9fa;
        min-height: 400px;
    }
    
    .reviews-carousel {
        position: relative;
        overflow: hidden;
    }
    
    .reviews-track {
        display: flex;
        transition: transform 0.5s ease;
        gap: 30px;
        padding: 20px 0;
    }
    
    .review-slide {
        min-width: 100%;
        flex-shrink: 0;
        transition: all 0.3s;
    }
    
    @media (min-width: 768px) {
        .review-slide {
            min-width: calc(50% - 15px);
        }
    }
    
    @media (min-width: 992px) {
        .review-slide {
            min-width: calc(33.333% - 20px);
        }
    }
    
    .carousel-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: white;
        border: 2px solid #4D4D4D;
        color: #4D4D4D;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .carousel-btn:hover:not(:disabled) {
        background: #4D4D4D;
        color: white;
        transform: scale(1.1);
    }
    
    .carousel-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        border-color: #ccc;
        color: #ccc;
    }
    
    .carousel-dots {
        display: flex;
        gap: 10px;
        justify-content: center;
        margin-top: 20px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ddd;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .carousel-dot.active {
        background: #4D4D4D;
        transform: scale(1.2);
    }
    
    .carousel-dot:hover {
        background: #4D4D4D;
    }
    
    .carousel-info {
        text-align: center;
        color: #666;
        font-size: 0.9rem;
        margin-top: 10px;
    }
    
    .no-reviews-modal {
        padding: 60px 30px;
        text-align: center;
    }
    
    .no-reviews-modal i {
        font-size: 4rem;
        color: #ddd;
        margin-bottom: 20px;
    }
    
    .no-reviews-modal h4 {
        color: #666;
        margin-bottom: 10px;
    }
    
    .no-reviews-modal p {
        color: #888;
        margin-bottom: 20px;
    }
    
    /* Responsive testimonials */
    @media (max-width: 768px) {
        .testimonials-header h2 {
            font-size: 2rem;
        }
        
        .testimonials-track {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .testimonial-card {
            padding: 20px;
        }
        
        .rating-number {
            font-size: 3rem;
        }
        
        .overall-rating {
            padding: 20px;
        }
        
        .reviews-modal .modal-dialog {
            max-width: 95%;
            margin: 10px;
        }
        
        .reviews-modal .modal-header {
            padding: 20px;
        }
        
        .reviews-summary {
            padding: 20px;
        }
        
        .modal-rating-number {
            font-size: 2.5rem;
        }
        
        .reviews-carousel-container {
            padding: 20px;
        }
    }
    
    @media (max-width: 480px) {
        .testimonials-header h2 {
            font-size: 1.8rem;
        }
        
        .testimonial-header {
            flex-direction: column;
            text-align: center;
        }
        
        .user-avatar {
            margin-right: 0;
            margin-bottom: 10px;
        }
        
        .testimonial-card::before {
            top: 10px;
            right: 20px;
            font-size: 4rem;
        }
        
        .carousel-btn {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
    }
    
    /* ==================== VIEW PROFILE MODAL STYLES ==================== */
    .profile-section {
        border-right: 1px solid #e0e0e0;
        padding-right: 30px;
    }
    
    .profile-image-container {
        position: relative;
    }
    
    .profile-image-container .btn {
        position: relative;
        z-index: 2;
    }
    
    .profile-stats .stat-item {
        background: #f8f9fa;
        border-radius: 8px;
        padding: 10px;
        text-align: center;
    }
    
    .profile-stats .stat-item h5 {
        color: #4D4D4D;
        font-weight: 600;
    }
    
    .profile-stats .stat-item small {
        color: #666;
        font-size: 0.8rem;
    }
    
    #profileTab .nav-link {
        color: #666;
        font-weight: 500;
        border: none;
        padding: 10px 20px;
    }
    
    #profileTab .nav-link.active {
        color: #4D4D4D;
        border-bottom: 3px solid #4D4D4D;
        background: none;
    }
    
    #profileTabContent .tab-pane {
        padding: 20px 0;
    }
    
    .form-group.row {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .form-group.row:last-child {
        border-bottom: none;
    }
    
    .form-group.row label {
        font-weight: 600;
        color: #333;
    }
    
    .table th {
        font-weight: 600;
        color: #333;
        border-top: none;
    }
    
    .table td {
        vertical-align: middle;
    }
    
    .btn-group-sm .btn {
        padding: 0.25rem 0.5rem;
    }
    
    .card {
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    .card-header {
        background: #f8f9fa;
        border-bottom: 1px solid #e0e0e0;
        font-weight: 600;
    }
    
    /* Modal specific adjustments */
    #viewProfileModal .modal-body {
        max-height: 70vh;
        overflow-y: auto;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .profile-section {
            border-right: none;
            border-bottom: 1px solid #e0e0e0;
            padding-right: 0;
            padding-bottom: 20px;
            margin-bottom: 20px;
        }
        
        .form-group.row label {
            margin-bottom: 5px;
        }
        
        .profile-stats .row {
            justify-content: center;
        }
        
        .profile-stats .col-6 {
            flex: 0 0 auto;
            width: auto;
            padding: 0 15px;
        }
    }
    
    /* ==================== RESPONSIVE ADJUSTMENTS ==================== */
    @media (max-width: 768px) {
        /* Search Form Responsive */
        .search-form {
            flex-direction: column;
            max-width: 100%;
        }
        
        .search-input, .search-btn {
            width: 100%;
            max-width: 100% !important;
            border-radius: 10px;
        }
        
        .search-input {
            min-width: unset;
        }
        
        /* Search Suggestions */
        .search-suggestions {
            width: 95%;
            max-width: 100%;
            border-radius: 10px;
        }
        
        .suggestions-grid {
            grid-template-columns: 1fr;
        }
        
        .suggestions-container {
            padding: 15px;
        }
        
        .suggestion-category {
            padding: 12px;
        }
        
        .popular-tags {
            overflow-x: auto;
            padding-bottom: 5px;
            flex-wrap: nowrap;
            justify-content: flex-start;
        }
        
        .popular-tag {
            flex-shrink: 0;
            white-space: nowrap;
        }
        
        /* Quick Search Tags */
        .quick-search-tags {
            justify-content: flex-start;
            overflow-x: auto;
            padding-bottom: 10px;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            margin-left: 10px;
            margin-right: 10px;
        }
        
        .search-tag {
            flex-shrink: 0;
        }
        
        /* Search Title */
        .search-title {
            font-size: 1.5rem;
            padding: 0 15px;
        }
        
        /* Recommendations Grid */
        .recommendations-grid, .category-grid {
            grid-template-columns: 1fr;
        }
        
        /* Items Grid */
        .items-grid {
            grid-template-columns: 1fr;
        }
        
        /* Modal adjustments */
        .items-modal .modal-dialog {
            max-width: 95%;
            margin: 10px;
        }
        
        .items-modal .modal-body {
            max-height: 60vh;
        }
        
        /* Search Results Header */
        .search-results-header h2 {
            font-size: 1.4rem;
        }
        
        .results-count {
            display: block;
            margin: 10px auto;
            width: fit-content;
        }
    }
    
    @media (max-width: 480px) {
        .search-title {
            font-size: 1.3rem;
        }
        
        .search-input {
            padding: 12px 15px;
            font-size: 0.9rem;
        }
        
        .search-btn {
            padding: 12px 20px;
            font-size: 0.9rem;
        }
        
        .search-tag {
            padding: 6px 12px;
            font-size: 0.8rem;
        }
        
        .popular-tag {
            padding: 4px 10px;
            font-size: 0.8rem;
        }
    }
    
    /* ==================== HEADER BUTTON STYLES ==================== */
    .book_room {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
    }
    
    .book_btn a {
        display: inline-flex;
        align-items: center;
        padding: 10px 20px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
        background: #4D4D4D;
        color: white;
        border: 2px solid #4D4D4D;
    }
    
    .book_btn a:hover {
        background: #3D3D3D;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .book_btn a i {
        margin-right: 8px;
    }
    
    /* ==================== FIXED MOBILE MENU STYLES ==================== */
    .mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        color: #4D4D4D;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 10px;
        border-radius: 4px;
        transition: all 0.3s;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-toggle:hover {
        background: #f8f9fa;
    }
    
    .mobile_menu {
        display: none;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .mobile_menu.show {
        display: block;
    }
    
    .mobile_menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile_menu ul li {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }
    
    .mobile_menu ul li:last-child {
        border-bottom: none;
    }
    
    .mobile_menu ul li a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        display: block;
        padding: 8px 15px;
        transition: color 0.3s;
        font-size: 16px;
    }
    
    .mobile_menu ul li a:hover {
        color: #4D4D4D;
        background: #f8f9fa;
    }
    
    .mobile_menu ul li a.active {
        color: #4D4D4D;
        font-weight: 600;
        background: #f8f9fa;
    }
    
    /* Mobile Header Buttons */
    .mobile-header-buttons {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    
    .mobile-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
    }
    
    .mobile-btn a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: white;
        padding: 8px 12px;
        border-radius: 5px;
        min-width: 70px;
        transition: all 0.3s;
    }
    
    .mobile-btn a:hover {
        transform: translateY(-2px);
        text-decoration: none;
    }
    
    .mobile-book-btn {
        background: #28a745;
        border: 2px solid #28a745;
    }
    
    .mobile-book-btn:hover {
        background: #218838;
        border-color: #218838;
    }
    
    .mobile-profile-btn {
        background: #4D4D4D;
        border: 2px solid #4D4D4D;
    }
    
    .mobile-profile-btn:hover {
        background: #3D3D3D;
        border-color: #3D3D3D;
    }
    
    .mobile-btn i {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }
    
    .mobile-btn-text {
        font-size: 0.75rem;
        font-weight: 500;
    }
    
    /* Logo Styling */
    .logo-text {
        font-size: 1.3rem;
        font-weight: 700;
        color: #4D4D4D;
        text-decoration: none;
    }
    
    .logo-text:hover {
        color: #3D3D3D;
        text-decoration: none;
    }
    
    /* Fix for mobile menu toggle positioning */
    @media (max-width: 991px) {
        .mobile-menu-toggle {
            display: flex !important;
            background: #f8f9fa;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-left: 15px;
        }
        
        .mobile-menu-toggle i {
            font-size: 20px;
            color: #4D4D4D;
        }
        
        .mobile-menu-toggle:hover {
            background: #4D4D4D;
            color: white;
        }
        
        .mobile-menu-toggle:hover i {
            color: white;
        }
        
        /* Adjust header layout for mobile */
        .header-area .row {
            padding: 10px 0;
        }
        
        .main-menu.d-none.d-lg-block {
            display: none !important;
        }
        
        /* Show mobile buttons on medium and small screens */
        .mobile-header-buttons {
            display: flex !important;
        }
        
        /* Hide desktop buttons on mobile */
        .book_btn.d-none.d-lg-inline-block {
            display: none !important;
        }
    }
    
    /* Desktop Header Adjustments */
    @media (min-width: 992px) {
        .mobile-menu-toggle {
            display: none !important;
        }
        
        .mobile_menu {
            display: none !important;
        }
        
        .mobile-header-buttons {
            display: none !important;
        }
    }
    
    /* Small screen adjustments */
    @media (max-width: 576px) {
        .logo-text {
            font-size: 1.1rem;
        }
        
        .mobile-btn a {
            padding: 6px 10px;
            min-width: 60px;
        }
        
        .mobile-btn i {
            font-size: 1rem;
        }
        
        .mobile-btn-text {
            font-size: 0.7rem;
        }
        
        .mobile-header-buttons {
            gap: 5px;
        }
    }
    
    /* Ensure proper z-index for mobile menu */
    #sticky-header {
        position: relative;
        z-index: 1001;
    }
    
    .mobile_menu {
        z-index: 1000;
    }
</style>
<!-- this is the end style of the index -->
</head>
    <!-- Scroll to Top Button -->
    <button class="scroll-to-top" id="scrollToTop" aria-label="Scroll to top">
        <i class="fa fa-chevron-up"></i>
    </button>
<body>
    <style>
        /* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #4D4D4D;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}