/* Location Specific Styles */

.service-card {
    border: 1px solid #f1f5f9;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.3s;
    background: white;
}

.service-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.category-chip {
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    background: white;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
}

.category-chip.active {
    background: var(--uc-purple);
    color: white;
    border-color: var(--uc-purple);
}

.floating-menu {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 1000;
    cursor: pointer;
}

@media (min-width: 992px) {
    .floating-menu {
        bottom: 40px;
    }    
}
@media (max-width: 768px) {
    .menu-list{
        display: none !important;
    }
    .category-nav{
        display: none !important;
    }
}


.action-btn{
    right: 30px;
    position: absolute;
    min-width: 80px;
    bottom: 10px;
}
 .line-through { text-decoration: line-through; opacity: 0.5; }
        
/* Service Details Bottom Sheet */
.service-details-sheet {
    max-height: 90vh;
    overflow-y: auto;
}

.story-progress-container {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 10;
    display: flex;
    gap: 4px;
}

.story-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.story-progress-fill {
    height: 100%;
    background: white;
    border-radius: 2px;
    transition: width 0.1s ease;
}

.rating-badge {
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-add-service {
    background: #6366f1;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.process-timeline {
    position: relative;
}

.process-step {
    position: relative;
    padding-left: 40px;
    margin-bottom: 24px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 30px;
    bottom: -24px;
    width: 2px;
    background: #e5e7eb;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: #6366f1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.star-rating-pill {
    background: #fbbf24;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
}

.review-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
}

.text-uc-purple { color: #7c3aed; }