/* ============================================
   CHECKPOINT LOUNGE - BOOKING SYSTEM STYLES
   Brand Colors:
   - Magenta: #ff00ff
   - Cyan: #00ffff
   - Yellow: #ffff00
   - Deep Purple: #330066
   - Dark Purple: #1a0033
   - Near Black: #0a0a0a
============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0033 30%, #330066 60%, #1a0033 90%, #0a0a0a 100%);
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scanlines Effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(255, 255, 255, 0.02) 3px,
        rgba(255, 255, 255, 0.02) 6px
    );
    pointer-events: none;
    z-index: 1000;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 0, 51, 0.95);
    border-bottom: 3px solid #00ffff;
    z-index: 100;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.nav-back {
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-back:hover {
    color: #ffff00;
    text-shadow: 0 0 20px #ffff00;
}

.nav-logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    background: linear-gradient(180deg, #ff00ff 0%, #00ffff 50%, #ffff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px 40px;
    position: relative;
    z-index: 10;
}

/* Header */
.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.header-icons {
    font-size: 36px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.booking-header h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(20px, 5vw, 36px);
    background: linear-gradient(180deg, #ff00ff 0%, #00ffff 50%, #ffff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px #ff00ff);
    line-height: 1.4;
    margin-bottom: 15px;
}

.tagline {
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    color: #ffff00;
    letter-spacing: 3px;
    text-shadow: 2px 2px 0 #ff00ff;
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: all 0.3s;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
}

.progress-step.completed .step-number {
    background: #00ff00;
    border-color: #00ff00;
    box-shadow: 0 0 20px #00ff00;
}

.step-number {
    width: 40px;
    height: 40px;
    border: 3px solid #00ffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: #00ffff;
    transition: all 0.3s;
}

.progress-step.active .step-number {
    background: #00ffff;
    color: #000;
    box-shadow: 0 0 20px #00ffff;
}

.step-label {
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    color: #00ffff;
}

.progress-line {
    width: 30px;
    height: 3px;
    background: #00ffff;
    opacity: 0.3;
}

/* Pixel Border */
.pixel-border {
    border: 4px solid #ff00ff;
    position: relative;
    padding: 30px;
    background: rgba(10, 0, 30, 0.8);
    box-shadow:
        0 0 20px rgba(255, 0, 255, 0.5),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.pixel-border::before,
.pixel-border::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffff00;
    box-shadow: 0 0 10px #ffff00;
}

.pixel-border::before {
    top: -7px;
    left: -7px;
}

.pixel-border::after {
    bottom: -7px;
    right: -7px;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Section Headers */
.form-step h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(14px, 3vw, 20px);
    color: #ffff00;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0 #ff00ff, 3px 3px 0 #000;
}

.section-desc {
    text-align: center;
    color: #00ffff;
    margin-bottom: 30px;
    font-size: 14px;
}

/* Opening Hours */
.opening-hours {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border: 2px solid #00ffff;
    margin-bottom: 30px;
}

.opening-hours h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: #00ffff;
    text-align: center;
    margin-bottom: 15px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: center;
}

.hours-item {
    padding: 10px;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid #ff00ff;
}

.hours-item .day {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: #ffff00;
    display: block;
    margin-bottom: 5px;
}

.hours-item .time {
    font-size: 12px;
    color: #ffffff;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: #00ffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Input Fields */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 3px solid #00ffff;
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    transition: all 0.3s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #ffff00;
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

/* Date Input Styling */
input[type="date"] {
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.date-display {
    display: block;
    margin-top: 10px;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: #ffff00;
    text-align: center;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.time-slot {
    padding: 15px 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #00ffff;
    color: #00ffff;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.time-slot:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: scale(1.05);
}

.time-slot.selected {
    background: #00ffff;
    color: #000;
    box-shadow: 0 0 20px #00ffff;
}

.time-slot.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Session Options */
.session-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.session-card {
    cursor: pointer;
}

.session-card input {
    display: none;
}

.session-content {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid #00ffff;
    text-align: center;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.session-card:hover .session-content {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
}

.session-card input:checked + .session-content {
    background: rgba(0, 255, 255, 0.2);
    border-color: #ffff00;
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.5);
}

.session-card.special .session-content {
    border-color: #ff00ff;
    background: rgba(255, 0, 255, 0.1);
}

.session-card.special input:checked + .session-content {
    background: rgba(255, 0, 255, 0.2);
    border-color: #ffff00;
}

.session-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}

.session-name {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: #ffff00;
    display: block;
    margin-bottom: 10px;
}

.session-price {
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: #00ffff;
    display: block;
    margin-bottom: 8px;
}

.session-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

/* Counter Controls */
.counter-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.counter-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    border: none;
    color: #000;
    font-family: 'Press Start 2P', cursive;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 0 #000;
}

.counter-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #000;
}

.counter-btn:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 #000;
}

.counter-control input {
    width: 80px;
    text-align: center;
    font-family: 'Press Start 2P', cursive;
    font-size: 20px;
    color: #ffff00;
    background: transparent;
    border: none;
}

/* Player Counters */
.players-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.player-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #00ffff;
}

