/**
 * Frontend Styles - Driving School Booking Pro
 * Colors: #ff2e2e (Red), #00d1d1 (Cyan), #000000 (Black)
 *
 * @package DSB
 */

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
    --dsb-red: #ff2e2e;
    --dsb-red-hover: #e02020;
    --dsb-red-light: rgba(255, 46, 46, 0.08);
    --dsb-red-glow: rgba(255, 46, 46, 0.4);
    --dsb-cyan: #00d1d1;
    --dsb-cyan-hover: #00b3b3;
    --dsb-cyan-light: rgba(0, 209, 209, 0.08);
    --dsb-cyan-glow: rgba(0, 209, 209, 0.4);
    --dsb-black: #000000;
    --dsb-dark: #111111;
    --dsb-dark-gray: #1a1a1a;
    --dsb-gray: #333333;
    --dsb-mid-gray: #666666;
    --dsb-light-gray: #999999;
    --dsb-border: #2a2a2a;
    --dsb-bg: #0d0d0d;
    --dsb-card-bg: #111111;
    --dsb-white: #ffffff;
    --dsb-radius: 12px;
    --dsb-radius-sm: 8px;
    --dsb-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --dsb-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   MAIN CONTAINER
   ============================================ */

.dsb-booking-wizard {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dsb-white);
}

/* ============================================
   WIZARD HEADER
   ============================================ */

.dsb-wizard-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: var(--dsb-dark);
    border-radius: var(--dsb-radius);
    border: 1px solid var(--dsb-border);
}

.dsb-wizard-header h2 {
    font-size: 36px;
    color: var(--dsb-white);
    margin: 0 0 10px 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.dsb-wizard-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--dsb-red), var(--dsb-cyan));
    margin: 15px auto 0;
    border-radius: 2px;
}

.dsb-wizard-header p {
    font-size: 16px;
    color: var(--dsb-light-gray);
    margin: 15px 0 0;
}

/* ============================================
   HORIZONTAL PROGRESS STEPS
   ============================================ */

.dsb-wizard-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 30px 20px;
    background: var(--dsb-dark);
    border-radius: var(--dsb-radius);
    border: 1px solid var(--dsb-border);
    position: relative;
    overflow: hidden;
}

/* Connecting line behind steps */
.dsb-wizard-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: var(--dsb-border);
    z-index: 0;
}

.dsb-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    cursor: default;
}

/* Step Number Circle */
.dsb-step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dsb-dark-gray);
    color: var(--dsb-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    border: 3px solid var(--dsb-border);
    transition: var(--dsb-transition);
    position: relative;
}

/* Step Label */
.dsb-step-label {
    font-size: 11px;
    color: var(--dsb-light-gray);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--dsb-transition);
    white-space: nowrap;
}

/* Active Step */
.dsb-step.active .dsb-step-number {
    background: var(--dsb-red);
    color: var(--dsb-white);
    border-color: var(--dsb-red);
    box-shadow: 0 0 20px var(--dsb-red-glow), 0 0 40px rgba(255, 46, 46, 0.2);
    transform: scale(1.15);
}

.dsb-step.active .dsb-step-label {
    color: var(--dsb-red);
    font-weight: 700;
}

/* Completed Step */
.dsb-step.completed .dsb-step-number {
    background: var(--dsb-cyan);
    color: var(--dsb-black);
    border-color: var(--dsb-cyan);
    box-shadow: 0 0 15px var(--dsb-cyan-glow);
}

.dsb-step.completed .dsb-step-number::after {
    content: '✓';
    font-size: 18px;
    font-weight: 900;
}

.dsb-step.completed .dsb-step-label {
    color: var(--dsb-cyan);
}

/* ============================================
   PROGRESS BAR
   ============================================ */

.dsb-progress-bar {
    height: 5px;
    background: var(--dsb-dark);
    border-radius: 0 0 var(--dsb-radius) var(--dsb-radius);
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid var(--dsb-border);
    border-top: none;
}

.dsb-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--dsb-red) 0%, var(--dsb-cyan) 100%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    position: relative;
}

.dsb-progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 10px;
    height: 10px;
    background: var(--dsb-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--dsb-cyan-glow);
}

/* ============================================
   FORM CONTENT AREA
   ============================================ */

.dsb-wizard-form {
    position: relative;
}

.dsb-wizard-content {
    animation: dsbFadeInUp 0.4s ease;
}

.dsb-step-content {
    background: var(--dsb-dark);
    border: 1px solid var(--dsb-border);
    border-radius: var(--dsb-radius);
    padding: 40px;
    box-shadow: var(--dsb-shadow);
}

