/* Booking Page Specific Styles */
.booking-hero {
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.8), rgba(10, 22, 40, 0.6)), 
                url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=2074') center/cover;
}

.booking-section {
    padding: 4rem 0 6rem;
    background: var(--color-bg-alt);
}

.booking-progress {
    max-width: 900px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 3px solid var(--color-border);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-light);
    transition: all var(--transition-fast);
}

.progress-step.active .step-number {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-primary);
}

.step-label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-align: center;
}

.progress-step.active .step-label {
    color: var(--color-primary);
}

.progress-line {
    height: 3px;
    flex: 1;
    background: var(--color-border);
    margin: 0 1rem;
    margin-bottom: 2.5rem;
}

.booking-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

.step-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.tours-select-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tour-select-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    border: 2px solid var(--color-border);
    border-radius: 15px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tour-select-card:hover {
    border-color: var(--color-secondary);
    background: var(--color-bg-alt);
}

.tour-select-card.selected {
    border-color: var(--color-secondary);
    background: rgba(201, 169, 97, 0.05);
}

.tour-select-image {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.tour-select-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-select-info {
    flex: 1;
}

.tour-select-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tour-select-duration {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tour-select-price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
}

/* Calendar Styles */
.calendar-container {
    max-width: 700px;
    margin: 0 auto 2rem;
}

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

.calendar-nav {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.calendar-nav:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.calendar-month {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day-header {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-light);
    padding: 1rem 0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.calendar-day.available {
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.calendar-day.available:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.calendar-day.selected {
    background: var(--color-secondary);
    color: var(--color-primary);
    font-weight: 700;
}

.calendar-day.booked {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

.legend-color.available {
    background: var(--color-bg-alt);
}

.legend-color.selected {
    background: var(--color-secondary);
}

.legend-color.booked {
    background: #f3f4f6;
}

.selected-dates {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 1.1rem;
}

/* Guest Selector */
.guest-selector {
    max-width: 600px;
    margin: 0 auto 3rem;
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 15px;
}

.guest-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.guest-item:last-child {
    border-bottom: none;
}

.guest-label h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.guest-label p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.guest-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guest-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.guest-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.guest-count {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

/* Booking Form */
.booking-form {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.form-label {
    display: block;
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--color-secondary);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Step Actions */
.step-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

/* Confirmation */
.confirmation-content {
    max-width: 700px;
    margin: 0 auto;
}

.booking-summary {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 15px;
}

.summary-section {
    margin-bottom: 2rem;
}

.summary-section:last-child {
    margin-bottom: 0;
}

.summary-section h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.summary-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

.summary-detail span:last-child {
    font-weight: 600;
    color: var(--color-text);
}

/* Price Summary Sidebar */
.price-summary {
    position: fixed;
    top: 120px;
    right: 2rem;
    width: 350px;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.price-summary h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.summary-item span:last-child {
    font-weight: 600;
    color: var(--color-text);
}

.summary-divider {
    height: 1px;
    background: var(--color-border);
    margin: 1.5rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
}

.summary-total span:last-child {
    color: var(--color-secondary);
}

/* Responsive */
@media (max-width: 1400px) {
    .price-summary {
        position: static;
        width: 100%;
        max-width: 400px;
        margin: 3rem auto 0;
    }
}

@media (max-width: 768px) {
    .booking-content {
        padding: 2rem 1.5rem;
    }

    .step-title {
        font-size: 2rem;
    }

    .tour-select-card {
        flex-direction: column;
    }

    .tour-select-image {
        width: 100%;
        height: 200px;
    }

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

    .booking-progress {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .progress-line {
        display: none;
    }

    .step-actions {
        flex-direction: column;
    }

    .step-actions .btn {
        width: 100%;
    }
}
