 .service-tab {
            border-bottom: 3px solid transparent;
            padding: 10px 20px;
            font-weight: 600;
            color: #333;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .service-tab.active {
            border-bottom: 3px solid #e63946;
            color: #e63946;
        }
        
        .service-tab:hover:not(.active) {
            border-bottom: 3px solid #a8dadc;
        }
        
        .service-content {
            display: none;
        }
        
        .service-content.active {
            display: block;
        }
        
        .service-card {
            border: none;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .service-feature {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .service-feature:before {
            content: "•";
            color: #e63946;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .schedule-form {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
        }
        
        @media (max-width: 768px) {
            .service-tabs {
                flex-wrap: nowrap;
                overflow-x: auto;
                white-space: nowrap;
            }
            
            .service-tab {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
        }
        @media (min-width: 992px) {
    .schedule-form .form-row {
        display: flex;
        gap: 16px;
    }
    .schedule-form .form-row .form-group {
        flex: 1;
    }
}




  .service-tabs {
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 30px;
}

.service-tab {
    padding: 15px 30px;
    cursor: pointer;
    font-weight: 600;
    color: #6c757d;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.service-tab:hover {
    color: #dc3545;
}

.service-tab.active {
    color: #dc3545;
    border-bottom-color: #dc3545;
}

.service-content {
    display: none;
}

.service-content.active {
    display: block;
}

.service-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.schedule-form {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}


.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    flex: 1;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.unit-row {
    display: flex;
    gap: 10px;
}

.unit-row .input-group {
    flex: 1;
}

.unit-row .form-select {
    flex: 2;
}

.unit-row .quantity-input {
    flex: 1;
}

#orderSummary {
    max-height: 200px;
    overflow-y: auto;
}
















.toast {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 20px;
            border-radius: 5px;
            color: white;
            z-index: 10000;
            opacity: 0;
            transform: translateY(-20px);
            transition: opacity 0.3s, transform 0.3s;
            max-width: 350px;
        }
        
        .toast.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .toast.success {
            background-color: #4caf50;
        }
        
        .toast.error {
            background-color: #f44336;
        }
        
        .toast.info {
            background-color: #2196f3;
        }
        .form-control[readonly] {
            background-color: #f8f9fa;
        }
        
        /* Feedback Section Styles */
        .feedback-section {
            margin-top: 50px;
            padding: 30px 0;
            background-color: #f8f9fa;
            border-radius: 10px;
        }
        
        .feedback-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .feedback-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            padding: 20px;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .feedback-card:hover {
            transform: translateY(-5px);
        }
        
        .user-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .user-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .user-details {
            flex: 1;
        }
        
        .user-name {
            font-weight: 600;
            margin-bottom: 3px;
        }
        
        .service-name {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .stars {
            color: #ffc107;
            margin-bottom: 10px;
        }
        
        .feedback-comment {
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .feedback-media {
            margin-top: 15px;
        }
        
        .media-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 10px;
            margin-top: 10px;
        }
        
        .media-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 1;
        }
        
        .media-item img,
        .media-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .media-item .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 24px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        
        .no-feedback {
            text-align: center;
            padding: 40px;
            color: #6c757d;
        }
        
        /* Modal Styles */
        .media-modal .modal-dialog {
            max-width: 90%;
            max-height: 90vh;
        }
        
        .media-modal .modal-content {
            background: transparent;
            border: none;
        }
        
        .media-modal .modal-body {
            padding: 0;
            text-align: center;
        }
        
        .media-modal .modal-body img,
        .media-modal .modal-body video {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 8px;
        }
        
        .media-modal .btn-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0,0,0,0.5);
            border-radius: 50%;
            opacity: 1;
            z-index: 10;
        }
        
        .media-navigation {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        padding: 0 20px;
        z-index: 5;
    }
    
    .media-navigation button {
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.8;
        transition: opacity 0.3s;
    }
    
    .media-navigation button:hover {
        opacity: 1;
    }
    
    .media-navigation button:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }
        
        .feedback-date {
            font-size: 0.8rem;
            color: #6c757d;
            margin-top: 10px;
        }
         .media-modal .modal-content {
        background: transparent;
        border: none;
        max-width: 90vw;
        margin: 0 auto;
    }
    
    .media-modal .modal-body {
        padding: 0;
        text-align: center;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 8px;
    }
    
    .media-modal .btn-close {
        opacity: 1;
        filter: invert(1);
        padding: 10px;
    }
    
    #mediaContent img,
    #mediaContent video {
        max-width: 100%;
        max-height: 70vh;
        width: auto;
        height: auto;
        border-radius: 8px;
    }
     /* Custom close button styling */
    .media-modal .btn-close {
        opacity: 1;
        filter: none;
        background-image: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .media-modal .btn-close:hover {
        background: rgba(0,0,0,0.9);
    }
    
    /* Rest of your existing styles... */
    .media-modal .modal-dialog {
        max-width: 500px; /* Fixed portrait size */
    }
    
    .media-modal .modal-content {
        background: transparent;
        border: none;
    }
    
    .media-modal .modal-body {
        padding: 0;
        text-align: center;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 8px 8px 0 0;
    }
    
    .media-modal .modal-footer {
        border-radius: 0 0 8px 8px;
        border: none;
    }
    
    #mediaContent img {
        max-height: 70vh;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        border-radius: 4px;
    }
    
    #mediaContent video {
        max-height: 70vh;
        width: auto;
        max-width: 100%;
        border-radius: 4px;
    }
    
    /* Media item styling in gallery */
    .media-item img,
    .media-item video {
        width: 100%;
        height: 100px; /* Fixed size for thumbnails */
        object-fit: cover;
        border-radius: 6px;
    }