.dsb-step-content h3 {
    font-size: 26px;
    color: var(--dsb-white);
    margin: 0 0 8px 0;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.dsb-step-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--dsb-red);
    border-radius: 2px;
}

.dsb-step-description {
    color: var(--dsb-light-gray);
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   FORM INPUTS
   ============================================ */

.dsb-form-group {
    margin-bottom: 25px;
}

.dsb-form-group label {
    display: block;
    font-weight: 600;
    color: var(--dsb-white);
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.dsb-form-group input[type="text"],
.dsb-form-group input[type="email"],
.dsb-form-group input[type="tel"],
.dsb-form-group input[type="number"],
.dsb-form-group textarea,
.dsb-form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--dsb-dark-gray);
    border: 2px solid var(--dsb-border);
    border-radius: var(--dsb-radius-sm);
    color: var(--dsb-white);
    font-size: 15px;
    transition: var(--dsb-transition);
    font-family: inherit;
}

.dsb-form-group input:focus,
.dsb-form-group textarea:focus,
.dsb-form-group select:focus {
    border-color: var(--dsb-cyan);
    outline: none;
    box-shadow: 0 0 0 3px var(--dsb-cyan-light), 0 0 15px var(--dsb-cyan-glow);
}

.dsb-form-group input::placeholder,
.dsb-form-group textarea::placeholder {
    color: var(--dsb-mid-gray);
}

.dsb-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.dsb-help-text {
    display: block;
    font-size: 12px;
    color: var(--dsb-mid-gray);
    margin-top: 6px;
}

.dsb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ============================================
   PACKAGE CARDS
   ============================================ */

.dsb-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.dsb-package-card {
    background: var(--dsb-dark-gray);
    border: 2px solid var(--dsb-border);
    border-radius: var(--dsb-radius);
    padding: 25px;
    cursor: pointer;
    transition: var(--dsb-transition);
    position: relative;
    overflow: hidden;
}

.dsb-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: var(--dsb-transition);
}

.dsb-package-card:hover {
    border-color: var(--dsb-cyan);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dsb-package-card:hover::before {
    background: linear-gradient(90deg, var(--dsb-red), var(--dsb-cyan));
}

.dsb-package-card.selected {
    border-color: var(--dsb-cyan);
    background: var(--dsb-cyan-light);
    box-shadow: 0 0 0 3px var(--dsb-cyan-light), 0 0 20px var(--dsb-cyan-glow);
}

.dsb-package-card.selected::before {
    background: var(--dsb-cyan);
}

.dsb-package-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--dsb-red);
    color: var(--dsb-white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dsb-package-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dsb-white);
    margin-bottom: 8px;
}

.dsb-package-description {
    font-size: 14px;
    color: var(--dsb-light-gray);
    margin-bottom: 15px;
    line-height: 1.5;
}

.dsb-package-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--dsb-red);
    margin-bottom: 15px;
}

.dsb-package-details {
    border-top: 1px solid var(--dsb-border);
    padding-top: 15px;
}

.dsb-package-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--dsb-light-gray);
}

.dsb-package-features ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.dsb-package-features li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--dsb-light-gray);
}

.dsb-package-features li::before {
    content: '✓';
    color: var(--dsb-cyan);
    font-weight: bold;
    margin-right: 8px;
}

/* ============================================
   CAR OPTIONS
   ============================================ */

.dsb-car-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.dsb-car-option {
    cursor: pointer;
}

.dsb-car-option input[type="radio"] {
    display: none;
}

.dsb-car-card {
    background: var(--dsb-dark-gray);
    border: 2px solid var(--dsb-border);
    border-radius: var(--dsb-radius);
    padding: 30px;
    text-align: center;
    transition: var(--dsb-transition);
    height: 100%;
}

.dsb-car-option input:checked + .dsb-car-card {
    border-color: var(--dsb-cyan);
    background: var(--dsb-cyan-light);
    box-shadow: 0 0 0 3px var(--dsb-cyan-light), 0 0 20px var(--dsb-cyan-glow);
}

.dsb-car-card:hover {
    border-color: var(--dsb-cyan);
    transform: translateY(-3px);
}

.dsb-car-icon {
    font-size: 52px;
    margin-bottom: 15px;
}

.dsb-car-card h4 {
    font-size: 18px;
    color: var(--dsb-white);
    margin-bottom: 10px;
    font-weight: 700;
}

.dsb-car-card p {
    font-size: 14px;
    color: var(--dsb-light-gray);
    margin-bottom: 15px;
    line-height: 1.5;
}

