/* ==========================================================================
   BecksCarCare Booking System Styles
   ========================================================================== */

/* Product Card Book Button */
.car-wash-service-actions {
    margin-top: 15px;
}

.book-now-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-now-btn {
    background: linear-gradient(135deg, var(--beckscarcare-primary-color, #ff6b35) 0%, var(--beckscarcare-accent-color, #f7931e) 100%);
    color: white !important;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    min-width: 140px;
    justify-content: center;
}

/* Single Product Page Book Button */
.book-now-single-btn {
    background: linear-gradient(135deg, var(--beckscarcare-primary-color, #ff6b35) 0%, var(--beckscarcare-accent-color, #f7931e) 100%) !important;
    color: white !important;
    border: none !important;
    padding: 15px 30px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
    min-width: 180px !important;
    justify-content: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.book-now-single-btn:hover {
    background: linear-gradient(135deg, var(--beckscarcare-accent-color, #f7931e) 0%, var(--beckscarcare-primary-color, #ff6b35) 100%) !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
}

.book-now-single-btn:focus,
.book-now-single-btn:active {
    color: white !important;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2) !important;
}

.book-now-single-btn i {
    font-size: 16px !important;
}

.book-now-btn:hover {
    background: linear-gradient(135deg, var(--beckscarcare-accent-color, #f7931e) 0%, var(--beckscarcare-primary-color, #ff6b35) 100%);
    color: white !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.book-now-btn i {
    font-size: 14px;
}

/* Shop Page Product Card Button Styling */
.book-now-btn-card {
    background: linear-gradient(135deg, var(--beckscarcare-primary-color, #ff6b35) 0%, var(--beckscarcare-accent-color, #f7931e) 100%) !important;
    color: white !important;
    border: 2px solid transparent !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.book-now-btn-card:hover {
    background: linear-gradient(135deg, var(--beckscarcare-accent-color, #f7931e) 0%, var(--beckscarcare-primary-color, #ff6b35) 100%) !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3) !important;
}

.book-now-btn-card i {
    font-size: 12px !important;
}

/* Shop Page Add to Cart Button Styling - to match View Details */
.woocommerce .products .product .button:not(.book-now-btn-card),
.woocommerce .products .product a[href*="add-to-cart"] {
    background: transparent !important;
    color: var(--beckscarcare-primary-color, #ff6b35) !important;
    border: 2px solid var(--beckscarcare-primary-color, #ff6b35) !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    min-width: 120px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.woocommerce .products .product .button:not(.book-now-btn-card):hover,
.woocommerce .products .product a[href*="add-to-cart"]:hover {
    background: var(--beckscarcare-primary-color, #ff6b35) !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2) !important;
}

/* Booking Container */
.beckscarcare-booking-container {
    background: var(--beckscarcare-bg-white);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--beckscarcare-border-light);
}

.beckscarcare-booking-container h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--beckscarcare-heading-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.beckscarcare-booking-container h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--beckscarcare-primary-color), var(--beckscarcare-accent-color));
    border-radius: 2px;
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-form label {
    font-size: 16px;
    font-weight: 600;
    color: var(--beckscarcare-text-primary);
}

.booking-form .required {
    color: var(--beckscarcare-primary-color);
    margin-left: 4px;
}

.booking-form input[type="text"],
.booking-form textarea {
    padding: 15px 20px;
    border: 2px solid var(--beckscarcare-border-medium);
    border-radius: 8px;
    font-size: 16px;
    color: var(--beckscarcare-text-primary);
    background: var(--beckscarcare-bg-white);
    transition: all 0.3s ease;
}

.booking-form input[type="text"]:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--beckscarcare-primary-color);
    box-shadow: 0 0 0 4px rgba(232, 28, 46, 0.1);
}

.booking-form .field-error {
    border-color: var(--beckscarcare-primary-color);
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Time Slots Grid */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.time-slot {
    background: var(--beckscarcare-bg-light);
    border: 2px solid var(--beckscarcare-border-light);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-slot:hover {
    border-color: var(--beckscarcare-primary-color);
    background: var(--beckscarcare-bg-white);
    box-shadow: 0 4px 20px rgba(232, 28, 46, 0.15);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: var(--beckscarcare-primary-color);
    border-color: var(--beckscarcare-primary-color);
    color: var(--beckscarcare-text-white);
}

.time-slot.selected .slot-time,
.time-slot.selected .slot-availability {
    color: var(--beckscarcare-text-white);
}

.slot-time {
    font-size: 18px;
    font-weight: 700;
    color: var(--beckscarcare-heading-color);
}

.slot-availability {
    font-size: 14px;
    font-weight: 500;
    color: var(--beckscarcare-text-secondary);
}

/* Loading and Empty States */
.loading-slots,
.slots-loader,
.no-slots {
    text-align: center;
    padding: 30px;
    color: var(--beckscarcare-text-secondary);
    font-size: 16px;
}

.slots-loader i,
.no-slots i {
    margin-right: 8px;
    color: var(--beckscarcare-primary-color);
}

.error-message {
    text-align: center;
    padding: 20px;
    color: var(--beckscarcare-primary-color);
    background: rgba(232, 28, 46, 0.1);
    border-radius: 8px;
    font-weight: 500;
}

.error-message i {
    margin-right: 8px;
}

/* Booking Summary */
.booking-summary {
    background: var(--beckscarcare-bg-light);
    border: 2px solid var(--beckscarcare-border-light);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.booking-summary h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--beckscarcare-heading-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-summary h4::before {
    content: '📋';
    font-size: 18px;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-content p {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--beckscarcare-border-light);
}

.summary-content p:last-child {
    border-bottom: none;
}

.summary-content strong {
    color: var(--beckscarcare-text-primary);
    font-weight: 600;
}

.summary-content span {
    color: var(--beckscarcare-primary-color);
    font-weight: 600;
}

/* Book Service Button */
.btn-book-service {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
    padding: 18px 30px;
    background: var(--beckscarcare-primary-color);
    color: var(--beckscarcare-text-white);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-book-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-book-service:hover::before {
    left: 100%;
}

.btn-book-service:hover {
    background: var(--beckscarcare-btn-primary-hover-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232, 28, 46, 0.4);
}

.btn-book-service:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-book-service:disabled:hover {
    transform: none;
    box-shadow: none;
}

.button-loader {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Notifications */
.booking-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.booking-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    background: #10b981;
    color: white;
    border-left: 4px solid #059669;
}

.notification-error {
    background: var(--beckscarcare-primary-color);
    color: white;
    border-left: 4px solid #dc2626;
}

.booking-notification i {
    font-size: 18px;
    flex-shrink: 0;
}

/* Product Booking Section */
.product-booking-section {
    background: var(--beckscarcare-bg-lighter);
    padding: 60px 0;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .beckscarcare-booking-container {
        padding: 25px;
        margin: 20px 0;
    }
    
    .beckscarcare-booking-container h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .time-slots-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .time-slot {
        padding: 15px;
    }
    
    .booking-summary {
        padding: 20px;
    }
    
    .btn-book-service {
        max-width: 100%;
        padding: 15px 25px;
        font-size: 16px;
    }
    
    .booking-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .beckscarcare-booking-container {
        padding: 20px;
        border-radius: 12px;
    }
    
    .beckscarcare-booking-container h3 {
        font-size: 22px;
    }
    
    .booking-form {
        gap: 20px;
    }
    
    .booking-form input[type="text"],
    .booking-form textarea {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .time-slot {
        padding: 12px;
    }
    
    .slot-time {
        font-size: 16px;
    }
    
    .slot-availability {
        font-size: 13px;
    }
    
    .booking-summary h4 {
        font-size: 18px;
    }
    
    .btn-book-service {
        padding: 12px 20px;
        font-size: 14px;
        margin-top: 20px;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .time-slot {
        border-width: 3px;
    }
    
    .time-slot:hover,
    .time-slot.selected {
        border-width: 4px;
    }
}

/* ==========================================================================
   Booking Tracker Styles
   ========================================================================== */

/* Booking Tracker Container */
.booking-tracker-container {
    background: var(--beckscarcare-bg-white);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--beckscarcare-border-light);
}

.booking-tracker-container h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--beckscarcare-heading-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.booking-tracker-container h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--beckscarcare-primary-color), var(--beckscarcare-accent-color));
    border-radius: 2px;
}

/* Booking Search */
.booking-search {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--beckscarcare-bg-light);
    border-radius: 12px;
    border: 2px solid var(--beckscarcare-border-light);
}

.booking-search input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--beckscarcare-border-medium);
    border-radius: 8px;
    font-size: 16px;
    color: var(--beckscarcare-text-primary);
    background: var(--beckscarcare-bg-white);
    transition: all 0.3s ease;
}

.booking-search input:focus {
    outline: none;
    border-color: var(--beckscarcare-primary-color);
    box-shadow: 0 0 0 4px rgba(232, 28, 46, 0.1);
}

.booking-search button {
    padding: 12px 24px;
    background: var(--beckscarcare-primary-color);
    color: var(--beckscarcare-text-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.booking-search button:hover {
    background: var(--beckscarcare-btn-primary-hover-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 28, 46, 0.3);
}

/* Bookings List */
.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.no-bookings {
    text-align: center;
    padding: 60px 20px;
    color: var(--beckscarcare-text-secondary);
}

.no-bookings p {
    font-size: 18px;
    margin: 0;
}

/* Booking Card */
.booking-card {
    background: var(--beckscarcare-bg-white);
    border: 2px solid var(--beckscarcare-border-light);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booking-card:hover {
    border-color: var(--beckscarcare-primary-color);
    box-shadow: 0 8px 25px rgba(232, 28, 46, 0.15);
    transform: translateY(-3px);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.booking-info {
    flex: 1;
}

.booking-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--beckscarcare-heading-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-title i {
    color: var(--beckscarcare-primary-color);
    font-size: 20px;
}

.booking-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
}

.booking-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--beckscarcare-text-secondary);
    font-weight: 500;
}

.booking-meta i {
    color: var(--beckscarcare-primary-color);
    font-size: 12px;
}

/* Status Badge */
.booking-status {
    flex-shrink: 0;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-confirmed {
    background: #10b981;
    color: white;
}

.status-in-progress {
    background: #f59e0b;
    color: white;
}

.status-completed {
    background: #059669;
    color: white;
}

.status-cancelled {
    background: #ef4444;
    color: white;
}

/* Booking Requests */
.booking-requests {
    background: var(--beckscarcare-bg-light);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--beckscarcare-primary-color);
}

.booking-requests strong {
    color: var(--beckscarcare-heading-color);
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.booking-requests p {
    margin: 0;
    color: var(--beckscarcare-text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Booking Progress */
.booking-progress {
    margin-bottom: 25px;
    overflow: hidden;
    max-height: 100px;
    transition: max-height 0.4s ease;
}

.booking-progress.expanded {
    max-height: 1000px;
}

.booking-progress h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--beckscarcare-heading-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-progress h5::before {
    content: '🔄';
    font-size: 16px;
}

/* Progress Timeline */
.progress-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.progress-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    padding-left: 10px;
}

.progress-step.completed .step-indicator {
    background: var(--beckscarcare-primary-color);
    color: white;
    border-color: var(--beckscarcare-primary-color);
}

.progress-step.in_progress .step-indicator {
    background: #f59e0b;
    color: white;
    border-color: #f59e0b;
}

.progress-step.current .step-indicator {
    animation: pulse 2s infinite;
}

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

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--beckscarcare-bg-light);
    border: 2px solid var(--beckscarcare-border-medium);
    font-weight: 700;
    font-size: 14px;
    color: var(--beckscarcare-text-secondary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-content {
    flex: 1;
    padding-top: 2px;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--beckscarcare-heading-color);
    margin-bottom: 8px;
}

.step-description {
    font-size: 14px;
    color: var(--beckscarcare-text-secondary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.step-time {
    margin-bottom: 5px;
}

.step-time small {
    color: var(--beckscarcare-text-muted);
    font-size: 12px;
}

.step-time i {
    color: var(--beckscarcare-primary-color);
    margin-right: 4px;
}

.step-notes {
    background: var(--beckscarcare-bg-lighter);
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 10px;
}

.step-notes small {
    color: var(--beckscarcare-text-secondary);
    font-size: 12px;
    line-height: 1.4;
}

.step-connector {
    position: absolute;
    left: 29px;
    top: 40px;
    width: 2px;
    height: calc(100% - 40px);
    background: var(--beckscarcare-border-light);
}

.progress-step.completed .step-connector {
    background: var(--beckscarcare-primary-color);
}

/* Booking Actions */
.booking-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.booking-actions .btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.booking-actions .btn-primary {
    background: var(--beckscarcare-primary-color);
    color: var(--beckscarcare-text-white);
}

.booking-actions .btn-primary:hover {
    background: var(--beckscarcare-btn-primary-hover-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 28, 46, 0.3);
}

.booking-actions .btn-secondary {
    background: var(--beckscarcare-bg-light);
    color: var(--beckscarcare-text-primary);
    border: 2px solid var(--beckscarcare-border-medium);
}

.booking-actions .btn-secondary:hover {
    background: var(--beckscarcare-bg-white);
    border-color: var(--beckscarcare-primary-color);
    color: var(--beckscarcare-primary-color);
    transform: translateY(-2px);
}

/* Responsive Design for Tracker */
@media (max-width: 768px) {
    .booking-tracker-container {
        padding: 25px;
        margin: 20px 0;
    }
    
    .booking-tracker-container h3 {
        font-size: 24px;
    }
    
    .booking-search {
        flex-direction: column;
        gap: 12px;
    }
    
    .booking-card {
        padding: 20px;
    }
    
    .booking-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .booking-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .booking-actions {
        justify-content: flex-start;
        gap: 12px;
    }
    
    .progress-step {
        gap: 12px;
    }
    
    .step-indicator {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .step-connector {
        left: 27px;
        top: 35px;
        height: calc(100% - 35px);
    }
}

@media (max-width: 480px) {
    .booking-tracker-container {
        padding: 20px;
    }
    
    .booking-card {
        padding: 15px;
    }
    
    .booking-title {
        font-size: 18px;
    }
    
    .booking-actions .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .progress-timeline {
        gap: 12px;
    }
    
    .step-title {
        font-size: 14px;
    }
    
    .step-description {
        font-size: 13px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .time-slot,
    .btn-book-service,
    .booking-notification,
    .booking-card {
        transition: none;
    }
    
    .btn-book-service:hover,
    .booking-card:hover {
        transform: none;
    }
    
    .time-slot:hover {
        transform: none;
    }
    
    .field-error {
        animation: none;
    }
    
    .button-loader {
        animation: none;
    }
    
    .progress-step.current .step-indicator {
        animation: none;
    }
    
    .booking-progress {
        transition: none;
    }
}