/**
 * Modern időpontfoglalás stílusok - 2025-ös design
 * Program típus választás, óránkénti időpontok, kapacitás kezelés
 */

/* ============================================
   CSS VÁLTOZÓK - BŐVÍTETT SZÍNPALETTA
   ============================================ */
:root {
    /* Booking specifikus színek */
    --booking-primary: #5c5e6b;
    --booking-primary-light: #7a7e8f;
    --booking-primary-dark: #464852;
    --booking-secondary: #6b7a8c;
    --booking-accent: #8b9bac;
    
    /* Gradient színek */
    --gradient-primary: linear-gradient(135deg, #5c5e6b 0%, #6b7a8c 100%);
    --gradient-secondary: linear-gradient(135deg, #7a7e8f 0%, #8b9bac 100%);
    --gradient-success: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --gradient-warning: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    --gradient-error: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
    
    /* Színek */
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --text-light: #ffffff;
    
    /* Új design elemek */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 8px 32px rgba(92, 94, 107, 0.1);
    --shadow-hover: 0 12px 40px rgba(92, 94, 107, 0.2);
    --border-radius-xl: 20px;
    --border-radius-2xl: 24px;
    
    /* Animációk */
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   FŐ LAYOUT ÉS HERO SZEKCIÓ
   ============================================ */
.booking-main {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.booking-main::before {
    background: linear-gradient(135deg, #7b7b7b 0%, #494949 100%) !important;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.booking-hero {
    position: relative;
    padding: 4rem 0 2rem;
    text-align: center;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-title i {
    font-size: 2.5rem;
    color: var(--booking-primary);
    -webkit-text-fill-color: var(--booking-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-decoration {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: -1;
}

.salt-crystal {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ============================================
   FOGLALÁSI ŰRLAP KONTAINER
   ============================================ */
.booking-form-section {
    position: relative;
    z-index: 2;
    padding: 2rem 0 4rem;
}

.booking-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
}

.booking-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

/* ============================================
   PROGRESS INDICATOR
   ============================================ */
.booking-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid var(--border-light);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    flex: 1;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60%;
    right: -40%;
    height: 2px;
    background: var(--border-medium);
    z-index: 1;
}

.progress-step:last-child::after {
    display: none;
}

.progress-step.active::after,
.progress-step.completed::after {
    background: var(--gradient-primary);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.progress-step.active .step-number {
    background: var(--gradient-primary);
    border-color: var(--booking-primary);
    color: white;
    transform: scale(1.1);
}

.progress-step.completed .step-number {
    background: var(--gradient-success);
    border-color: var(--success-color);
    color: white;
    font-size: 0; /* Elrejti a számot */
}

.progress-step.completed .step-number::after {
    content: '✓';
    position: absolute;
    font-size: 1.2rem; /* Nagyobb pipa méret */
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.step-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================
   FORM LÉPÉSEK
   ============================================ */
.form-step {
    display: none;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    text-align: center;
    margin-bottom: 1rem;
}

.step-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.step-header h2 i {
    color: var(--booking-primary);
    font-size: 1.5rem;
}

.step-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ============================================
   PROGRAM TÍPUS VÁLASZTÁS
   ============================================ */
.program-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.program-type-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 1.25rem;
    text-align: center;
    border: 2px solid var(--border-light);
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.program-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(92, 94, 107, 0.1), transparent);
    transition: left 0.6s ease;
}

.program-type-card:hover::before {
    left: 100%;
}

.program-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--booking-primary-light);
}

.program-type-card.selected {
    border-color: var(--booking-primary);
    background: linear-gradient(135deg, #fff 0%, #f8f6f3 100%);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.program-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    transition: all var(--transition-smooth);
}

.program-type-card:hover .program-icon {
    transform: scale(1.1);
}

.program-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.program-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--booking-primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.program-duration i {
    font-size: 1rem;
}

.program-description {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.program-price {
    margin-top: 1rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--booking-primary);
}

.price-free {
    font-size: 1rem;
    font-weight: 600;
    color: var(--success-color);
    background: rgba(40, 167, 69, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* ============================================
   DÁTUM VÁLASZTÁS
   ============================================ */
.date-picker-container {
    max-width: 350px;
    margin: 0 auto 1rem;
}

.date-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-xl);
    font-size: 1rem;
    text-align: center;
    background: white;
    transition: all var(--transition-smooth);
}

.date-input:focus {
    outline: none;
    border-color: var(--booking-primary);
    box-shadow: 0 0 0 3px rgba(92, 94, 107, 0.1);
}

/* ============================================
   IDŐPONT VÁLASZTÁS
   ============================================ */
.time-slots-container {
    margin-bottom: 1rem;
}

.capacity-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(92, 94, 107, 0.1);
    border-radius: var(--border-radius-xl);
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--booking-primary);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.time-slot {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-xl);
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.time-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border-light);
    transition: all var(--transition-smooth);
}

.time-slot.available::before {
    background: var(--gradient-success);
}

.time-slot.available:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--success-color);
}

.time-slot.selected {
    border-color: var(--booking-primary);
    background: linear-gradient(135deg, #fff 0%, #f8f6f3 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.time-slot.selected::before {
    background: var(--gradient-primary);
}

.time-slot.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
}

.time-display {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.time-separator {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

.capacity-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.capacity-status {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    background: rgba(92, 94, 107, 0.1);
    color: var(--booking-primary);
}

.time-slot.available .capacity-status {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
}

.time-slot.unavailable .capacity-status {
    background: rgba(220, 53, 69, 0.1);
    color: var(--error-color);
}

/* ============================================
   FOGLALÁS ÖSSZEFOGLALÓ
   ============================================ */
.booking-summary {
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e5e0 100%);
    border-radius: var(--border-radius-xl);
    padding: 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-light);
}

.booking-summary h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

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

.summary-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.summary-value {
    font-weight: 600;
    color: var(--booking-primary);
}

/* ============================================
   FORM MEZŐK
   ============================================ */
.form-fields {
    display: grid;
    gap: 1.5rem;
}

.field-group {
    position: relative;
}

.field-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.field-label i {
    color: var(--booking-primary);
    width: 16px;
}

.field-input,
.field-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-xl);
    font-size: 0.9rem;
    background: white;
    transition: all var(--transition-smooth);
}