.dsb-car-price {
    display: inline-block;
    background: var(--dsb-dark);
    color: var(--dsb-cyan);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--dsb-border);
}

/* ============================================
   DATE PICKER & TIME SLOTS
   ============================================ */

.dsb-datepicker {
    cursor: pointer !important;
}

.dsb-time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.dsb-time-slot {
    background: var(--dsb-dark-gray);
    border: 2px solid var(--dsb-border);
    border-radius: var(--dsb-radius-sm);
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--dsb-transition);
    font-weight: 600;
    font-size: 14px;
    color: var(--dsb-light-gray);
}

.dsb-time-slot:hover {
    border-color: var(--dsb-cyan);
    color: var(--dsb-white);
}

.dsb-time-slot.selected {
    border-color: var(--dsb-red);
    background: var(--dsb-red);
    color: var(--dsb-white);
    box-shadow: 0 0 15px var(--dsb-red-glow);
}

/* ============================================
   INSTRUCTOR CARDS
   ============================================ */

.dsb-instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.dsb-instructor-card {
    background: var(--dsb-dark-gray);
    border: 2px solid var(--dsb-border);
    border-radius: var(--dsb-radius);
    padding: 25px;
    cursor: pointer;
    transition: var(--dsb-transition);
    text-align: center;
}

.dsb-instructor-card:hover {
    border-color: var(--dsb-cyan);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dsb-instructor-card.selected {
    border-color: var(--dsb-cyan);
    background: var(--dsb-cyan-light);
    box-shadow: 0 0 0 3px var(--dsb-cyan-light), 0 0 20px var(--dsb-cyan-glow);
}

.dsb-instructor-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--dsb-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 3px solid var(--dsb-border);
}

.dsb-instructor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dsb-instructor-card.selected .dsb-instructor-photo {
    border-color: var(--dsb-cyan);
}

.dsb-instructor-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dsb-white);
    margin-bottom: 5px;
}

.dsb-instructor-rating {
    color: #ffd700;
    font-size: 14px;
    margin-bottom: 10px;
}

.dsb-instructor-experience {
    font-size: 13px;
    color: var(--dsb-light-gray);
    margin-bottom: 10px;
}

.dsb-instructor-contact {
    font-size: 12px;
    color: var(--dsb-mid-gray);
    line-height: 1.6;
}

/* ============================================
   REVIEW SUMMARY
   ============================================ */

.dsb-review-summary {
    background: var(--dsb-dark-gray);
    border-radius: var(--dsb-radius);
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--dsb-border);
}

.dsb-review-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--dsb-border);
}

.dsb-review-item:last-child {
    border-bottom: none;
}

.dsb-review-label {
    font-weight: 600;
    color: var(--dsb-light-gray);
}

.dsb-review-value {
    color: var(--dsb-white);
    text-align: right;
    font-weight: 500;
}

/* ============================================
   PRICING SUMMARY
   ============================================ */

.dsb-pricing-summary {
    background: var(--dsb-dark-gray);
    border: 1px solid var(--dsb-border);
    border-radius: var(--dsb-radius);
    padding: 25px;
    margin-bottom: 20px;
}

.dsb-pricing-summary h4 {
    font-size: 18px;
    color: var(--dsb-white);
    margin: 0 0 15px 0;
    font-weight: 700;
}

.dsb-pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--dsb-border);
}

.dsb-pricing-item:last-child {
    border-bottom: none;
}

.dsb-pricing-label {
    color: var(--dsb-light-gray);
}

.dsb-pricing-amount {
    font-weight: 600;
    color: var(--dsb-white);
}

.dsb-pricing-total {
    background: var(--dsb-dark);
    padding: 15px;
    border-radius: var(--dsb-radius-sm);
    margin-top: 15px;
    border: 1px solid var(--dsb-border);
}

.dsb-pricing-total .dsb-pricing-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--dsb-white);
}

.dsb-pricing-total .dsb-pricing-amount {
    font-size: 26px;
    font-weight: 800;
    color: var(--dsb-red);
}

/* ============================================
   COUPON INPUT
   ============================================ */

.dsb-coupon-input {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.dsb-coupon-input input {
    flex: 1;
    background: var(--dsb-dark-gray);
    border: 2px solid var(--dsb-border);
    color: var(--dsb-white);
    padding: 12px 15px;
    border-radius: var(--dsb-radius-sm);
}

#dsb-coupon-message {
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: var(--dsb-radius-sm);
    font-size: 14px;
}

