    /* ============================================
       GLOBAL STYLES & RTL SUPPORT
    ============================================ */
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
    .rtl {
        direction: rtl;
        text-align: right;
    }
    
    .rtl .field-icon {
        padding: 12px 18px 12px 0;
    }
    
    .rtl .search-select {
        padding: 14px 8px 14px 18px;
        text-align: right;
    }
    
    .rtl .ad-btn i {
        margin-left: 0;
        margin-right: 5px;
        transform: rotate(180deg);
    }
    
    .rtl .ad-btn:hover i {
        transform: translateX(-5px) rotate(180deg);
    }
    
    /* ============================================
       HERO SECTION & SEARCH FORM
    ============================================ */
    .hero__search__form {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 60px;
        padding: 8px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        position: relative;
        z-index: 100;
    }
    
    .search-form {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .search-field {
        flex: 1;
        position: relative;
        display: flex;
        align-items: center;
        background: #fff;
        border-radius: 50px;
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
        min-width: 200px;
    }
    
    .search-field:hover {
        border-color: #dc3545;
        box-shadow: 0 2px 8px rgba(220, 53, 69, 0.1);
    }
    
    .search-field:focus-within {
        border-color: #dc3545;
        box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
    }
    
    .field-icon {
        padding: 12px 0 12px 18px;
        color: #6c757d;
        font-size: 16px;
        transition: color 0.3s ease;
    }
    
    .search-field:hover .field-icon {
        color: #dc3545;
    }
    
    .search-select {
        flex: 1;
        padding: 14px 18px 14px 8px;
        border: none;
        background: transparent;
        font-size: 15px;
        font-weight: 500;
        color: #2c3e50;
        cursor: pointer;
        outline: none;
        font-family: inherit;
    }

    .search-input {
        background: transparent;
        border: 0;
        color: #2c3e50;
        flex: 1;
        font-family: inherit;
        font-size: 15px;
        font-weight: 600;
        min-width: 0;
        outline: 0;
        padding: 14px 18px 14px 8px;
        width: 100%;
    }

    .search-input::placeholder {
        color: #7d8794;
        font-weight: 600;
    }
    
    .search-select option {
        padding: 10px;
        background: white;
        color: #2c3e50;
    }
    
    .search-btn {
        background: linear-gradient(135deg, #dc3545, #c82333);
        border: none;
        padding: 14px 32px;
        border-radius: 50px;
        color: white;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    }
    
    .search-btn:hover {
        background: linear-gradient(135deg, #c82333, #b02030);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    }
    
    .search-btn:active {
        transform: translateY(0);
    }
    
    /* ============================================
       QUICK ACCESS SUGGESTIONS
    ============================================ */
    .search-suggestions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    
    .suggestion-badge {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 12px;
        font-weight: 500;
        color: #fff;
        transition: all 0.3s ease;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    
    .suggestion-badge i {
        font-size: 12px;
    }
    
    .suggestion-badge:hover {
        background: #dc3545;
        transform: translateY(-2px);
        color: #fff;
    }
    
    /* ============================================
       ADS SLIDER (SWIPER)
    ============================================ */
    .ads-slider-container {
        position: relative;
        margin-top: 40px;
        z-index: 1;
    }
    
    .ads-slider {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
    }
    
    .swiper-container {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }
    
    .swiper-slide {
        border-radius: 20px;
        overflow: hidden;
    }
    
    .swiper-pagination {
        bottom: 20px !important;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 1;
        transition: all 0.3s ease;
    }
    
    .swiper-pagination-bullet-active {
        background: #dc3545;
        width: 25px;
        border-radius: 5px;
    }
    
    /* ============================================
       AD CARD STYLES
    ============================================ */
    .ad-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .ad-card img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
    }
    
    .ad-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        padding: 30px 25px 25px;
    }
    
    .ad-content h3 {
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    
    .ad-content p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .ad-btn {
        display: inline-block;
        background: #dc3545;
        color: #fff;
        padding: 10px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s;
    }
    
    .ad-btn:hover {
        background: #c82333;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
        color: #fff;
        text-decoration: none;
    }
    
    .ad-btn i {
        margin-left: 5px;
        transition: transform 0.3s;
    }
    
    .ad-btn:hover i {
        transform: translateX(5px);
    }
    
    .ad-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(220, 53, 69, 0.9);
        padding: 6px 15px;
        border-radius: 30px;
        color: #fff;
        font-size: 12px;
        font-weight: 600;
    }
    
    /* ============================================
       CATEGORIES SECTION
    ============================================ */
    .categories__grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }
    
    .categories__item {
        text-align: center;
        padding: 30px 20px;
        background: #fff;
        border-radius: 12px;
        transition: all 0.3s;
        text-decoration: none;
        display: block;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .categories__item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        text-decoration: none;
    }
    
    .categories__item img {
        width: 48px;
        height: 48px;
        object-fit: contain;
        margin-bottom: 15px;
    }
    
    .categories__item i {
        font-size: 48px;
        color: #dc3545;
        margin-bottom: 15px;
        display: inline-block;
    }
    
    .categories__item h5 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #2c3e50;
    }
    
    .categories__item span {
        font-size: 13px;
        color: #666;
    }
    
    /* ============================================
       FEATURE LOCATION SECTION
    ============================================ */
    .feature__location__item {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 20px;
        display: block;
        text-decoration: none;
    }
    
    .feature__location__item.large-item {
        height: 500px;
    }
    
    .feature__location__item.set-bg {
        background-size: cover;
        background-position: center;
    }
    
    .feature__location__item:hover {
        text-decoration: none;
    }
    
    .feature__location__item__text {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.7);
        padding: 15px;
        border-radius: 10px;
        color: #fff;
    }
    
    .feature__location__item__text h5 {
        color: #fff;
        margin-bottom: 5px;
        font-size: 18px;
        font-weight: 600;
    }
    
    .feature__location__item__text ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .feature__location__item__text ul li {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    /* ============================================
       NO ADS FALLBACK
    ============================================ */
    .no-ads {
        background: rgba(0, 0, 0, 0.5);
        border-radius: 20px;
        padding: 60px 20px;
        text-align: center;
        backdrop-filter: blur(10px);
    }
    
    .no-ads i {
        font-size: 48px;
        color: #fff;
        margin-bottom: 15px;
        display: block;
    }
    
    .no-ads p {
        color: #fff;
        font-size: 16px;
        margin: 0;
    }
    
    /* ============================================
       RESPONSIVE DESIGN
    ============================================ */
    @media (max-width: 992px) {
        .hero__search__form {
            border-radius: 30px;
            padding: 6px;
        }
        
        .search-field {
            min-width: 180px;
        }
        
        .search-btn {
            padding: 12px 24px;
        }
    }
    
    @media (max-width: 768px) {
        .hero__search__form {
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.98);
        }
        
        .search-form {
            flex-direction: column;
            gap: 12px;
        }
        
        .search-field {
            width: 100%;
            min-width: 100%;
        }
        
        .field-icon {
            padding: 12px 0 12px 18px;
        }
        
        .search-select {
            padding: 14px 18px 14px 8px;
        }
        
        .search-btn {
            width: 100%;
            justify-content: center;
            padding: 14px;
        }
        
        .search-suggestions {
            gap: 8px;
        }
        
        .suggestion-badge {
            padding: 5px 12px;
            font-size: 11px;
        }
        
        .ad-card img {
            height: 300px;
        }
        
        .ad-overlay {
            padding: 20px;
        }
        
        .ad-content h3 {
            font-size: 18px;
        }
        
        .ad-content p {
            font-size: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .ad-btn {
            padding: 8px 20px;
            font-size: 12px;
        }
        
        .ad-badge {
            top: 12px;
            right: 12px;
            padding: 4px 12px;
            font-size: 10px;
        }
        
        .categories__grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 20px;
        }
        
        .feature__location__item.large-item {
            height: 300px;
        }
        
        .feature__location__item.set-bg {
            height: 200px;
        }
    }
    
    @media (max-width: 480px) {
        .ad-card img {
            height: 250px;
        }
        
        .ad-overlay {
            padding: 15px;
        }
        
        .ad-content h3 {
            font-size: 16px;
        }
        
        .categories__grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .categories__item {
            padding: 20px 15px;
        }
        
        .categories__item img,
        .categories__item i {
            width: 32px;
            height: 32px;
            font-size: 32px;
        }
        
        .categories__item h5 {
            font-size: 13px;
        }
        
        .feature__location__item.large-item {
            height: 250px;
        }
        
        .feature__location__item.set-bg {
            height: 180px;
        }
    }
    
    /* ============================================
       ANIMATIONS
    ============================================ */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .search-field,
    .search-btn {
        animation: slideDown 0.4s ease-out;
    }
    
    .search-field:nth-child(1) { animation-delay: 0.05s; }
    .search-field:nth-child(2) { animation-delay: 0.1s; }
    .search-btn { animation-delay: 0.15s; }
    
    /* ============================================
       TOUCH DEVICE OPTIMIZATIONS
    ============================================ */
    @media (hover: none) and (pointer: coarse) {
        select {
            font-size: 16px !important;
            padding: 12px !important;
        }
        
        select option {
            font-size: 14px;
            padding: 12px;
        }
        
        .search-btn {
            padding: 16px !important;
        }
        
        .suggestion-badge {
            padding: 8px 16px;
        }
    }
    
    /* ============================================
       DROPDOWN Z-INDEX FIX
    ============================================ */
    select {
        position: relative;
        z-index: 200;
        cursor: pointer;
    }
    
    select:focus,
    select:active {
        z-index: 1000;
    }
    
    select option {
        background: white;
        color: #2c3e50;
        padding: 10px;
        z-index: 1001;
    }
    
    
    
     /* Optimize image loading */
    .set-bg {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    /* Prevent layout shift */
    .breadcrumb-area, .about-video {
        min-height: 200px;
    }
    
    /* Optimize animations */
    .work__item {
        transition: transform 0.3s ease;
    }
    
    .work__item:hover {
        transform: translateY(-5px);
    }

/* ============================================
   BARGCITY PREMIUM UI SYSTEM
============================================ */
:root {
    --bc-ink: #121a24;
    --bc-ink-soft: #243447;
    --bc-muted: #6b7685;
    --bc-line: #e6edf3;
    --bc-surface: #ffffff;
    --bc-soft: #f6f8fb;
    --bc-brand: #ef3f52;
    --bc-brand-dark: #cf253a;
    --bc-accent: #14b8a6;
    --bc-gold: #f5a524;
    --bc-radius: 24px;
    --bc-shadow: 0 22px 55px rgba(18, 26, 36, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bc-soft);
    color: var(--bc-ink);
    letter-spacing: 0;
}

.fas,
.far,
.fab,
.fa-brands {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container,
.container-fluid {
    width: min(100%, 1200px);
}

.hero {
    isolation: isolate;
    min-height: 82vh !important;
    padding: 128px 0 78px !important;
    position: relative;
}

.hero::before {
    background:
        linear-gradient(105deg, rgba(12, 20, 31, 0.88) 0%, rgba(19, 31, 48, 0.76) 46%, rgba(19, 31, 48, 0.35) 100%),
        radial-gradient(circle at 18% 16%, rgba(239, 63, 82, 0.42), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(20, 184, 166, 0.28), transparent 26%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: -1;
}

.hero::after {
    display: none !important;
}

.hero__text {
    margin: 0 auto !important;
    max-width: 1120px !important;
    text-align: center;
}

.rtl .hero__text {
    text-align: center;
}

.hero__text .section-title h2 {
    color: #fff !important;
    font-size: clamp(32px, 3.9vw, 48px) !important;
    font-weight: 900 !important;
    line-height: 1.08 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 18px !important;
    max-width: 720px;
}

.hero__text .section-title p {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: clamp(14px, 1.25vw, 16px) !important;
    line-height: 1.65 !important;
    margin: 0 auto 28px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 610px;
}

.hero__search__form {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 22px !important;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25) !important;
    margin: 0 auto !important;
    max-width: 1120px !important;
    padding: 7px !important;
}

.search-form {
    gap: 10px !important;
}

.search-field {
    border: 1px solid var(--bc-line) !important;
    border-radius: 15px !important;
    box-shadow: none !important;
    min-height: 46px;
}

.search-field:hover,
.search-field:focus-within {
    border-color: rgba(239, 63, 82, 0.38) !important;
    box-shadow: 0 12px 26px rgba(239, 63, 82, 0.10) !important;
}

.field-icon {
    color: var(--bc-brand) !important;
    font-size: 14px !important;
    padding-bottom: 10px !important;
    padding-top: 10px !important;
}

.search-select {
    color: var(--bc-ink) !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    padding-bottom: 12px !important;
    padding-top: 12px !important;
}

.search-input {
    color: var(--bc-ink) !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    height: 44px !important;
    padding-bottom: 12px !important;
    padding-top: 12px !important;
}

.keyword-field {
    flex: 1.35;
}

.search-btn,
.ad-btn,
.show-more-btn,
.newslatter__form button {
    background: linear-gradient(135deg, var(--bc-brand), var(--bc-brand-dark)) !important;
    border: 0 !important;
    border-radius: 18px !important;
    box-shadow: 0 16px 34px rgba(239, 63, 82, 0.28) !important;
    color: #fff !important;
    font-weight: 850 !important;
}

.search-btn {
    border-radius: 15px !important;
    font-size: 14px !important;
    height: 46px !important;
    line-height: 1 !important;
    max-height: 46px !important;
    min-height: 46px;
    padding: 10px 22px !important;
}

.hero__search__form form button.search-btn {
    height: 46px !important;
    line-height: 1 !important;
    padding: 10px 22px !important;
}

.hero__search__form .search-field,
.hero__search__form .search-select,
.hero__search__form .search-input {
    height: 46px !important;
}

.search-btn:hover,
.ad-btn:hover,
.show-more-btn:hover,
.newslatter__form button:hover {
    box-shadow: 0 20px 42px rgba(239, 63, 82, 0.34) !important;
    transform: translateY(-2px);
}

.search-suggestions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.rtl .search-suggestions {
    justify-content: center;
}

.suggestion-badge {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 999px !important;
    color: #fff !important;
    display: inline-flex;
    gap: 8px;
    line-height: 1;
    text-decoration: none !important;
    transition: transform 0.2s ease, background 0.2s ease;
}

.suggestion-badge:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    transform: translateY(-2px);
}

.featured-ads-section,
.best-ratings-section,
.cities-section {
    overflow: hidden;
    position: relative;
}

.featured-ads-section {
    background:
        radial-gradient(circle at 8% 0%, rgba(239, 63, 82, 0.12), transparent 30%),
        linear-gradient(180deg, #fff 0%, #f7fafc 100%) !important;
    padding: 104px 0 !important;
}

.ads-section-header,
.best-ratings-section .section-title,
.cities-section .section-title {
    margin-bottom: 52px !important;
}

.ads-section-header h3,
.best-ratings-section .section-title h2,
.cities-section .section-title h2 {
    color: var(--bc-ink) !important;
    font-size: clamp(32px, 4vw, 48px) !important;
    font-weight: 900 !important;
    line-height: 1.08 !important;
}

.ads-section-header p,
.best-ratings-section .section-title p,
.cities-section .section-title p {
    color: var(--bc-muted) !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
}

.ads-section-header h3::before {
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.24);
    border-radius: 999px;
    color: #087f73;
    content: "Sponsored Businesses";
    display: table;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 auto 14px;
    padding: 8px 14px;
    text-transform: uppercase;
}

.ad-card {
    background: var(--bc-surface) !important;
    border: 1px solid var(--bc-line);
    border-radius: 30px !important;
    box-shadow: var(--bc-shadow) !important;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    min-height: 460px;
    overflow: hidden;
}

.ads-slider .swiper-container {
    overflow: hidden;
    position: relative;
}

.ads-slider .swiper-wrapper {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.ads-slider .swiper-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.ad-image-wrapper,
.ad-image-wrapper img {
    height: 100% !important;
    min-height: 460px;
}

.ad-image-wrapper::after {
    background: linear-gradient(90deg, transparent, rgba(18, 26, 36, 0.22));
    content: "";
    inset: 0;
    position: absolute;
}

.ad-badge {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--bc-brand) !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
}

.ad-content {
    align-self: center;
    padding: 42px !important;
}

.ad-content h3 {
    color: var(--bc-ink) !important;
    font-size: clamp(26px, 3vw, 38px) !important;
    font-weight: 900 !important;
}

.ad-content p {
    color: var(--bc-muted) !important;
}

.swiper-pagination-bullet-active {
    background: var(--bc-brand) !important;
}

.swiper-pagination {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 22px;
    margin-bottom: 34px;
    position: static !important;
}

.bc-slider-dot {
    background: #d8e0e8;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    height: 8px;
    padding: 0;
    transition: width 0.2s ease, background 0.2s ease;
    width: 8px;
}

.bc-slider-dot.active {
    background: var(--bc-brand);
    width: 24px;
}

.sponsored-view-all-btn {
    display: table !important;
    margin: 18px auto 0 !important;
}

.best-ratings-section {
    background:
        linear-gradient(180deg, #121a24 0%, #192638 42%, #f7f9fc 42%, #f7f9fc 100%) !important;
    padding: 104px 0 !important;
}

.best-ratings-section .section-title h2 {
    color: #fff !important;
}

.best-ratings-section .section-title p {
    color: rgba(255, 255, 255, 0.72) !important;
}

.most__search__tab {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    padding: 12px;
}

.category-tab-btn {
    background: rgba(255, 255, 255, 0.11) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 16px !important;
    color: #fff !important;
    max-width: 240px;
}

.category-tab-btn span:not(.badge-count) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-tab-btn.active {
    background: #fff !important;
    color: var(--bc-ink) !important;
    transform: translateY(-2px);
}

.category-tab-btn .badge-count {
    background: rgba(255, 255, 255, 0.16) !important;
    color: inherit !important;
}

.category-tab-btn.active .badge-count {
    background: rgba(239, 63, 82, 0.12) !important;
    color: var(--bc-brand) !important;
}

.business-card {
    background: #fff !important;
    border: 1px solid var(--bc-line);
    border-radius: 26px !important;
    box-shadow: 0 18px 45px rgba(18, 26, 36, 0.10) !important;
    overflow: hidden;
}

.business-card:hover,
.city-card:hover {
    box-shadow: 0 28px 65px rgba(18, 26, 36, 0.16) !important;
    transform: translateY(-8px);
}

.business-card-image {
    height: 250px !important;
}

.business-card-image > div {
    background: linear-gradient(to top, rgba(6, 14, 24, 0.92), rgba(6, 14, 24, 0.06)) !important;
}

.business-card-content {
    padding: 22px !important;
}

.business-card-content a {
    border-radius: 16px !important;
    box-shadow: 0 14px 30px rgba(239, 63, 82, 0.22);
    padding: 12px 18px !important;
}

.cities-section {
    background: #fff !important;
    padding: 104px 0 !important;
}

.city-card {
    border: 1px solid var(--bc-line) !important;
    border-radius: 26px !important;
    box-shadow: 0 16px 42px rgba(18, 26, 36, 0.10) !important;
    height: 230px !important;
}

.city-image {
    height: 100% !important;
}

.city-content h5 {
    font-size: 21px !important;
}

.newslatter {
    background:
        radial-gradient(circle at 12% 0%, rgba(239, 63, 82, 0.28), transparent 30%),
        linear-gradient(135deg, #121a24 0%, #213247 100%) !important;
    padding: 54px 0 !important;
}

.newslatter .row {
    align-items: center;
}

.bc-autocomplete {
    position: relative;
}

.bc-autocomplete-panel {
    background: #fff;
    border: 1px solid rgba(229, 235, 242, 0.96);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(18, 26, 36, 0.18);
    left: 0;
    margin-top: 10px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 20020;
}

.bc-autocomplete-item {
    align-items: center;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #eef2f6;
    color: #121a24;
    display: grid;
    gap: 12px;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    padding: 12px 14px;
    text-align: left;
    width: 100%;
}

.bc-autocomplete-item:last-child {
    border-bottom: 0;
}

.bc-autocomplete-item:hover,
.bc-autocomplete-item:focus {
    background: #f8fafc;
    outline: 0;
}

.bc-autocomplete-icon {
    align-items: center;
    background: rgba(239, 63, 82, 0.10);
    border-radius: 12px;
    color: #ef3f52;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.bc-autocomplete-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.bc-autocomplete-copy strong,
.bc-autocomplete-copy small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bc-autocomplete-copy strong {
    color: #121a24;
    font-size: 14px;
    font-weight: 850;
}

.bc-autocomplete-copy small {
    color: #6b7685;
    font-size: 12px;
    font-weight: 700;
}

.bc-autocomplete-type {
    background: #f1f5f9;
    border-radius: 999px;
    color: #526071;
    font-size: 11px;
    font-weight: 850;
    padding: 5px 8px;
}

@media (max-width: 767px) {
    .bc-autocomplete-panel {
        border-radius: 14px;
        left: 0;
        right: 0;
    }

    .bc-autocomplete-item {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .bc-autocomplete-type {
        display: none;
    }
}

/* Polished autocomplete search experience */
.hero__search__form .search-form {
    align-items: stretch !important;
    display: grid !important;
    grid-template-columns: minmax(260px, 1.45fr) minmax(190px, 0.95fr) minmax(190px, 0.95fr) auto;
    gap: 8px !important;
    width: 100%;
}

.hero__search__form .search-field {
    background: #fff !important;
    border: 1px solid #e7edf4 !important;
    border-radius: 16px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
    min-height: 52px !important;
    min-width: 0 !important;
    overflow: visible;
}

.hero__search__form .keyword-field {
    flex: none;
}

.hero__search__form .field-icon {
    align-items: center;
    background: rgba(239, 63, 82, 0.10);
    border-radius: 12px;
    display: inline-flex;
    flex: 0 0 34px;
    height: 34px;
    justify-content: center;
    margin-left: 10px;
    padding: 0 !important;
    width: 34px;
}

.hero__search__form .search-input,
.hero__search__form .search-select {
    height: 50px !important;
    min-width: 0;
    padding: 0 12px !important;
}

.hero__search__form .search-input {
    line-height: 50px;
}

.hero__search__form .search-btn {
    align-items: center;
    align-self: stretch;
    border-radius: 16px !important;
    display: inline-flex;
    gap: 9px;
    height: 52px !important;
    justify-content: center;
    min-width: 132px;
    padding: 0 24px !important;
    white-space: nowrap;
}

.hero__search__form .bc-autocomplete-panel {
    border-radius: 20px;
    left: -1px;
    margin-top: 12px;
    min-width: min(460px, calc(100vw - 36px));
    right: auto;
}

.filter__search.bc-autocomplete {
    overflow: visible !important;
    z-index: 20;
}

.filter__search .bc-autocomplete-panel {
    border-radius: 18px;
    left: 0;
    margin-top: 8px;
    right: 0;
}

.bc-autocomplete-panel {
    animation: bcAutocompleteIn 0.16s ease both;
}

.bc-autocomplete-item {
    cursor: pointer;
    min-height: 66px;
    transition: background 0.18s ease, transform 0.18s ease;
}

.bc-autocomplete-item:hover,
.bc-autocomplete-item:focus {
    transform: translateX(2px);
}

.rtl .hero__search__form .field-icon {
    margin-left: 0;
    margin-right: 10px;
}

.rtl .bc-autocomplete-item {
    text-align: right;
}

.rtl .bc-autocomplete-item:hover,
.rtl .bc-autocomplete-item:focus {
    transform: translateX(-2px);
}

@keyframes bcAutocompleteIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199px) {
    .hero__search__form .search-form {
        grid-template-columns: minmax(220px, 1.35fr) minmax(170px, 1fr) minmax(170px, 1fr);
    }

    .hero__search__form .search-btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero__search__form {
        border-radius: 22px !important;
        padding: 8px !important;
    }

    .hero__search__form .search-form {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 9px !important;
    }

    .hero__search__form .search-field,
    .hero__search__form .search-btn {
        width: 100% !important;
    }

    .hero__search__form .bc-autocomplete-panel {
        min-width: 100%;
        width: 100%;
    }

    .bc-autocomplete-item {
        min-height: 60px;
        padding: 11px 12px;
    }
}

.newslatter__text h3 {
    color: #fff !important;
    font-size: 30px !important;
    font-weight: 900 !important;
}

.newslatter__text p {
    color: rgba(255, 255, 255, 0.68) !important;
}

.newslatter__form {
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px !important;
    padding: 8px !important;
}

.newslatter__form input {
    background: #fff !important;
    border: 0 !important;
    border-radius: 16px !important;
    color: var(--bc-ink) !important;
}

.footer {
    background: #0f1722 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.70);
    padding-top: 72px !important;
}

.footer__grid {
    align-items: flex-start !important;
    row-gap: 34px;
}

.footer__about,
.footer__address,
.footer__widget,
.footer__apps-block {
    margin-bottom: 28px;
}

.footer__about__logo {
    margin-bottom: 22px !important;
}

.footer__about__logo img {
    max-width: 172px;
}

.footer__about p,
.footer__address ul li p,
.footer__copyright__text p,
.footer__copyright__links a,
.footer__widget ul li a,
.footer__apps-block p {
    color: rgba(255, 255, 255, 0.68) !important;
}

.footer__address ul li span,
.footer__widget h4,
.footer__address h4,
.footer__apps-block h4 {
    color: #fff !important;
    font-weight: 850 !important;
}

.footer__address h4,
.footer__widget h4,
.footer__apps-block h4 {
    font-size: 18px;
    margin-bottom: 22px !important;
}

.footer__address ul {
    display: grid;
    gap: 18px;
}

.footer__address ul li {
    display: grid;
    gap: 6px;
    margin: 0 !important;
}

.footer__address ul li span {
    align-items: center;
    display: inline-flex !important;
    gap: 9px;
    letter-spacing: 0;
}

.footer__address ul li span i {
    align-items: center;
    background: rgba(239, 63, 82, 0.14);
    border: 1px solid rgba(239, 63, 82, 0.22);
    border-radius: 10px;
    color: #ff6374;
    display: inline-flex;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.footer__address ul li p {
    margin: 0 !important;
}

.footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 3px;
}

.footer__social a {
    align-items: center;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px !important;
    color: #fff !important;
    display: inline-flex !important;
    height: 44px !important;
    justify-content: center;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease !important;
    width: 44px !important;
}

.footer__social a i {
    font-size: 17px;
}

.footer__social a:hover {
    background: var(--bc-brand) !important;
    border-color: var(--bc-brand);
    transform: translateY(-3px);
}

.footer__widget ul {
    display: grid !important;
    gap: 12px;
    grid-template-columns: 1fr;
    margin-bottom: 22px !important;
}

.footer__widget ul li {
    margin: 0 !important;
}

.footer__widget ul li a:hover,
.footer__copyright__links a:hover {
    color: #fff !important;
}

.footer__widget ul li a {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    white-space: nowrap;
}

.footer__widget ul li a::before {
    background: rgba(239, 63, 82, 0.92);
    border-radius: 999px;
    content: "";
    height: 6px;
    width: 6px;
}

.footer__apps {
    display: grid;
    flex-wrap: wrap;
    gap: 10px;
    justify-items: start;
}

.footer__apps a {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    display: inline-flex;
    padding: 7px;
    transition: transform 0.2s ease, background 0.2s ease;
    width: fit-content;
}

.footer__apps a:hover {
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-2px);
}

.footer__apps img {
    border-radius: 8px;
    width: 132px;
}

.footer__copyright {
    background: transparent !important;
    border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
    margin-top: 22px !important;
    padding-top: 24px !important;
}

.footer__copyright__text,
.footer__copyright__text p,
.footer__copyright__links a {
    color: rgba(255, 255, 255, 0.72) !important;
}

.footer__copyright__links a:hover {
    color: #fff !important;
}

@media (max-width: 768px) {
    .footer {
        padding-top: 46px !important;
        padding-bottom: 0 !important;
    }

    .footer__about,
    .footer__address,
    .footer__widget,
    .footer__apps-block {
        margin-bottom: 24px !important;
        text-align: left;
    }

    .footer__grid {
        row-gap: 10px !important;
    }

    .footer__grid > [class*="col-"] {
        min-width: 0;
    }

    .footer__about__logo {
        margin-bottom: 14px !important;
    }

    .footer__about__logo img {
        max-width: 142px;
    }

    .footer__about p,
    .footer__address ul li p,
    .footer__widget ul li a,
    .footer__apps-block p,
    .footer__copyright__text p,
    .footer__copyright__links a {
        font-size: 14px !important;
        line-height: 1.65 !important;
    }

    .footer__address h4,
    .footer__widget h4,
    .footer__apps-block h4 {
        font-size: 16px !important;
        margin-bottom: 14px !important;
    }

    .footer__address ul,
    .footer__widget ul {
        float: none !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .footer__address ul {
        gap: 14px !important;
    }

    .footer__address ul li {
        float: none !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .footer__address ul li span {
        font-size: 14px !important;
        line-height: 1.35 !important;
    }

    .footer__address ul li p,
    .footer__copyright__text p,
    .footer__copyright__links a {
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .footer__social {
        gap: 8px !important;
    }

    .footer__social a {
        border-radius: 12px !important;
        height: 38px !important;
        width: 38px !important;
    }

    .footer__social a i {
        font-size: 15px !important;
    }

    .footer__widget {
        overflow: visible !important;
    }

    .footer__widget ul {
        gap: 9px !important;
        margin-bottom: 18px !important;
    }

    .footer__widget ul li a {
        line-height: 1.45 !important;
        max-width: 100%;
        white-space: normal;
    }

    .footer__apps {
        grid-template-columns: repeat(2, minmax(0, max-content));
        justify-content: start;
    }

    .footer__apps a {
        border-radius: 12px !important;
        padding: 6px !important;
    }

    .footer__apps img {
        width: 116px !important;
    }

    .footer__copyright {
        margin-top: 8px !important;
        padding: 20px 0 18px !important;
        text-align: center !important;
    }

    .footer__copyright__text,
    .footer__copyright__links {
        float: none !important;
        text-align: center !important;
        width: 100%;
    }

    .footer__copyright__text {
        margin-bottom: 12px !important;
    }

    .footer__copyright__links {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 14px;
        justify-content: center;
    }

    .footer__copyright__links a {
        margin: 0 !important;
    }

    .rtl .footer__about,
    .rtl .footer__address,
    .rtl .footer__widget,
    .rtl .footer__apps-block {
        text-align: right;
    }

    .rtl .footer__apps {
        justify-content: end;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: auto !important;
        padding: 112px 0 64px !important;
    }

    .ad-card {
        grid-template-columns: 1fr;
    }

    .ad-image-wrapper,
    .ad-image-wrapper img {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 96px 0 50px !important;
    }

    .hero .container-fluid {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .hero__text {
        text-align: center;
    }

    .rtl .hero__text {
        text-align: center;
    }

    .hero__text .section-title p {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .search-suggestions,
    .rtl .search-suggestions {
        justify-content: center;
    }

    .hero__search__form,
    .newslatter__form {
        border-radius: 22px !important;
    }

    .newslatter {
        padding: 40px 0 !important;
    }

    .newslatter__text {
        margin-bottom: 18px;
    }

    .newslatter__text h3 {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }

    .newslatter__text p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .newslatter__form {
        display: grid !important;
        gap: 10px;
        padding: 8px !important;
    }

    .newslatter__form input {
        border-radius: 14px !important;
        height: 50px !important;
        padding: 0 16px !important;
        width: 100% !important;
    }

    .newslatter__form button {
        border-radius: 14px !important;
        height: 48px !important;
        padding: 0 18px !important;
        position: static !important;
        width: 100% !important;
    }

    .search-form {
        flex-direction: column;
    }

    .search-field,
    .search-btn {
        width: 100%;
    }

    .featured-ads-section,
    .best-ratings-section,
    .cities-section {
        padding: 72px 0 !important;
    }

    .ad-content {
        padding: 28px !important;
    }

    .category-tab-btn {
        max-width: 100%;
    }

    .city-card {
        height: 190px !important;
    }
}

@media (max-width: 420px) {
    .footer {
        padding-top: 38px !important;
    }

    .footer__grid > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer__about p,
    .footer__address ul li p,
    .footer__widget ul li a,
    .footer__apps-block p,
    .footer__copyright__text p,
    .footer__copyright__links a {
        font-size: 13px !important;
    }

    .footer__apps {
        grid-template-columns: 1fr;
    }

    .footer__apps img {
        width: 124px !important;
    }
}
