/* Mixing & Mastering Service Styles */

.service-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon {
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.service-details h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.service-details p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.engineer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #28a745;
    animation: pulse 2s infinite;
}

.status-indicator.online {
    background: #28a745;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-category {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-category h3 {
    margin: 0 0 1.5rem 0;
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-category h3 i {
    color: #667eea;
}

/* Service Cards */
.service-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}

.service-card.popular {
    border-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #f0fff4 100%);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-header-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-header-card h4 {
    margin: 0;
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.original-price {
    font-size: 1rem !important;
    color: #999 !important;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.service-details p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.25rem 0;
    color: #555;
    font-size: 0.9rem;
}

.service-features li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 0.5rem;
}

.vip-discount {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 1rem 0;
    text-align: center;
}

.book-service-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-service-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Small Service Cards */
.service-card-small {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card-small h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: #333;
}

.service-card-small p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

.book-service-btn-small {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-service-btn-small:hover {
    background: #5a67d8;
}

/* Package Deals */
.package-deals {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.package-deals h3 {
    margin: 0 0 1.5rem 0;
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-deals h3 i {
    color: #ffd700;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.deal-card {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.deal-card h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

.deal-card p {
    margin: 0 0 1rem 0;
    color: #555;
    font-weight: 500;
}

.deal-example {
    background: rgba(255, 255, 255, 0.3);
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

/* Booking Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #555;
}

.summary-row.total {
    border-top: 2px solid #e9ecef;
    padding-top: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Activity Section */
.activity-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.activity-section h3 {
    margin: 0 0 1.5rem 0;
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.activity-icon {
    font-size: 1.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.activity-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.activity-time {
    color: #999;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .form-actions {
        flex-direction: column;
    }
}


/* File Upload St/* File Sharing Instructions Styles */
.file-sharing-info {
    border: 2px solid #8B5CF6;
    border-radius: 8px;
    padding: 1.5rem;
    background: #f8f9ff;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.sharing-icon {
    font-size: 2.5rem;
    opacity: 0.8;
    flex-shrink: 0;
}

.sharing-text h4 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.sharing-text ul {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
}

.sharing-text li {
    margin-bottom: 0.5rem;
    color: #495057;
}

.sharing-text li strong {
    color: #2c3e50;
}

.sharing-text a {
    color: #8B5CF6;
    text-decoration: none;
}

.sharing-text a:hover {
    text-decoration: underline;
}

.file-requirements {
    background: #fff;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #8B5CF6;
    margin: 0;
    font-size: 0.9rem;
    color: #495057;
}

.file-requirements strong {
    color: #2c3e50;
};
    margin: 0;
}

.uploaded-files {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.file-icon {
    font-size: 1.5rem;
    color: #8B5CF6;
}

.file-details {
    display: flex;
    flex-direction: column;
}

.file-name {
    font-weight: 600;
    color: #2c3e50;
}

.file-size {
    font-size: 0.8rem;
    color: #6c757d;
}

.file-actions {
    display: flex;
    gap: 0.5rem;
}

.file-remove {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.file-remove:hover {
    background: #c82333;
}

.upload-progress {
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8B5CF6, #A855F7);
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
}

.file-upload-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #f8d7da;
    border-radius: 4px;
}

/* Bulk File Upload Styles */
.bulk-file-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.summary-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.file-count {
    font-weight: 600;
    color: #2c3e50;
}

.total-size {
    color: #6c757d;
    font-size: 0.9rem;
}

.uploaded-count {
    color: #28a745;
    font-size: 0.9rem;
}

.pending-count {
    color: #ffc107;
    font-size: 0.9rem;
}

.failed-count {
    color: #dc3545;
    font-size: 0.9rem;
}

.bulk-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background: #f8f9fa;
    border-color: #8B5CF6;
}

.file-list-toggle {
    text-align: center;
    margin-bottom: 1rem;
}

.file-list-container {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    background: white;
}

.file-item.uploaded {
    background: #f8fff8;
    border-left: 3px solid #28a745;
}

.file-item.pending {
    background: #fffbf0;
    border-left: 3px solid #ffc107;
}

.file-item.failed {
    background: #fff5f5;
    border-left: 3px solid #dc3545;
}

.file-item .file-remove {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* Enhanced upload area for bulk files */
.upload-text p {
    margin-bottom: 0.5rem;
}

.upload-text .bulk-info {
    font-size: 0.8rem;
    color: #8B5CF6;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Progress enhancements for bulk uploads */
.upload-progress .batch-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.batch-progress .current-file {
    font-size: 0.8rem;
    color: #6c757d;
}

.batch-progress .progress-stats {
    font-size: 0.8rem;
    color: #8B5CF6;
    font-weight: 600;
}