#dsb-coupon-message.success {
    background: rgba(0, 209, 209, 0.1);
    color: var(--dsb-cyan);
    border: 1px solid var(--dsb-cyan);
}

#dsb-coupon-message.error {
    background: rgba(255, 46, 46, 0.1);
    color: var(--dsb-red);
    border: 1px solid var(--dsb-red);
}

/* ============================================
   PAYMENT METHODS
   ============================================ */

.dsb-payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.dsb-payment-method {
    cursor: pointer;
}

.dsb-payment-method input[type="radio"] {
    display: none;
}

.dsb-payment-card {
    background: var(--dsb-dark-gray);
    border: 2px solid var(--dsb-border);
    border-radius: var(--dsb-radius);
    padding: 25px;
    text-align: center;
    transition: var(--dsb-transition);
    height: 100%;
}

.dsb-payment-method input:checked + .dsb-payment-card {
    border-color: var(--dsb-cyan);
    background: var(--dsb-cyan-light);
    box-shadow: 0 0 0 3px var(--dsb-cyan-light), 0 0 20px var(--dsb-cyan-glow);
}

.dsb-payment-card:hover {
    border-color: var(--dsb-cyan);
    transform: translateY(-3px);
}

.dsb-payment-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.dsb-payment-card h4 {
    font-size: 18px;
    color: var(--dsb-white);
    margin-bottom: 10px;
    font-weight: 700;
}

.dsb-payment-card p {
    font-size: 14px;
    color: var(--dsb-light-gray);
    line-height: 1.5;
}

/* ============================================
   TERMS & CONDITIONS
   ============================================ */

.dsb-terms {
    background: var(--dsb-dark-gray);
    border-radius: var(--dsb-radius-sm);
    padding: 20px;
    margin-top: 20px;
    border: 1px solid var(--dsb-border);
}

.dsb-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
    color: var(--dsb-light-gray);
}

.dsb-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--dsb-cyan);
}

.dsb-checkbox a {
    color: var(--dsb-cyan);
    text-decoration: none;
}

.dsb-checkbox a:hover {
    text-decoration: underline;
}

/* ============================================
   BUTTONS
   ============================================ */

.dsb-btn {
    padding: 16px 35px;
    border: none;
    border-radius: var(--dsb-radius-sm);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--dsb-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dsb-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.dsb-btn-primary {
    background: var(--dsb-red);
    color: var(--dsb-white);
}

.dsb-btn-primary:hover:not(:disabled) {
    background: var(--dsb-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--dsb-red-glow);
}

.dsb-btn-secondary {
    background: transparent;
    color: var(--dsb-white);
    border: 2px solid var(--dsb-border);
}

.dsb-btn-secondary:hover:not(:disabled) {
    border-color: var(--dsb-cyan);
    color: var(--dsb-cyan);
}

.dsb-btn-success {
    background: var(--dsb-cyan);
    color: var(--dsb-black);
}

.dsb-btn-success:hover:not(:disabled) {
    background: var(--dsb-cyan-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--dsb-cyan-glow);
}

.dsb-btn-icon {
    font-size: 18px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.dsb-wizard-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

/* ============================================
   LOADING & OVERLAYS
   ============================================ */

.dsb-loading {
    text-align: center;
    padding: 40px;
    color: var(--dsb-light-gray);
    font-size: 15px;
}

.dsb-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.dsb-loading-overlay p {
    color: var(--dsb-white);
    font-size: 18px;
    margin-top: 20px;
}

.dsb-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--dsb-border);
    border-top-color: var(--dsb-red);
    border-right-color: var(--dsb-cyan);
    border-radius: 50%;
    animation: dsbSpin 0.8s linear infinite;
}

/* ============================================
   SUCCESS & ERROR MESSAGES
   ============================================ */

.dsb-success-message,
.dsb-error-message {
    display: none;
    text-align: center;
    padding: 60px 40px;
    border-radius: var(--dsb-radius);
    background: var(--dsb-dark);
    border: 1px solid var(--dsb-border);
}

.dsb-success-icon,
.dsb-error-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 20px;
}

.dsb-success-icon {
    background: var(--dsb-cyan);
    color: var(--dsb-black);
    box-shadow: 0 0 30px var(--dsb-cyan-glow);
}

.dsb-error-icon {
    background: var(--dsb-red);
    color: var(--dsb-white);
    box-shadow: 0 0 30px var(--dsb-red-glow);
}

.dsb-success-message h3 {
    color: var(--dsb-cyan);
    margin-bottom: 15px;
    font-size: 28px;
}

