/* Book Repair Page Styles */

/* Hero Section */
.repair-hero {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
}

.repair-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.repair-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Main Content */
.repair-main {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 400px);
}

/* Progress Container */
.progress-container {
    max-width: 900px;
    margin: -40px auto 40px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.progress-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #e53e3e 0%, #c53030 100%);
    width: 20%;
    transition: width 0.4s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: #e53e3e;
    color: white;
}

.progress-step.completed .step-circle {
    background: #1a1a1a;
    color: white;
}

.progress-step span {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    text-align: center;
}

.progress-step.active span {
    color: #e53e3e;
    font-weight: 700;
}

/* Form Container */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.booking-form {
    position: relative;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
    background: #f8f9fa;
    cursor: not-allowed;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.char-count {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #888;
    text-align: right;
}

/* Upload Area */
.upload-area {
    border: 3px dashed #e0e0e0;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.upload-area:hover {
    border-color: #e53e3e;
    background: #fff;
}

.upload-area.drag-over {
    border-color: #e53e3e;
    background: rgba(229, 62, 62, 0.05);
}

.upload-area svg {
    width: 48px;
    height: 48px;
    stroke: #e53e3e;
    margin-bottom: 1rem;
}

.upload-area h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.upload-area p {
    color: #666;
    margin-bottom: 0.5rem;
}

.upload-area small {
    color: #888;
    font-size: 0.85rem;
}

/* Image Previews */
.image-previews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.image-preview {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview .remove-image {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: #e53e3e;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 18px;
    line-height: 1;
}

.image-preview .remove-image:hover {
    background: #c53030;
    transform: scale(1.1);
}

/* Summary Container */
.summary-container {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.summary-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.summary-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-section h3 svg {
    width: 20px;
    height: 20px;
    stroke: #e53e3e;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.summary-row.highlight {
    background: #fef2f2;
    padding: 12px;
    border-radius: 6px;
    margin: 8px 0;
    border-left: 4px solid #e53e3e;
}

.summary-label {
    font-weight: 600;
    color: #555;
}

.summary-value {
    color: #1a1a1a;
    font-weight: 500;
    text-align: right;
}

.summary-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.summary-images img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #e0e0e0;
}

/* Terms Acceptance */
.terms-acceptance {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
    line-height: 1.6;
    color: #666;
}

.checkbox-label a {
    color: #e53e3e;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.btn-primary,
.btn-secondary,
.btn-submit {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    margin-left: auto;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

.btn-secondary {
    background: white;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: white;
}

.btn-submit {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    flex: 1;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary svg,
.btn-secondary svg,
.btn-submit svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.btn-primary:disabled,
.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon.success {
    background: #1a1a1a;
}

.modal-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 3;
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.modal-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.reference-number {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 2px solid #e0e0e0;
}

.reference-number strong {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.reference-number span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e53e3e;
    font-family: monospace;
}

.modal-message {
    font-size: 0.95rem;
}

.modal-message strong {
    color: #e53e3e;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 2rem;
}

.modal-actions .btn-primary,
.modal-actions .btn-secondary {
    flex: 1;
    justify-content: center;
    text-decoration: none;
}

/* Custom Modal Styles for Disclaimers */
.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.custom-modal.active {
    display: flex;
}

.custom-modal-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
}

.custom-modal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.disclaimer-content,
.surcharge-content {
    text-align: left;
}

.warning-icon,
.price-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fef3c7;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warning-icon svg {
    width: 40px;
    height: 40px;
    stroke: #f59e0b;
    stroke-width: 2.5;
}

.price-icon {
    background: #e53e3e;
}

.price-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2.5;
}

.disclaimer-content h3,
.surcharge-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.disclaimer-content p,
.surcharge-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclaimer-list {
    background: #f8f9fa;
    padding: 20px 20px 20px 40px;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #f59e0b;
}

.disclaimer-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #333;
}

.disclaimer-list strong {
    color: #e53e3e;
}

.disclaimer-note {
    background: #fef3c7;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #92400e;
    border: 1px solid #fcd34d;
}

.surcharge-amount {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: center;
    border: 2px solid #e0e0e0;
}

.surcharge-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.surcharge-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e53e3e;
}

.surcharge-note {
    background: #fef2f2;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.custom-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 2rem;
}

.modal-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.modal-btn.btn-primary {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
}

.modal-btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

.modal-btn.btn-secondary {
    background: white;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.modal-btn.btn-secondary:hover {
    background: #1a1a1a;
    color: white;
}

/* Reviews Section Styles */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 40px;
    flex-wrap: wrap;
}

.reviews-header-content {
    flex: 1;
    min-width: 280px;
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.reviews-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Google Rating Card */
.google-rating {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-width: 250px;
}

.rating-score {
    margin-bottom: 12px;
}

.score-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    margin-bottom: 8px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.star {
    width: 24px;
    height: 24px;
}

.review-count {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.google-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.google-link:hover {
    border-color: #4285F4;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
    transform: translateY(-2px);
}

/* Reviews Slider */
.reviews-slider-wrapper {
    position: relative;
    padding: 0 60px;
    margin-bottom: 40px;
}

.reviews-slider {
    overflow: hidden;
    border-radius: 12px;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 24px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover svg {
    stroke: white;
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.slider-nav svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    transition: stroke 0.3s ease;
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: #c0c0c0;
    transform: scale(1.2);
}

.slider-dot.active {
    background: #e53e3e;
    width: 32px;
    border-radius: 6px;
}

/* Review Card */
.review-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 0 0 calc(33.333% - 16px);
    min-width: 350px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: slideInCard 0.6s ease forwards;
}

@keyframes slideInCard {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Review Header */
.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.review-card:hover .reviewer-avatar {
    transform: rotate(5deg) scale(1.1);
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 4px;
}

.review-date {
    color: #888;
    font-size: 0.85rem;
}

/* Review Rating */
.review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .star {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.review-card:hover .review-stars .star {
    animation: starPulse 0.6s ease;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.review-card:hover .review-stars .star:nth-child(1) { animation-delay: 0s; }
.review-card:hover .review-stars .star:nth-child(2) { animation-delay: 0.1s; }
.review-card:hover .review-stars .star:nth-child(3) { animation-delay: 0.2s; }
.review-card:hover .review-stars .star:nth-child(4) { animation-delay: 0.3s; }
.review-card:hover .review-stars .star:nth-child(5) { animation-delay: 0.4s; }

.review-source {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #888;
    font-size: 0.8rem;
    margin-left: auto;
}

.review-source svg {
    width: 14px;
    height: 14px;
}

/* Review Text */
.review-text {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}

.review-text.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.review-read-more {
    background: none;
    border: none;
    color: #e53e3e;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    position: relative;
}

.review-read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e53e3e;
    transition: width 0.3s ease;
}

.review-read-more:hover::after {
    width: 100%;
}

.review-read-more:hover {
    color: #c53030;
}

/* Review Footer */
.review-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.review-card:hover .review-helpful {
    color: #1a1a1a;
}

.review-helpful svg {
    width: 16px;
    height: 16px;
    stroke: #666;
    transition: all 0.3s ease;
}

.review-card:hover .review-helpful svg {
    stroke: #e53e3e;
    transform: translateY(-2px);
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.review-card:hover .verified-badge {
    opacity: 1;
}

.verified-badge svg {
    width: 16px;
    height: 16px;
    stroke: #10b981;
}

/* Auto-play indicator */
.autoplay-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: #888;
    font-size: 0.85rem;
}

.autoplay-indicator svg {
    width: 16px;
    height: 16px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .review-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-title {
        font-size: 2rem;
    }

    .reviews-header {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .google-rating {
        margin: 0 auto;
    }

    .reviews-slider-wrapper {
        padding: 0 50px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav svg {
        width: 20px;
        height: 20px;
    }

    .review-card {
        flex: 0 0 100%;
        min-width: 280px;
    }

    .reviews-track {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 40px 0;
    }

    .reviews-title {
        font-size: 1.75rem;
    }

    .score-number {
        font-size: 2.5rem;
    }

    .google-rating {
        padding: 24px;
    }

    .reviews-slider-wrapper {
        padding: 0 15px;
    }

    .slider-nav {
        position: static;
        transform: none;
        margin: 20px auto 0;
    }

    .slider-prev {
        order: 1;
    }

    .slider-next {
        order: 3;
    }

    .reviews-slider {
        order: 2;
    }

    .reviews-slider-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .review-card {
        padding: 20px;
        min-width: 100%;
    }

    .slider-dots {
        margin-top: 20px;
    }
}

/*Review Ends Here */


/* Animation for spin */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .repair-hero-title {
        font-size: 2rem;
    }

    .repair-hero-subtitle {
        font-size: 1rem;
    }

    .progress-container {
        padding: 20px;
        margin: -30px 15px 30px;
    }

    .progress-steps {
        gap: 5px;
    }

    .progress-step span {
        font-size: 0.7rem;
    }

    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .form-navigation {
        flex-direction: column-reverse;
    }

    .btn-primary {
        margin-left: 0;
    }

    .image-previews {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .modal-content,
    .custom-modal-content {
        padding: 30px 20px;
    }

    .modal-actions,
    .custom-modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .repair-main {
        padding: 40px 0;
    }

    .progress-step span {
        display: none;
    }

    .summary-row {
        flex-direction: column;
        gap: 4px;
    }

    .summary-value {
        text-align: left;
    }
}


