/* Professional Marketplace Hero */
.marketplace-hero {
    background: linear-gradient(to bottom, #003580 0%, #0057b8 100%);
    padding: 100px 0 150px;
    position: relative;
}

.hero-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.hero-header {
    text-align: center;
    margin-bottom: 50px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
    background: rgba(0,0,0,0.2);
    border-radius: 3px 3px 0 0;
    padding: 0;
}

.service-tab {
    flex: 1;
    max-width: 200px;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.service-tab:last-child {
    border-right: none;
}

.service-tab:hover {
    background: rgba(255,255,255,0.1);
}

.service-tab.active {
    background: #febb02;
    color: #003580;
}

.service-tab i {
    font-size: 18px;
}

/* Search Form */
.search-form-wrapper {
    background: #ffffff;
    border-radius: 0 0 3px 3px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.search-row {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.search-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.search-input-group.destination {
    flex: 2;
}

.search-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #bdbdbd;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    background: #ffffff;
    transition: border-color 0.2s;
}

.search-input:focus {
    outline: none;
    border-color: #0071c2;
}

.search-input::placeholder {
    color: #999999;
    font-weight: 400;
}

.search-button {
    padding: 14px 35px;
    background: #0071c2;
    border: none;
    border-radius: 3px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-button:hover {
    background: #005a9c;
}

.search-button i {
    font-size: 18px;
}

/* Quick Links */
.quick-links {
    margin-top: 20px;
    text-align: center;
}

.quick-link {
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    margin: 0 12px;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.quick-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Promotional Offers Slider - 3 Cards at Once */
.offers-cards-section {
    padding: 60px 0;
    background: #ffffff;
}

.offers-slider-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.offers-cards-slider {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
    transition: transform 0.5s ease;
}

.offer-card {
    min-width: calc((100% - 40px) / 3);
    flex: 0 0 calc((100% - 40px) / 3);
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-decoration: none;
    display: block;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.offer-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offer-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
}

.offer-card-placeholder i {
    font-size: 80px;
    color: rgba(255,255,255,0.3);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.slider-arrow:hover {
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.slider-arrow-left {
    left: 0;
}

.slider-arrow-right {
    right: 0;
}

.slider-arrow i {
    font-size: 24px;
    color: #003580;
}

/* Slider Dots */
.offers-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.offers-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
}

.offers-dots .dot:hover {
    background: #9ca3af;
}

.offers-dots .dot.active {
    background: #0071c2;
    width: 32px;
    border-radius: 6px;
}

/* Popular Attractions Section */
.popular-attractions-section {
    padding: 30px 0 10px 0;
    background: linear-gradient(to bottom, rgba(224,242,241,0.5) 0%, rgba(240,248,255,0.3) 100%);
}

.section-header {
    text-align: left;
    margin-bottom: 15px;
    padding-left: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Destination Tabs */
.destination-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    padding-left: 20px;
}

.destination-tab {
    padding: 12px 24px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.destination-tab:first-child {
    background: #1a1a1a;
    color: #ffffff;
}

.destination-tab:hover {
    background: #e8e8e8;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.destination-tab.active {
    background: #1a1a1a;
    color: #ffffff;
}

/* Trips Grid */
.trips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    min-height: 300px;
}

.loading-spinner {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #666;
}

.loading-spinner i {
    font-size: 32px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-results,
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-size: 16px;
    color: #666;
}

/* Trip Card */
.trip-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 0;
    margin: 0;
}

.trip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.trip-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: #e8e8e8;
    overflow: hidden;
}

.trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trip-rating {
    display: none;
}

.rating-badge {
    display: none;
}

.rating-reviews {
    display: none;
}

.trip-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.trip-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.8),
        0 4px 8px rgba(0,0,0,0.6),
        0 1px 2px rgba(0,0,0,1);
}

.trip-price {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.75);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Car Rentals Section */
.car-rentals-section {
    padding: 10px 0 80px 0;
    background: linear-gradient(to bottom, rgba(240,248,255,0.3) 0%, rgba(224,242,241,0.5) 100%);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0071c2;
    font-size: 15px;
    font-weight: 500;
}

.trust-badge i {
    font-size: 20px;
}

/* Car Destination Tabs */
.car-destination-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    padding-left: 20px;
}

.car-destination-tab {
    padding: 12px 24px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.car-destination-tab:first-child {
    background: #1a1a1a;
    color: #ffffff;
}

.car-destination-tab:hover {
    background: #e8e8e8;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.car-destination-tab.active {
    background: #1a1a1a;
    color: #ffffff;
}

/* Cars Grid */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    min-height: 300px;
}

/* Car Card */
.car-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.car-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transform: translateY(-4px);
    color: inherit;
}