.dsb-error-message h3 {
    color: var(--dsb-red);
    margin-bottom: 15px;
    font-size: 28px;
}

/* ============================================
   USER DASHBOARD
   ============================================ */

.dsb-user-dashboard {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    color: var(--dsb-white);
}

.dsb-dashboard-header h2 {
    color: var(--dsb-white);
}

.dsb-dashboard-tabs {
    border-bottom: 2px solid var(--dsb-border);
    margin-bottom: 30px;
}

.dsb-tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--dsb-light-gray);
    transition: var(--dsb-transition);
    margin-bottom: -2px;
}

.dsb-tab-btn:hover {
    color: var(--dsb-cyan);
}

.dsb-tab-btn.active {
    color: var(--dsb-red);
    border-bottom-color: var(--dsb-red);
}

.dsb-tab-content {
    display: none;
}

.dsb-tab-content.active {
    display: block;
}

.dsb-booking-item {
    background: var(--dsb-dark);
    border: 1px solid var(--dsb-border);
    border-radius: var(--dsb-radius);
    padding: 20px;
    margin-bottom: 15px;
}

.dsb-booking-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.dsb-booking-status.pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.dsb-booking-status.approved {
    background: var(--dsb-cyan-light);
    color: var(--dsb-cyan);
}

.dsb-booking-status.completed {
    background: rgba(0, 209, 209, 0.15);
    color: var(--dsb-cyan);
}

.dsb-booking-status.cancelled {
    background: var(--dsb-red-light);
    color: var(--dsb-red);
}

/* ============================================
   PACKAGES SHOWCASE
   ============================================ */

.dsb-packages-showcase {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.dsb-packages-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.dsb-packages-showcase .dsb-package-card {
    display: flex;
    flex-direction: column;
    background: var(--dsb-dark);
    border: 1px solid var(--dsb-border);
}

.dsb-package-footer {
    margin-top: auto;
    padding-top: 20px;
}

.dsb-package-footer .dsb-btn {
    width: 100%;
}

.dsb-price-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--dsb-red);
}

.dsb-price-label {
    display: block;
    font-size: 13px;
    color: var(--dsb-light-gray);
}

/* ============================================
   FLATPICKR DARK THEME OVERRIDE
   ============================================ */

.flatpickr-calendar {
    background: var(--dsb-dark) !important;
    border: 1px solid var(--dsb-border) !important;
    box-shadow: var(--dsb-shadow) !important;
}

.flatpickr-months,
.flatpickr-weekdays,
.flatpickr-month {
    background: var(--dsb-dark) !important;
    color: var(--dsb-white) !important;
}

.flatpickr-day {
    color: var(--dsb-white) !important;
}

.flatpickr-day:hover {
    background: var(--dsb-cyan-light) !important;
    border-color: var(--dsb-cyan) !important;
}

.flatpickr-day.selected {
    background: var(--dsb-red) !important;
    border-color: var(--dsb-red) !important;
}

span.flatpickr-weekday {
    color: var(--dsb-cyan) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: var(--dsb-dark) !important;
    color: var(--dsb-white) !important;
}

.flatpickr-current-month input.cur-year {
    color: var(--dsb-white) !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes dsbFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dsbSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes dsbPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--dsb-red-glow);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 46, 46, 0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .dsb-wizard-steps {
        padding: 20px 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 5px;
    }
    
    .dsb-wizard-steps::before {
        display: none;
    }
    
    .dsb-step {
        flex: 0 0 auto;
        min-width: 60px;
    }
    
    .dsb-step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .dsb-step-label {
        font-size: 9px;
        letter-spacing: 0;
    }
    
    .dsb-step-content {
        padding: 25px 18px;
    }
    
    .dsb-step-content h3 {
        font-size: 20px;
    }
    
    .dsb-form-row {
        grid-template-columns: 1fr;
    }
    
    .dsb-car-options {
        grid-template-columns: 1fr;
    }
    
    .dsb-packages-grid,
    .dsb-instructors-grid,
    .dsb-payment-methods {
        grid-template-columns: 1fr;
    }
    
    .dsb-wizard-navigation {
        flex-wrap: wrap;
    }
    
    .dsb-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .dsb-packages-showcase {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .dsb-wizard-header h2 {
        font-size: 26px;
    }
    
    .dsb-package-price,
    .dsb-price-amount {
        font-size: 24px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .dsb-wizard-steps,
    .dsb-progress-bar,
    .dsb-wizard-navigation {
        display: none;
    }
    
    .dsb-step-content {
        border: 1px solid #000;
        color: #000;
        background: #fff;
    }
}