.player-type {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-icon {
    font-size: 30px;
}

.player-label {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: #ffff00;
}

.player-age {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* Party Details */
.party-details {
    background: rgba(255, 0, 255, 0.1);
    border: 2px solid #ff00ff;
    padding: 25px;
    margin-bottom: 30px;
}

.party-details h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    color: #ff00ff;
    text-align: center;
    margin-bottom: 20px;
}

/* Running Total */
.running-total {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    border: 3px solid #ffff00;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.running-total .total-label {
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: #00ffff;
    margin-bottom: 10px;
}

.running-total .total-amount {
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    color: #ffff00;
    text-shadow:
        0 0 10px #ffff00,
        0 0 20px #ffff00;
}

/* Booking Summary */
.booking-summary {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #00ffff;
    padding: 25px;
    margin-bottom: 30px;
}

.booking-summary h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: #00ffff;
    text-align: center;
    margin-bottom: 20px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.summary-item {
    padding: 15px;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid #ff00ff;
    text-align: center;
}

.summary-label {
    display: block;
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    color: #00ffff;
    margin-bottom: 8px;
}

.summary-value {
    font-family: 'Press Start 2P', cursive;
    font-size: 11px;
    color: #ffff00;
}

.summary-total {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.3), rgba(0, 255, 255, 0.3));
    border: 3px solid #ffff00;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-total .total-label {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: #00ffff;
}

.summary-total .total-price {
    font-family: 'Press Start 2P', cursive;
    font-size: 24px;
    color: #ffff00;
    text-shadow: 0 0 10px #ffff00;
}

/* Contact Details */
.contact-details {
    margin-bottom: 30px;
}

.contact-details h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: #00ffff;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Terms & Checkboxes */
.terms-section {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s;
}

.checkbox-label:hover {
    border-color: #00ffff;
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 3px solid #00ffff;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.checkbox-label input:checked + .checkmark {
    background: #00ffff;
    box-shadow: 0 0 15px #00ffff;
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: #000;
    font-weight: bold;
}

.terms-link {
    color: #ff00ff;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Buttons */
.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    border: none;
    color: #000;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 6px 0 #000,
        0 8px 30px rgba(255, 0, 255, 0.5);
    transition: all 0.1s;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(2px);
    box-shadow:
        0 4px 0 #000,
        0 6px 20px rgba(0, 255, 255, 0.7);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(6px);
    box-shadow:
        0 0 0 #000,
        0 2px 10px rgba(0, 255, 255, 0.9);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary {
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    font-weight: 700;
    padding: 15px 30px;
    background: transparent;
    color: #00ffff;
    border: 3px solid #00ffff;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #00ffff;
    color: #000;
    box-shadow: 0 0 30px #00ffff;
}

.btn-submit {
    width: 100%;
    font-size: 14px;
    padding: 20px;
}

/* Success Message */
.success-message {
    animation: fadeIn 0.5s ease;
}

.success-box {
    text-align: center;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 1s ease-in-out infinite;
}

.success-message h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 24px;
    color: #00ff00;
    margin-bottom: 15px;
    text-shadow: 0 0 20px #00ff00;
}

.success-text {
    font-size: 18px;
    color: #00ffff;
    margin-bottom: 30px;
}

.confirmation-details {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin-bottom: 20px;
    border: 2px solid #00ffff;
}

.confirmation-details p {
    margin: 10px 0;
    color: #ffffff;
}

.confirmation-details span {
    color: #ffff00;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
}

.success-info {
    margin-bottom: 30px;
}

.success-info p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 2px solid #ff00ff;
    margin-top: 60px;
    background: rgba(26, 0, 51, 0.8);
}

.footer-icons {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: #ffff00;
    margin-bottom: 10px;
}