.car-image-wrapper {
    width: 100%;
    height: 240px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.car-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.car-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.car-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.car-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.car-supplier-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
    max-width: 80px;
}

.car-rating {
    background: #003b95;
    color: #ffffff;
    padding: 5px 11px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.car-price {
    font-size: 15px;
    color: #666666;
    margin: 0;
    margin-top: auto;
}

.car-price strong {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    display: inline-block;
}

/* Big Discounts Card */
.big-discounts-card {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-height: 380px;
}

.big-discounts-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-go-now-car {
    background: #0071c2;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-go-now-car:hover {
    background: #005a9c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,113,194,0.4);
    color: #ffffff;
}

/* Bike Rentals Section */
.bike-rentals-section {
    padding: 10px 0 80px 0;
    background: linear-gradient(to bottom, rgba(224,242,241,0.5) 0%, rgba(240,248,255,0.3) 100%);
}

/* Bike Destination Tabs */
.bike-destination-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    padding-left: 20px;
}

.bike-destination-tab {
    padding: 12px 24px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.bike-destination-tab:first-child {
    background: #1a1a1a;
    color: #ffffff;
}

.bike-destination-tab:hover {
    background: #e8e8e8;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.bike-destination-tab.active {
    background: #1a1a1a;
    color: #ffffff;
}

/* Bikes Grid */
.bikes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    min-height: 300px;
}

/* Bike Card */
.bike-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.bike-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transform: translateY(-4px);
    color: inherit;
}

.bike-image-wrapper {
    width: 100%;
    height: 240px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.bike-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.bike-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.bike-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.bike-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bike-supplier-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
    max-width: 80px;
}

.bike-rating {
    background: #003b95;
    color: #ffffff;
    padding: 5px 11px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.bike-price {
    font-size: 15px;
    color: #666666;
    margin: 0;
    margin-top: auto;
}

.bike-price strong {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    display: inline-block;
}

.btn-go-now-bike {
    background: #0071c2;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-go-now-bike:hover {
    background: #005a9c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,113,194,0.4);
    color: #ffffff;
}

/* Explore More Card */
.explore-more-card {
    background: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=800&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.explore-more-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.explore-more-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.25);
    border-radius: 12px;
}

.explore-more-content {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}

.explore-more-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 28px 0;
    line-height: 1.3;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.btn-go-now {
    display: inline-block;
    padding: 16px 48px;
    background: #0057e7;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0,87,231,0.4);
}

