/* booking.css - Booking Page Specific Styles */

/* Page Header */
.page-header {
    padding: 150px 0 100px;
    background: var(--gradient-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.1;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    color: var(--white);
}

.header-content p {
    font-size: 1.2rem;
    color: var(--off-white);
    max-width: 600px;
    margin: 0 auto;
}

/* Booking Steps */
.booking-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.5;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(142, 68, 173, 0.1);
    border: 2px solid var(--neon-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: var(--neon-purple);
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--gradient-neon);
    color: white;
    border-color: transparent;
    box-shadow: var(--glow);
}

.step-text {
    color: var(--light-purple);
    font-size: 0.9rem;
    font-weight: 500;
}

.step.active .step-text {
    color: var(--white);
    font-weight: 600;
}

/* Booking Container */
.booking-container {
    background: var(--gradient-card);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    margin: 50px 0;
    border: 1px solid rgba(142, 68, 173, 0.3);
    box-shadow: var(--shadow);
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.booking-step h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--white);
    font-family: 'Orbitron', sans-serif;
}

.booking-step p {
    color: var(--light-purple);
    margin-bottom: 30px;
}

/* Service Selection */
.service-selection {
    margin-bottom: 40px;
}

.main-service-selection,
.additional-services {
    margin-bottom: 40px;
}

.main-service-selection h3,
.additional-services h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.additional-services p {
    color: var(--light-purple);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-select {
    width: 100%;
    padding: 15px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(142, 68, 173, 0.3);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-select:focus {
    border-color: var(--neon-purple);
    outline: none;
    box-shadow: 0 0 10px rgba(142, 68, 173, 0.3);
}

.quantity-control {
    margin-bottom: 20px;
}

.quantity-control label {
    display: block;
    margin-bottom: 10px;
    color: var(--off-white);
    font-weight: 500;
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: rgba(142, 68, 173, 0.2);
    border: 2px solid var(--neon-purple);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--neon-purple);
    transform: scale(1.1);
}

#quantity {
    width: 80px;
    height: 40px;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--neon-purple);
    border-radius: 10px;
    color: var(--white);
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.range-slider {
    margin: 30px 0;
}

.range-slider label {
    display: block;
    margin-bottom: 10px;
    color: var(--off-white);
    font-weight: 500;
}

.range-slider input[type="range"] {
    width: 100%;
    height: 10px;
    background: rgba(142, 68, 173, 0.2);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 25px;
    height: 25px;
    background: var(--neon-purple);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 0 10px rgba(142, 68, 173, 0.5);
}

.range-value {
    text-align: right;
    margin-top: 10px;
    color: var(--light-purple);
    font-size: 0.9rem;
}

.range-value span {
    color: var(--neon-purple);
    font-weight: 600;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.service-item-card {
    position: relative;
}

.service-checkbox {
    display: none;
}

.service-item-card label {
    display: block;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(142, 68, 173, 0.3);
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: var(--transition);
    height: 100%;
}

.service-checkbox:checked + label {
    border-color: var(--neon-purple);
    background: rgba(142, 68, 173, 0.2);
    box-shadow: 0 0 15px rgba(142, 68, 173, 0.3);
}

.service-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(142, 68, 173, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--neon-purple);
    font-size: 1.5rem;
}

.service-item-details h4 {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 5px;
    line-height: 1.3;
}

.service-item-price {
    color: var(--neon-purple);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
}

/* Customer Form */
.customer-form {
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--off-white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(142, 68, 173, 0.3);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--neon-purple);
    outline: none;
    box-shadow: 0 0 10px rgba(142, 68, 173, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Booking Summary */
.booking-summary {
    background: rgba(26, 26, 26, 0.8);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(142, 68, 173, 0.3);
}

.summary-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(142, 68, 173, 0.1);
}

.summary-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-name {
    color: var(--light-purple);
    font-size: 0.95rem;
}

.summary-item-price,
.summary-item-value {
    color: var(--neon-purple);
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
}

.total-section {
    text-align: center;
    background: rgba(142, 68, 173, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 2px solid var(--neon-purple);
}

.total-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-purple);
    margin: 10px 0;
    font-family: 'Orbitron', sans-serif;
}

.negotiable-note {
    color: #4cd964;
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
}

/* Step Actions */
.step-actions,
.confirmation-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.btn-prev {
    background: rgba(142, 68, 173, 0.1);
    color: var(--neon-purple);
    border: 2px solid var(--neon-purple);
}

.btn-prev:hover {
    background: rgba(142, 68, 173, 0.2);
}

/* Calculator Section */
.calculator-section {
    padding: 100px 0;
    background: var(--dark-gray);
}

.calculator-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.calculator-container h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--white);
    font-family: 'Orbitron', sans-serif;
}

.calculator-display {
    background: var(--gradient-card);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 2px solid var(--neon-purple);
    box-shadow: var(--shadow);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(142, 68, 173, 0.1);
}

.calc-row:last-child {
    border-bottom: none;
}

.calc-label {
    color: var(--light-purple);
    font-size: 1.1rem;
}

.calc-value {
    color: var(--neon-purple);
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
}

.calc-row.total-row {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--neon-purple);
}

.calc-row.total-row .calc-label {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
}

.calc-row.total-row .calc-value {
    font-size: 2rem;
    color: var(--neon-purple);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--black);
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--white);
    font-family: 'Orbitron', sans-serif;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    border: 1px solid rgba(142, 68, 173, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(142, 68, 173, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--neon-purple);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--light-purple);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 80px;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .booking-container {
        padding: 30px 20px;
    }
    
    .booking-step h2 {
        font-size: 1.8rem;
    }
    
    .step-text {
        font-size: 0.8rem;
    }
    
    .calculator-container h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .step-actions,
    .confirmation-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-actions .btn,
    .confirmation-actions .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .total-amount {
        font-size: 2.5rem;
    }
    
    .calc-row.total-row .calc-value {
        font-size: 1.5rem;
    }
}