:root {
    --primary-cyan: #00f0ff;
    --primary-purple: #6b0fff;
    --accent-pink: #ff006e;
    --success-green: #1db854;
    --error-red: #ff4757;
    --deep-blue: #0a0e27;
    --dark-blue: #1a1f3a;
    --text-light: #ffffff;
    --text-muted: #a0aec0;
}

.booking-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
    margin-top: 80px;
}

.booking-wrapper {
    width: 100%;
    max-width: 900px;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8), rgba(10, 14, 39, 0.8));
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 25px 60px rgba(0, 240, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

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

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.booking-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Form Section */
.booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.two-column {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 0;
}

.form-group.two-column > * {
    margin-bottom: 0;
}

label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-family: 'Orbitron', sans-serif;
}

label .required {
    color: var(--error-red);
}

input,
select,
textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 12px;
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    background: rgba(26, 31, 58, 0.8);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

textarea {
    resize: vertical;
    min-height: 120px;
    font-size: 1rem;
}

/* Service Type Section */
.service-selection {
    margin-bottom: 2rem;
}

.service-selection label {
    margin-bottom: 1.5rem;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.service-option {
    position: relative;
}

.service-option input[type="radio"] {
    display: none;
}

.service-label {
    display: block;
    padding: 1.5rem;
    background: rgba(26, 31, 58, 0.5);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.service-label:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}

.service-option input[type="radio"]:checked + .service-label {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(107, 15, 255, 0.2));
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.service-label .service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.service-label .service-name {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.service-label .service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Time Slot Section */
.time-slot-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.time-slot {
    position: relative;
}

.time-slot input[type="radio"] {
    display: none;
}

.time-label {
    display: block;
    padding: 1.2rem;
    background: rgba(26, 31, 58, 0.5);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    font-weight: 600;
    color: var(--text-light);
}

.time-label:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-2px);
}

.time-slot input[type="radio"]:checked + .time-label {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    border-color: var(--primary-cyan);
    color: white;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

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

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

/* Business Details Section */
.business-details {
    background: rgba(0, 240, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    margin: 2rem 0;
}

.business-details h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
}

/* Form Validation Feedback */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--error-red);
}

.error-message {
    color: var(--error-red);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.success-message {
    background: rgba(29, 184, 84, 0.1);
    border: 1px solid var(--success-green);
    color: var(--success-green);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: none;
}

.success-message.show {
    display: block;
}

/* Form Actions */
.form-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.btn {
    padding: 1.3rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.4);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, rgba(107, 15, 255, 0.1), rgba(0, 240, 255, 0.1));
    border-left: 4px solid var(--primary-cyan);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.info-box strong {
    color: var(--primary-cyan);
}

/* Loading State */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 240, 255, 0.3);
    border-top-color: var(--primary-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
    vertical-align: middle;
}

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

/* Responsive */
@media (max-width: 768px) {
    .booking-wrapper {
        padding: 2rem;
    }

    .booking-form {
        gap: 1.5rem;
    }

    .service-options {
        grid-template-columns: 1fr;
    }

    .time-slot-container {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .form-actions {
        grid-template-columns: 1fr;
    }

    .booking-header h1 {
        font-size: 1.8rem;
    }

    label {
        font-size: 1rem;
    }

    input,
    select,
    textarea {
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .booking-container {
        padding: 1rem;
    }

    .booking-wrapper {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .service-label {
        padding: 1rem;
    }

    .time-label {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}