.btn-go-now:hover {
    background: #003db5;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,87,231,0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .marketplace-hero {
        padding: 60px 0 100px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Keep tabs in one row on tablet */
    .service-tabs {
        flex-wrap: nowrap;
    }
    
    .service-tab {
        flex: 1;
        max-width: none;
        font-size: 13px;
        padding: 14px 15px;
    }
    
    .search-row {
        flex-wrap: wrap;
    }
    
    .search-input-group {
        flex: 1 1 calc(50% - 8px);
        min-width: 200px;
    }
    
    .search-input-group.destination {
        flex: 1 1 100%;
    }
    
    .search-button {
        flex: 1 1 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    /* Offers Slider Tablet - Show 2 cards */
    .offers-cards-section {
        padding: 40px 0;
    }
    
    .offers-slider-container {
        padding: 0 20px;
    }
    
    .offer-card {
        min-width: calc((100% - 20px) / 2);
        flex: 0 0 calc((100% - 20px) / 2);
        height: 240px;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
    
    /* Popular Attractions */
    .popular-attractions-section {
        padding: 20px 0 10px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Car Rentals Tablet */
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Bike Rentals Tablet */
    .bikes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Mobile: One row with icons only */
    .service-tabs {
        flex-wrap: nowrap;
    }
    
    .service-tab {
        flex: 1;
        padding: 16px 8px;
        min-width: 60px;
    }
    
    .service-tab span {
        display: none;
    }
    
    .service-tab i {
        font-size: 24px;
        margin: 0;
    }
    
    .search-form-wrapper {
        padding: 20px 15px;
    }
    
    .search-input-group {
        flex: 1 1 100%;
    }
    
    /* Offers Slider Mobile - Show 1 card */
    .offers-cards-section {
        padding: 30px 0;
    }
    
    .offers-slider-container {
        padding: 0 50px;
    }
    
    .offer-card {
        min-width: 100%;
        height: 200px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow i {
        font-size: 20px;
    }
    
    .offers-dots {
        margin-top: 20px;
    }
    
    /* Popular Attractions Mobile */
    .section-title {
        font-size: 1.75rem;
    }
    
    .destination-tabs {
        gap: 10px;
    }
    
    .destination-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .trips-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .explore-more-card {
        min-height: 250px;
    }
    
    .explore-more-content h3 {
        font-size: 1.25rem;
    }
    
    /* Car Rentals Mobile */
    .car-rentals-section {
        padding: 10px 0 50px 0;
    }
    
    .car-destination-tabs {
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .car-destination-tab {
        padding: 10px 20px;
        font-size: 14px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .car-card {
        min-height: 320px;
    }
    
    .car-image-wrapper {
        height: 180px;
        padding: 25px;
    }
    
    .car-image-wrapper img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
    }
    
    .big-discounts-card {
        min-height: 250px;
        padding: 30px 20px;
    }
    
    .big-discounts-content h3 {
        font-size: 20px;
    }
    
    .trust-badges {
        gap: 20px;
        font-size: 13px;
    }
    
    /* Bike Rentals Mobile */
    .bike-rentals-section {
        padding: 10px 0 50px 0;
    }
    
    .bike-destination-tabs {
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .bike-destination-tab {
        padding: 10px 20px;
        font-size: 14px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .bikes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .bike-card {
        min-height: 320px;
    }
    
    .bike-image-wrapper {
        height: 180px;
        padding: 25px;
    }
    
    .bike-image-wrapper img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
    }
    
    /* Offers Section Mobile Spacing */
    .special-area {
        margin-top: 50px;
        padding-top: 30px;
    }
}

/* Marketplace Offers - Wider & Shorter Style */
.special-area {
    margin-bottom: 0;
    padding: 40px 0;
    background: linear-gradient(to bottom, #ffffff 0%, rgba(224,242,241,0.5) 100%);
}

.special-area .offer-banner img {
    height: 220px !important;
    object-fit: cover;
}

@media (max-width: 992px) {
    .special-area {
        margin-bottom: 0;
        padding: 30px 0;
    }
    
    .special-area .offer-banner img {
        height: 200px !important;
    }
}

@media (max-width: 576px) {
    .special-area {
        margin-bottom: 0;
        padding: 80px 0 30px 0;
    }
    
    .special-area .offer-banner img {
        height: 180px !important;
    }
}

/* Mobile App Download Section */
.mobile-app-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
    position: relative;
    overflow: hidden;
}

.mobile-app-section::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1200&q=80') center/cover no-repeat;
    border-radius: 50% 0 0 50%;
    opacity: 0.3;
}

.mobile-app-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.mobile-app-left {
    flex: 1;
    max-width: 600px;
}

.mobile-app-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.mobile-app-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.app-feature i {
    font-size: 24px;
    color: #fbbf24;
}

.mobile-app-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.app-stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px 0;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.mobile-app-stores {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.store-badge {
    display: block;
    transition: transform 0.2s;
}

.store-badge:hover {
    transform: translateY(-3px);
}

.store-badge img {
    height: 44px;
    width: auto;
    border-radius: 8px;
}

.scan-instruction {
    color: rgba(255,255,255,0.95);
    font-size: 15px;
    margin: 0;
}

.mobile-app-right {
    flex-shrink: 0;
}

.qr-code-container {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.qr-code-placeholder {
    width: 200px;
    height: 200px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.qr-code-placeholder i {
    font-size: 60px;
    color: #9ca3af;
}

.qr-code-placeholder p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

/* SEO Links Section */
.seo-links-section {
    padding: 40px 0 50px 0;
    background: linear-gradient(to bottom, rgba(240,248,255,0.3) 0%, rgba(255,255,255,1) 100%);
}

.seo-links-section .section-header {
    margin-bottom: 20px;
}

.seo-links-section .section-title {
    font-size: 1.75rem;
    font-weight: 700;
}

/* SEO Service Tabs */
.seo-service-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    padding-left: 20px;
}

.seo-service-tab {
    padding: 8px 16px;
    background: #f5f5f5;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 6px;
}

.seo-service-tab i {
    font-size: 15px;
}

.seo-service-tab:hover {
    background: #e8e8e8;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.seo-service-tab.active {
    background: #0071c2;
    color: #ffffff;
}

/* SEO Links Grid */
.seo-links-grid {
    position: relative;
    min-height: 150px;
}

.seo-links-content {
    display: none;
}

.seo-links-content.active {
    display: block;
}

.seo-links-columns {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 6px 15px;
    padding: 0 20px;
}

.seo-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    color: #0071c2;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 1px solid transparent;
}

.seo-link i {
    font-size: 14px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.2s;
}

.seo-link:hover {
    color: #003580;
    text-decoration: none;
    transform: translateX(3px);
}

.seo-link:hover i {
    opacity: 1;
    transform: scale(1.15);
    color: #0057b8;
}

/* Responsive for SEO Links */
@media (max-width: 1200px) {
    .seo-links-columns {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (max-width: 992px) {
    .seo-links-section {
        padding: 30px 0 40px 0;
    }
    
    .seo-links-section .section-title {
        font-size: 1.5rem;
    }
    
    .seo-links-columns {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px 12px;
    }
    
    .seo-service-tabs {
        gap: 8px;
    }
    
    .seo-service-tab {
        padding: 7px 14px;
        font-size: 12px;
    }
    
    .seo-service-tab i {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .seo-links-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .mobile-app-section {
        padding: 60px 0;
    }
    
    .mobile-app-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .mobile-app-left {
        max-width: 100%;
    }
    
    .mobile-app-title {
        font-size: 2rem;
    }
    
    .mobile-app-features {
        justify-content: center;
    }
    
    .mobile-app-stats {
        justify-content: center;
    }
    
    .mobile-app-stores {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .mobile-app-section {
        padding: 40px 0;
    }
    
    .mobile-app-section::before {
        width: 100%;
        border-radius: 0;
        opacity: 0.15;
    }
    
    .mobile-app-title {
        font-size: 1.75rem;
    }
    
    .mobile-app-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .mobile-app-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .app-stat {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .mobile-app-stores {
        flex-direction: column;
        align-items: center;
    }
    
    .qr-code-placeholder {
        width: 160px;
        height: 160px;
    }
    
    .qr-code-placeholder i {
        font-size: 50px;
    }
    
    .seo-links-section {
        padding: 20px 0 30px 0;
    }
    
    .seo-links-section .section-title {
        font-size: 1.25rem;
    }
    
    .seo-service-tabs {
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    
    .seo-service-tab {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .seo-links-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    
    .seo-link {
        padding: 8px 0;
        font-size: 12px;
    }
}
