/* Booking Page Specific Styles */
.booking-section {
    min-height: calc(100vh - 70px);
    padding: 4rem 0 3rem;
    margin-top: 70px;
    background: #f5f5f5;
}

.booking-wrapper {
    max-width: 950px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 3.5rem 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.booking-header h2 {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-weight: 700;
}

.booking-header .text-gold {
    color: #b8985f;
}

.booking-header p {
    color: #666;
    font-size: 1.05rem;
}

/* Cleaner Horizontal Stepper */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
    position: relative;
}

.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.stepper-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stepper-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    text-align: center;
    max-width: 100px;
    line-height: 1.3;
}

.stepper-item.active .stepper-circle {
    background: #b8985f;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(184, 152, 95, 0.3);
}

.stepper-item.active .stepper-label {
    color: #1a1a1a;
    font-weight: 600;
}

.stepper-item.completed .stepper-circle {
    background: #0f172a;
    color: #ffffff;
}

.stepper-item.completed .stepper-circle::before {
    content: '✓';
}

.stepper-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin: 0 1rem;
    position: relative;
    top: -1.5rem;
}

/* Step Content */
.step {
    display: none !important;
}

.step.active {
    display: block !important;
    animation: fadeIn 0.4s ease;
}

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

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

/* Options Grid */
.options-grid {
    display: grid;
    gap: 1.25rem;
}

.options-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.options-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.options-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.option-card {
    position: relative;
    cursor: pointer;
    display: block;
}

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

.option-content {
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    background: #ffffff;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.option-card:hover .option-content {
    border-color: #b8985f;
    box-shadow: 0 4px 12px rgba(184, 152, 95, 0.15);
    transform: translateY(-2px);
}

.option-card input[type="radio"]:checked + .option-content {
    border-color: #b8985f;
    background: rgba(184, 152, 95, 0.04);
    box-shadow: 0 4px 16px rgba(184, 152, 95, 0.2);
}

.option-content i {
    font-size: 3rem;
    color: #b8985f;
    margin-bottom: 1.25rem;
    display: block;
}

.option-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.option-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.pricing-card .option-content {
    min-height: 140px;
}

.pricing-card .price {
    font-size: 1.875rem;
    font-weight: 700;
    color: #b8985f;
    margin-top: 0.75rem;
}

/* Input Grid */
.input-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
}

.input-grid-full {
    grid-template-columns: 1fr;
}

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

.input-group.hidden {
    display: none;
}

.input-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    outline: none;
    border-color: #b8985f;
    box-shadow: 0 0 0 3px rgba(184, 152, 95, 0.1);
}

.input-group textarea {
    resize: vertical;
    line-height: 1.6;
}

/* Custom Date & Time Inputs */
.datetime-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
}

.custom-date-input,
.custom-time-input {
    position: relative;
}

.custom-date-input input[type="date"],
.custom-time-input input[type="time"] {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1.05rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
    cursor: pointer;
    color: #1a1a1a;
}

.custom-date-input input[type="date"]::-webkit-calendar-picker-indicator,
.custom-time-input input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.25rem;
}

.custom-date-input input[type="date"]:focus,
.custom-time-input input[type="time"]:focus {
    outline: none;
    border-color: #b8985f;
    box-shadow: 0 0 0 3px rgba(184, 152, 95, 0.1);
}

.custom-date-input input[type="date"]:hover,
.custom-time-input input[type="time"]:hover {
    border-color: #b8985f;
}

/* Time slot selector */
.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.time-slot {
    padding: 0.875rem 0.5rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a1a;
}

.time-slot:hover {
    border-color: #b8985f;
    background: rgba(184, 152, 95, 0.04);
}

.time-slot.selected {
    border-color: #b8985f;
    background: #b8985f;
    color: #ffffff;
}

.time-slot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Address field animation */
.address-field {
    animation: slideDown 0.3s ease;
    margin-top: 1.5rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 200px;
    }
}

/* Form Actions */
.form-actions {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.form-actions-split {
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.btn-next {
    min-width: 280px;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-wrapper {
        padding: 2.5rem 1.5rem;
    }
    
    .booking-header h2 {
        font-size: 2rem;
    }
    
    .stepper {
        padding: 0 0.5rem;
        overflow-x: auto;
    }
    
    .stepper-circle {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.1rem;
    }
    
    .stepper-label {
        font-size: 0.75rem;
        max-width: 80px;
    }
    
    .stepper-line {
        margin: 0 0.5rem;
        top: -1.25rem;
    }
    
    .options-grid-3,
    .options-grid-4,
    .options-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .input-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions-split {
        flex-direction: column;
    }
    
    .btn-next {
        min-width: 100%;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .option-content {
        padding: 2rem 1rem;
        min-height: 140px;
    }
    
    .option-content i {
        font-size: 2.5rem;
    }
}