/* Search Page Styles */
.search-container { background: var(--color-bg); }

.search-container .search-hero { background: white; border-bottom: 1px solid var(--color-border); }

/* Featured Carousel */
.featured-carousel-section {
    padding: 40px 0 60px;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.featured-carousel { position: relative; }

.carousel-track { 
    display: flex; 
    gap: 16px; 
    overflow-x: auto; 
    scroll-behavior: smooth; 
    padding: 8px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-card { 
    flex: 0 0 320px; 
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--morph-shadow-1), var(--morph-inset);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-card:hover { 
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12), var(--morph-inset);
}

.cc-image { position: relative; height: 180px; overflow: hidden; }

.cc-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.3s ease;
}

.carousel-card:hover .cc-image img { transform: scale(1.05); }

.cc-badge { 
    position: absolute; 
    top: 12px; 
    right: 12px; 
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white; 
    padding: 4px 12px; 
    border-radius: 20px; 
    font-size: 12px; 
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.cc-body { padding: 20px; }

.cc-title { 
    font-size: 18px; 
    font-weight: 700; 
    color: var(--color-text); 
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.cc-meta { 
    display: flex; 
    gap: 16px; 
    margin-bottom: 12px; 
    font-size: 14px; 
    color: var(--color-text-muted);
}

.cc-cat, .cc-loc { display: flex; align-items: center; gap: 4px; }

.cc-footer { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.cc-provider { font-size: 14px; color: var(--color-text-muted); }

.cc-price { 
    font-weight: 700; 
    color: var(--color-primary); 
    font-size: 16px;
}

.carousel-nav { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    display: flex; 
  align-items: center;
  justify-content: center;
    font-size: 24px; 
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-nav.prev { left: -24px; }

.carousel-nav.next { right: -24px; }

.carousel-nav:hover { 
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-50%) scale(1.05);
}

/* Inline Filters */
.inline-filters-section { 
    padding: 24px 0; 
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.inline-filters { 
    display: grid; 
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr 1fr 1fr auto; 
    gap: 12px; 
    align-items: end;
}

.inline-filters input[type="text"],
.inline-filters input[type="number"],
.inline-filters select {
    height: 48px;
    border-radius: 24px;
    padding: 0 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--morph-shadow-1), var(--morph-inset);
    font-size: 14px;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.inline-filters input[type="text"]:focus,
.inline-filters input[type="number"]:focus,
.inline-filters select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 79, 160, 0.1), var(--morph-shadow-1);
}

.inline-filters select:hover {
    border-color: rgba(0,0,0,0.12);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08), var(--morph-shadow-1);
}

.filter-actions {
    display: flex;
    gap: 8px;
    align-items: end;
}

.filter-actions .btn {
    height: 48px;
    border-radius: 24px;
    padding: 0 20px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
  display: flex;
  align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.filter-actions .btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(26, 79, 160, 0.2);
}

.filter-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 79, 160, 0.3);
}

.filter-actions .btn-secondary {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: var(--color-text);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.filter-actions .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

@media (max-width: 1100px) {
    .inline-filters { grid-template-columns: 1fr 1fr; }
    .filter-actions { grid-column: span 2; }
}

@media (max-width: 700px) {
    .inline-filters { grid-template-columns: 1fr; }
    .filter-actions { grid-column: span 1; }
    .carousel-nav { display: none; }
}

/* Results Section */
.results-section { 
    padding: 40px 0; 
    background: var(--color-bg);
}

.results-header { 
    text-align: center; 
    margin-bottom: 40px;
    padding: 0 20px;
}

.results-header h2 { 
    font-size: 32px; 
    font-weight: 800; 
    color: var(--color-text); 
    margin: 0 0 12px 0;
    background: linear-gradient(135deg, var(--color-text) 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results-count { 
    font-size: 16px; 
    color: var(--color-text-muted); 
    margin: 0;
}

/* Services Grid */
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
    gap: 24px; 
    margin-bottom: 40px;
}

.service-card { 
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.04),
        0 1px 3px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.service-card:hover { 
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.08),
        0 8px 16px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255,255,255,0.9);
    border-color: rgba(0,0,0,0.08);
}

