/* ===================================
   BOOKING PAGE - MODERN RENOVATION
   =================================== */

/* Animated Background */
.booking-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a2e 100%);
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

#bookingParticles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: float 15s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00ffff 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #7b2cbf 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #00ffff 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -100px) scale(1.1); }
    66% { transform: translate(-100px, 100px) scale(0.9); }
}

/* Hero Section */
.booking-hero {
    padding: 6rem 0 3rem;
    position: relative;
    z-index: 1;
}

.booking-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    color: #00ffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0, 255, 255, 0); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, #00ffff 0%, #7b2cbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.trust-item i {
    color: #00ffff;
    font-size: 1.2rem;
}

/* Progress Indicator */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 3rem auto 3rem;
    padding: 0 2rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    opacity: 0.4;
    transition: all 0.3s ease;
}

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

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

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #00ffff 0%, #7b2cbf 100%);
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.progress-step.completed .step-number {
    background: #00ffff;
    border-color: #00ffff;
}

.step-label {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 1rem;
    position: relative;
    top: -25px;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    overflow: hidden;
}

.card-header {
    background: rgba(0, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-header i {
    font-size: 1.5rem;
    color: #00ffff;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Booking Container */
.booking-section {
    padding: 0 0 4rem;
    position: relative;
    z-index: 1;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Calendar Styles */
.booking-calendar {
    height: fit-content;
}

.calendar-wrapper {
    padding: 2rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    color: #00ffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.2);
}

#currentMonth {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 1.5rem;
}

.calendar-day-header {
    text-align: center;
    padding: 0.8rem 0;
    font-weight: 700;
    color: #00ffff;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    position: relative;
    min-height: 50px;
    font-size: 1rem;
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    color: rgba(255, 255, 255, 0.3);
}

.calendar-day.unavailable {
    background: rgba(255, 100, 100, 0.1);
    border-color: rgba(255, 100, 100, 0.2);
    cursor: not-allowed;
    color: rgba(255, 100, 100, 0.6);
}

.calendar-day.available {
    background: rgba(0, 255, 240, 0.1);
    border-color: rgba(0, 255, 240, 0.3);
    cursor: pointer;
}

.calendar-day.available:hover {
    background: rgba(0, 255, 240, 0.2);
    border-color: rgba(0, 255, 240, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 255, 240, 0.3);
}

.calendar-day.selected {
    background: linear-gradient(135deg, #00ffff 0%, #7b2cbf 100%);
    border-color: #00ffff;
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Calendar Legend */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid;
}

.legend-color.available {
    background: rgba(0, 255, 240, 0.2);
    border-color: rgba(0, 255, 240, 0.5);
}

.legend-color.unavailable {
    background: rgba(255, 100, 100, 0.2);
    border-color: rgba(255, 100, 100, 0.5);
}

/* Time Slots */
.time-slots-wrapper {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.time-slots-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.time-slots-header i {
    color: #00ffff;
    font-size: 1.3rem;
}

.time-slots-header h4 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

#selectedDate {
    color: #00ffff;
    font-weight: 700;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    max-height: 350px;
    overflow-y: auto;
    padding: 0.5rem;
}

.time-slots::-webkit-scrollbar {
    width: 8px;
}

.time-slots::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.time-slots::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 255, 0.3);
    border-radius: 10px;
}

.time-slot {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-slot:hover {
    background: rgba(0, 255, 240, 0.1);
    border-color: rgba(0, 255, 240, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 240, 0.2);
}

.time-slot.selected {
    background: linear-gradient(135deg, #00ffff 0%, #7b2cbf 100%);
    border-color: #00ffff;
    box-shadow: 0 6px 16px rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-state p {
    font-size: 1rem;
    margin: 0;
}

/* Form Styles */
.booking-form {
    height: fit-content;
}

.booking-form form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group label i {
    color: #00ffff;
    width: 16px;
}

.optional {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 0.85rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: #00ffff;
    box-shadow: 0 0 0 4px rgba(0, 255, 255, 0.1);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Contact Method Cards */
.contact-method-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.method-card {
    position: relative;
    cursor: pointer;
    width: 100%;
}

.method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.method-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 140px;
    width: 100%;
}

.method-content i {
    font-size: 2.5rem;
    color: #00ffff;
}

.method-content span {
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.method-content small {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.method-card input:checked + .method-content {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    box-shadow: 0 4px 16px rgba(0, 255, 255, 0.2);
}

/* Booking Summary */
.booking-summary {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(123, 44, 191, 0.1) 100%);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0 1.5rem;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.summary-header i {
    color: #00ffff;
    font-size: 1.5rem;
}

.summary-header h4 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.summary-item i {
    color: #00ffff;
    font-size: 1.2rem;
    margin-top: 2px;
}

.summary-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.summary-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/* Submit Button */
.form-actions {
    margin-top: 2rem;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #00ffff 0%, #7b2cbf 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.3);
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

.btn-submit:active:not(:disabled) {
    transform: translateY(0);
}

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

.submit-note {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-note i {
    color: #00ffff;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .booking-container {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trust-indicators {
        display: none;
    }
    
    .booking-progress {
        padding: 0 1rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .progress-line {
        margin: 0 0.5rem;
        top: -20px;
    }
    
    .card-header {
        padding: 1.2rem 1.5rem;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .calendar-wrapper,
    .time-slots-wrapper,
    .booking-form form {
        padding: 1.5rem;
    }
    
    .calendar-grid {
        gap: 6px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-method-cards {
        grid-template-columns: 1fr;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .booking-hero {
        padding: 4rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .calendar-day-header {
        font-size: 0.7rem;
        padding: 0.5rem 0;
    }
    
    .time-slots {
        grid-template-columns: 1fr;
    }
}