.footer-contact {
    color: #00ffff;
    margin-bottom: 10px;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 75px 12px 25px;
    }

    nav {
        padding: 10px 12px;
    }

    .nav-logo {
        font-size: 9px;
    }

    .nav-back {
        font-size: 8px;
    }

    .booking-header {
        margin-bottom: 25px;
    }

    .booking-header h1 {
        font-size: 18px;
    }

    .header-icons {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .tagline {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .pixel-border {
        padding: 20px 15px;
        border-width: 3px;
    }

    .pixel-border::before,
    .pixel-border::after {
        width: 8px;
        height: 8px;
    }

    .form-step h2 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .section-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }

    /* Opening Hours */
    .opening-hours {
        padding: 15px;
        margin-bottom: 20px;
    }

    .opening-hours h3 {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .hours-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .hours-item {
        padding: 8px 5px;
    }

    .hours-item .day {
        font-size: 10px;
    }

    .hours-item .time {
        font-size: 10px;
    }

    /* Time Slots - Touch Friendly */
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .time-slot {
        padding: 14px 8px;
        font-size: 9px;
        min-height: 48px; /* Touch target size */
    }

    /* Session Options */
    .session-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .session-content {
        padding: 18px 15px;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 15px;
    }

    .session-icon {
        font-size: 32px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .session-content > span:not(.session-icon) {
        display: block;
    }

    .session-name {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .session-price {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .session-desc {
        font-size: 11px;
    }

    /* Hours Selector */
    .hours-selector {
        margin-bottom: 20px;
    }

    /* Form Row */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Player Counter */
    .player-counter {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
        padding: 15px;
    }

    .player-type {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        flex: 1;
    }

    .player-icon {
        font-size: 24px;
    }

    .player-label {
        font-size: 10px;
    }

    .player-age {
        display: none;
    }

    /* Counter Controls - Touch Friendly */
    .counter-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .counter-control input {
        width: 50px;
        font-size: 18px;
    }

    /* Summary */
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .summary-item {
        padding: 12px 8px;
    }

    .summary-label {
        font-size: 7px;
        margin-bottom: 5px;
    }

    .summary-value {
        font-size: 10px;
    }

    .summary-total {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 15px;
    }

    .summary-total .total-label {
        font-size: 10px;
    }

    .summary-total .total-price {
        font-size: 22px;
    }

    /* Running Total */
    .running-total {
        padding: 15px;
        margin-bottom: 20px;
    }

    .running-total .total-label {
        font-size: 9px;
    }

    .running-total .total-amount {
        font-size: 26px;
    }

    /* Progress Bar */
    .progress-bar {
        gap: 5px;
        margin-bottom: 25px;
    }

    .progress-line {
        width: 12px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 10px;
        border-width: 2px;
    }

    .step-label {
        font-size: 6px;
    }

    /* Buttons - Touch Friendly */
    .button-group {
        gap: 10px;
    }

    .btn-primary {
        padding: 16px 24px;
        font-size: 10px;
        min-height: 48px;
    }

    .btn-secondary {
        padding: 14px 20px;
        font-size: 11px;
        min-height: 48px;
    }

    .btn-submit {
        padding: 18px;
        font-size: 11px;
    }

    /* Form Inputs - Touch Friendly */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    textarea {
        padding: 14px 12px;
        font-size: 16px; /* Prevents iOS zoom */
        min-height: 48px;
    }

    .form-group label {
        font-size: 9px;
        margin-bottom: 8px;
    }

    /* Checkbox - Touch Friendly */
    .checkbox-label {
        padding: 14px;
        gap: 12px;
        font-size: 12px;
    }

    .checkmark {
        width: 28px;
        height: 28px;
    }

    /* Party Details */
    .party-details {
        padding: 20px 15px;
    }

    .party-details h3 {
        font-size: 12px;
    }

    /* Contact Details */
    .contact-details h3 {
        font-size: 11px;
        margin-bottom: 15px;
    }

    /* Footer */
    footer {
        padding: 30px 15px;
        margin-top: 40px;
    }

    .footer-icons {
        font-size: 20px;
    }

    .footer-tagline {
        font-size: 8px;
    }

    /* Booking Summary in header */
    .booking-summary h3 {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 70px 10px 20px;
    }

    nav {
        padding: 8px 10px;
    }

    .nav-logo {
        font-size: 8px;
    }

    .nav-back {
        font-size: 7px;
    }

    .booking-header h1 {
        font-size: 16px;
    }

    .header-icons {
        font-size: 24px;
    }

    .tagline {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .pixel-border {
        padding: 15px 12px;
    }

    .form-step h2 {
        font-size: 11px;
    }

    .section-desc {
        font-size: 12px;
    }

    /* Hours grid stays 3 columns but smaller */
    .hours-grid {
        gap: 5px;
    }

    .hours-item {
        padding: 6px 4px;
    }

    .hours-item .day {
        font-size: 9px;
    }

    .hours-item .time {
        font-size: 8px;
    }

    /* Time Slots - 2 columns on very small */
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Session Content */
    .session-content {
        padding: 15px 12px;
        gap: 12px;
    }

    .session-icon {
        font-size: 28px;
    }

    .session-name {
        font-size: 10px;
    }

    .session-price {
        font-size: 9px;
    }

    /* Counter - Compact */
    .counter-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .counter-control input {
        width: 45px;
        font-size: 16px;
    }

    .counter-control {
        gap: 10px;
    }

    /* Buttons */
    .button-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .btn-secondary {
        order: 2;
    }

    /* Progress */
    .progress-bar {
        gap: 3px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 9px;
    }

    .step-label {
        font-size: 5px;
    }

    .progress-line {
        width: 8px;
    }

    /* Summary */
    .summary-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Success Message */
    .success-icon {
        font-size: 50px;
    }

    .success-message h2 {
        font-size: 16px;
    }

    .success-text {
        font-size: 14px;
    }

    .confirmation-details {
        padding: 15px;
    }

    .confirmation-details span {
        font-size: 10px;
    }

    .success-info p {
        font-size: 12px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .booking-header h1 {
        font-size: 14px;
    }

    .form-step h2 {
        font-size: 10px;
    }

    .session-content {
        padding: 12px 10px;
    }

    .counter-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-number {
        width: 26px;
        height: 26px;
        font-size: 8px;
    }

    .step-label {
        display: none;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Loading State */
.btn-primary.loading {
    position: relative;
    color: transparent;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 3px solid transparent;
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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