.service-card-image { 
    position: relative; 
    height: 180px; 
  overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.service-card-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-image img { 
    transform: scale(1.08);
}

.service-card-badges { 
  position: absolute;
    top: 12px; 
    left: 12px; 
    right: 12px; 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start;
    z-index: 2;
}

.category-badge { 
    background: rgba(255,255,255,0.95);
    color: var(--color-text); 
    padding: 6px 12px; 
    border-radius: 20px; 
    font-size: 11px; 
    font-weight: 600;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.featured-badge { 
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 6px 12px; 
    border-radius: 20px; 
    font-size: 11px; 
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    border: 1px solid rgba(255,255,255,0.2);
}

.service-card-content { 
    padding: 20px; 
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.service-card-header h3 { 
    font-size: 18px; 
    font-weight: 700; 
    color: var(--color-text); 
    margin: 0 0 8px 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-provider { 
    display: flex; 
  align-items: center;
    gap: 6px; 
    margin-bottom: 10px; 
    font-size: 13px; 
    color: var(--color-text-muted);
    font-weight: 500;
}

.service-description { 
    color: var(--color-text-muted); 
    margin-bottom: 12px; 
    line-height: 1.5;
    font-size: 13px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-location { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    margin-bottom: 12px; 
    font-size: 13px; 
    color: var(--color-text-muted);
    font-weight: 500;
}

.service-metrics { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.01) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.service-price .price { 
    font-weight: 700; 
    color: var(--color-primary); 
    font-size: 16px;
    letter-spacing: -0.01em;
}

.service-price .free-price { 
    font-weight: 700; 
    color: #059669; 
    font-size: 14px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.service-rating { 
    display: flex; 
    align-items: center; 
    gap: 6px;
}

.stars { 
    font-size: 12px; 
    letter-spacing: 1px;
}

.rating-text { 
    font-size: 11px; 
    color: var(--color-text-muted);
    font-weight: 500;
}

.new-service { 
    font-size: 11px; 
    color: #059669; 
    font-weight: 600;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.service-stats { 
    margin-bottom: 16px; 
    font-size: 11px; 
    color: var(--color-text-muted);
    font-weight: 500;
    opacity: 0.8;
}

.service-card-actions { 
    display: flex; 
    gap: 8px;
}

.service-card-actions .btn { 
    flex: 1; 
    height: 40px; 
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.service-card-actions .btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
    box-shadow: 0 2px 8px rgba(26, 79, 160, 0.2);
}

.service-card-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 79, 160, 0.3);
}

.service-card-actions .btn-secondary {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(0,0,0,0.06);
    color: var(--color-text);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.service-card-actions .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* No Results */
.no-results { 
    text-align: center; 
    padding: 80px 20px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--morph-shadow-1), var(--morph-inset);
}

.no-results-icon { 
    font-size: 64px; 
    margin-bottom: 24px;
    opacity: 0.5;
}

.no-results h3 { 
    font-size: 24px; 
    font-weight: 700; 
    color: var(--color-text); 
    margin: 0 0 16px 0;
}

.no-results p { 
    color: var(--color-text-muted); 
    margin: 0 0 32px 0;
    font-size: 16px;
}

/* Pagination */
.pagination { 
    display: flex; 
    justify-content: center; 
    gap: 8px; 
    margin-top: 40px;
}

.pagination-btn {
    padding: 12px 16px; 
    border-radius: 12px; 
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--morph-shadow-1), var(--morph-inset);
}

.pagination-btn:hover { 
    background: var(--color-primary); 
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 79, 160, 0.3);
}

.pagination-btn.active { 
    background: var(--color-primary); 
    color: white;
    box-shadow: 0 4px 16px rgba(26, 79, 160, 0.3);
}

/* Single Service Carousel */
.carousel-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 50px;
    position: relative;
    letter-spacing: -0.02em;
}

.carousel-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
    border-radius: 3px;
}

.single-service-carousel {
    position: relative;
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-container {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 16px;
    box-shadow: var(--morph-shadow-1), var(--morph-inset);
    height: 480px !important;
    width: 100% !important;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 1;
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
}

.carousel-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transform: translateX(100%) scale(0.95) !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: none !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 20px !important;
}

.carousel-slide.active {
    opacity: 1 !important;
    transform: translateX(0) scale(1) !important;
    pointer-events: all !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 20px !important;
}

.service-showcase-card {
    background: var(--color-card-bg);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--color-border);
    box-shadow: var(--morph-shadow-1), var(--morph-inset);
    height: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: 1;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 0;
    user-select: none;
}

.service-showcase-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--morph-shadow-2), var(--morph-inset);
    border-color: var(--color-primary);
}

.service-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.ssc-image {
    position: relative;
    width: 45%;
    height: 100%;
    overflow: hidden;
    background: var(--color-bg);
    flex-shrink: 0;
}

.ssc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-showcase-card:hover .ssc-image img {
    transform: scale(1.05);
}

.ssc-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.ssc-content {
    padding: 28px;
    background: var(--color-card-bg);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 55%;
}

.ssc-title {
    font-size: 22px;
    font-weight: 700;
  color: var(--color-text);
    margin: 0 0 14px 0;
    line-height: 1.3;
}

.ssc-description {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 14px 0;
    font-weight: 400;
}

.ssc-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.ssc-category, .ssc-location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ssc-provider {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.ssc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0 0;
    border-top: 1px solid var(--color-border);
    margin-top: auto;
    flex-shrink: 0;
}

.ssc-price {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 16px;
}