.field-input:focus,
.field-textarea:focus {
    outline: none;
    border-color: var(--booking-primary);
    box-shadow: 0 0 0 3px rgba(92, 94, 107, 0.1);
}

.field-input.error,
.field-textarea.error {
    border-color: var(--error-color);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.field-textarea {
    resize: vertical;
    min-height: 70px;
}

.field-help {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.field-error {
    font-size: 0.875rem;
    color: var(--error-color);
    margin-top: 0.25rem;
    display: none;
}

/* ============================================
   GOMBOK
   ============================================ */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--border-radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::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.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(92, 94, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(92, 94, 107, 0.4);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-medium);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--booking-primary);
}

.btn-success {
    background: var(--gradient-success);
    color: white;
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.4);
}

/* ============================================
   SIKERES FOGLALÁS
   ============================================ */
.booking-success {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e5e0 100%);
}

.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 3rem;
    animation: bounceIn 0.8s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.booking-success h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.booking-success p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.booking-details {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   LOADING ÉS HIBA ÁLLAPOTOK
   ============================================ */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--booking-primary);
    font-weight: 500;
}

.loading-spinner i {
    font-size: 1.5rem;
    animation: spin 1s linear infinite;
}

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

.no-slots-message {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.no-slots-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-heavy);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--booking-primary);
    transform: translateX(400px);
    opacity: 0;
    transition: all var(--transition-smooth);
    z-index: 1000;
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-error {
    border-left-color: var(--error-color);
}

.toast-success {
    border-left-color: var(--success-color);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-content i {
    font-size: 1.25rem;
}

.toast-error .toast-content i {
    color: var(--error-color);
}

.toast-success .toast-content i {
    color: var(--success-color);
}

/* ============================================
   RESPONZÍV DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-title i {
        font-size: 1.5rem;
    }
    
    .booking-progress {
        padding: 1rem;
    }
    
    .progress-step::after {
        display: none;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .form-step {
        padding: 1.5rem;
    }
    
    .program-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .program-type-card {
        padding: 1.5rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .time-slot {
        padding: 1rem;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .toast {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .booking-form-container {
        max-width: 95%;
        margin: 0 auto;
    }
    
    .booking-progress {
        padding: 1rem;
    }
    
    .form-step {
        padding: 1.5rem;
    }
    
    .step-header h2 {
        font-size: 1.25rem;
    }
    
    .program-types-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .program-type-card {
        padding: 1.25rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.5rem;
    }
    
    .time-slot {
        padding: 0.75rem;
    }
    
    .booking-summary {
        padding: 1.25rem;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .booking-form-container {
        max-width: 98%;
        border-radius: 16px;
    }
    
    .form-step {
        padding: 1rem;
    }
    
    .step-header h2 {
        font-size: 1.1rem;
    }
    
    .program-type-card {
        padding: 1rem;
    }
    
    .program-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .time-slots-grid {
        grid-template-columns: 1fr;
    }
    
    .time-slot {
        padding: 0.75rem;
    }
    
    .booking-summary {
        padding: 1rem;
    }
    
    .field-input,
    .field-textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .checkbox-group {
        padding: 0.75rem;
    }
    
    .checkbox-group input[type="checkbox"] {
        margin-right: 0.5rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
    
    .terms-link {
        font-size: 0.9rem;
    }
}

/* ============================================
   CHECKBOX STÍLUSOK
   ============================================ */
.checkbox-group {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(92, 94, 107, 0.05);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-light);
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    vertical-align: top;
    accent-color: var(--booking-primary);
    cursor: pointer;
}

.checkbox-label {
    display: inline-block;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-primary);
    cursor: pointer;
    margin: 0;
    font-weight: 500;
    vertical-align: top;
    width: calc(100% - 30px);
}

.terms-link {
    color: var(--booking-primary);
    text-decoration: underline;
    font-weight: 600;
    transition: color var(--transition-smooth);
}

.terms-link:hover {
    color: var(--booking-primary-dark);
    text-decoration: none;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #6c757d !important;
    border-color: #6c757d !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-submit:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* ============================================
   ACCESSIBILITY ÉS UX JAVÍTÁSOK
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
.btn:focus,
.field-input:focus,
.field-textarea:focus,
.program-type-card:focus,
.time-slot:focus {
    outline: 2px solid var(--booking-primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .program-type-card,
    .time-slot {
        border-width: 3px;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

/* Print styles */
@media print {
    .booking-progress,
    .step-navigation,
    .btn {
        display: none;
    }
    
    .form-step {
        display: block !important;
        padding: 0;
        box-shadow: none;
        background: white;
    }
}