.ssc-action {
    height: 40px;
    border-radius: 8px;
    padding: 0 20px;
    font-weight: 600;
    font-size: 14px;
    background: var(--color-primary);
    color: white;
    border: none;
    box-shadow: var(--morph-shadow-1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 2;
}

.ssc-action:hover {
    background: linear-gradient(180deg, #2f63d6, #1e40af);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(49, 92, 200, 0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}

/* Carousel Navigation for Single Service */


/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 12px 0;
    flex-wrap: nowrap;
    width: 100%;
}

.indicator {
    height: 13px;
    border-radius: 100%;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    flex-shrink: 0;
    flex-grow: 0;
    transform-origin: center;
    min-height: 13px;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--color-primary);
    transform: scale(1.2);
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(60, 121, 255, 0.3);
}

.indicator.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.indicator:hover {
    background: var(--color-primary);
    transform: scale(1.05);
    border-color: var(--color-primary);
    box-shadow: 0 1px 4px rgba(60, 121, 255, 0.2);
}

.indicator:hover::before {
    transform: translate(-50%, -50%) scale(0.8);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .single-service-carousel {
        max-width: 100%;
        padding: 0 60px;
    }
    
    .carousel-container {
        max-width: 900px;
    }
    
    .service-showcase-card {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .featured-carousel-section {
        padding: 15px 0 25px;
        min-height: 320px;
    }
    
    .carousel-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .carousel-title::after {
        width: 40px;
        height: 3px;
        bottom: -8px;
    }
    
    .single-service-carousel {
        width: 100%;
        padding: 0 15px;
    }

    .carousel-container {
        max-width: 100%;
        height: 360px;
        border-radius: 12px;
        box-shadow: var(--morph-shadow-1), var(--morph-inset);
    }
    
    .service-showcase-card {
        max-width: 100%;
        flex-direction: column;
        border-radius: 12px;
        box-shadow: var(--morph-shadow-1), var(--morph-inset);
    }
    
    .ssc-image {
        width: 100%;
        height: 160px;
        border-radius: 12px 12px 0 0;
    }
    
    .ssc-content {
        width: 100%;
        padding: 18px;
        border-radius: 0 0 12px 12px;
    }
    
    .ssc-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .ssc-description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    
    .ssc-meta {
        gap: 10px;
        margin-bottom: 10px;
        font-size: 12px;
    }
    
    .ssc-provider {
        gap: 5px;
        font-size: 12px;
        margin-bottom: 14px;
    }
    
    .ssc-footer {
        padding: 16px 0 0 0;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .ssc-price {
        font-size: 15px;
        text-align: center;
    }
    
    .ssc-action {
        height: 36px;
        border-radius: 6px;
        padding: 0 18px;
        font-size: 13px;
        justify-content: center;
    }
    
    .ssc-action:hover {
        background: linear-gradient(180deg, #2f63d6, #1e40af);
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(49, 92, 200, 0.35), inset 0 1px 0 rgba(255,255,255,0.25);
    }
    

    
    .ssc-badge {
        top: 12px;
        right: 12px;
        padding: 4px 12px;
        border-radius: 16px;
        font-size: 11px;
        box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    }
    
    .carousel-indicators {
        gap: 6px;
        margin-top: 16px;
        padding: 8px 0;
    }
    
    .indicator {
        width: 6px;
        height: 13px;
        transform-origin: center;
        flex-grow: 0;
        min-width: 6px;
        min-height: 13px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .featured-carousel-section {
        padding: 10px 0 15px;
        min-height: 280px;
    }
    
    .carousel-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .carousel-title::after {
        width: 30px;
        height: 2px;
        bottom: -6px;
    }
    
    .single-service-carousel {
        padding: 0 10px;
    }

    .carousel-container {
        height: 320px;
        border-radius: 8px;
    }
    
    .service-showcase-card {
        border-radius: 8px;
    }
    
    .ssc-image {
        height: 140px;
        border-radius: 8px 8px 0 0;
    }
    
    .ssc-content {
        padding: 14px;
        border-radius: 0 0 8px 8px;
    }
    
    .ssc-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .ssc-description {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .ssc-meta {
        gap: 6px;
        margin-bottom: 8px;
        font-size: 11px;
    }
    
    .ssc-provider {
        gap: 3px;
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .ssc-footer {
        padding: 12px 0 0 0;
        gap: 10px;
    }
    
    .ssc-price {
        font-size: 14px;
    }
    
    .ssc-action {
        height: 32px;
        border-radius: 4px;
        padding: 0 14px;
        font-size: 12px;
    }
    
    .ssc-action:hover {
        background: linear-gradient(180deg, #2f63d6, #1e40af);
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 8px 16px rgba(49, 92, 200, 0.35), inset 0 1px 0 rgba(255,255,255,0.25);
    }
    
    .ssc-badge {
        top: 8px;
        right: 8px;
        padding: 3px 8px;
        border-radius: 12px;
        font-size: 10px;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    }
    
    .carousel-indicators {
        gap: 4px;
        margin-top: 12px;
        padding: 6px 0;
    }
    
    .indicator {
        width: 5px;
        height: 12px;
        transform-origin: center;
        flex-grow: 0;
        min-width: 5px;
        min-height: 12px;

    }
}