 /* Booking Hero Section */
 .booking-hero {
     padding: 140px 0 60px;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
     position: relative;
 }

 .booking-title {
     font-weight: 900;
     font-size: 3.5rem;
     margin-bottom: 20px;
     color: #222;
     line-height: 1.2;
 }

 .booking-subtitle {
     font-size: 1.4rem;
     color: var(--gold-color);
     margin-bottom: 25px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .booking-subtitle i {
     margin-left: 10px;
 }

 /* Booking Steps */
 .booking-steps {
     padding: 40px 0;
     background: white;
 }

 .steps-container {
     display: flex;
     justify-content: center;
     align-items: center;
     max-width: 800px;
     margin: 0 auto;
 }

 .step {
     display: flex;
     flex-direction: column;
     align-items: center;
     flex: 1;
     position: relative;
 }

 .step-number {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: var(--light-gold);
     color: var(--gold-color);
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 1.2rem;
     margin-bottom: 10px;
     transition: var(--transition);
 }

 .step.active .step-number {
     background: var(--gold-color);
     color: white;
 }

 .step-text {
     font-weight: 600;
     color: #666;
     font-size: 0.9rem;
     text-align: center;
 }

 .step.active .step-text {
     color: var(--gold-color);
 }

 .step-connector {
     flex: 1;
     height: 2px;
     background: var(--light-gold);
     margin: 0 15px;
 }

 /* Booking Form Section */
 .booking-section {
     padding: 60px 0;
     background: var(--light-bg);
 }

 .booking-card {
     background: white;
     padding: 40px;
     border-radius: 20px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
     margin-bottom: 30px;
     border-top: 5px solid var(--gold-color);
 }

 .section-title {
     margin-bottom: 30px;
     font-weight: 800;
     color: #222;
     position: relative;
     font-size: 1.8rem;
     padding-bottom: 15px;
 }

 .section-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     right: 0;
     width: 80px;
     height: 4px;
     background: var(--gold-color);
     border-radius: 2px;
 }

 /* Form Styles */
 .form-group {
     margin-bottom: 25px;
 }

 .form-label {
     font-weight: 600;
     margin-bottom: 10px;
     color: #333;
     display: block;
 }

 .form-control,
 .form-select {
     padding: 15px 20px;
     border-radius: 12px;
     border: 1px solid #e0e0e0;
     font-size: 1rem;
     transition: var(--transition);
     background: #f9f9f9;
     width: 100%;
 }

 .form-control:focus,
 .form-select:focus {
     border-color: var(--gold-color);
     box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
     background: white;
 }

 .date-inputs {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
 }

 /* Resort Selection */
 .resort-options {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 20px;
     margin-top: 20px;
 }

 .resort-option {
     border: 2px solid #e0e0e0;
     border-radius: 15px;
     padding: 20px;
     cursor: pointer;
     transition: var(--transition);
     background: white;
 }

 .resort-option:hover {
     border-color: var(--gold-color);
     transform: translateY(-5px);
 }

 .resort-option.selected {
     border-color: var(--gold-color);
     background: var(--light-gold);
 }

 .resort-name {
     font-weight: 700;
     margin-bottom: 10px;
     color: #222;
 }

 .resort-location {
     color: #666;
     font-size: 0.9rem;
     margin-bottom: 10px;
 }

 .resort-price {
     font-weight: 700;
     color: var(--gold-color);
     font-size: 1.1rem;
 }

 /* Unit Selection */
 .unit-options {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 20px;
     margin-top: 20px;
 }

 .unit-option {
     border: 2px solid #e0e0e0;
     border-radius: 15px;
     padding: 25px 20px;
     cursor: pointer;
     transition: var(--transition);
     background: white;
     text-align: center;
 }

 .unit-option:hover {
     border-color: var(--gold-color);
     transform: translateY(-5px);
 }

 .unit-option.selected {
     border-color: var(--gold-color);
     background: var(--light-gold);
 }

 .unit-icon {
     font-size: 2.5rem;
     color: var(--gold-color);
     margin-bottom: 15px;
 }

 .unit-name {
     font-weight: 700;
     margin-bottom: 10px;
     color: #222;
     font-size: 1.2rem;
 }

 .unit-capacity {
     color: #666;
     margin-bottom: 10px;
     font-size: 0.9rem;
 }

 .unit-price {
     font-weight: 700;
     color: var(--gold-color);
     font-size: 1.3rem;
 }

 /* Price Summary */
 .price-summary {
     background: var(--light-gold);
     border-radius: 15px;
     padding: 30px;
     margin-top: 30px;
 }

 .price-item {
     display: flex;
     justify-content: space-between;
     margin-bottom: 15px;
     padding-bottom: 15px;
     border-bottom: 1px solid rgba(212, 175, 55, 0.2);
 }

 .price-item:last-child {
     border-bottom: none;
     margin-bottom: 0;
     padding-bottom: 0;
 }

 .price-label {
     color: #555;
 }

 .price-value {
     font-weight: 600;
     color: #333;
 }

 .price-total {
     display: flex;
     justify-content: space-between;
     margin-top: 20px;
     padding-top: 20px;
     border-top: 2px solid var(--gold-color);
     font-size: 1.2rem;
     font-weight: 700;
 }

 .total-label {
     color: #222;
 }

 .total-value {
     color: var(--gold-color);
 }

 /* Booking Button */
 .booking-btn {
     background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-dark) 100%);
     color: white;
     padding: 18px 45px;
     border-radius: 50px;
     font-weight: 700;
     font-size: 1.3rem;
     border: none;
     transition: var(--transition);
     box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
     display: block;
     width: 100%;
     margin-top: 30px;
 }

 .booking-btn:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
 }

 .booking-btn:disabled {
     background: #ccc;
     box-shadow: none;
     transform: none;
     cursor: not-allowed;
 }


 /* Responsive Adjustments */
 @media (max-width: 1200px) {
     .booking-title {
         font-size: 3rem;
     }
 }

 @media (max-width: 992px) {
     .booking-title {
         font-size: 2.5rem;
     }

     .booking-card {
         padding: 30px 25px;
     }

     .resort-options,
     .unit-options {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 768px) {
     .booking-title {
         font-size: 2.2rem;
     }

     .steps-container {
         flex-direction: column;
         gap: 30px;
     }

     .step-connector {
         display: none;
     }

     .step {
         flex-direction: row;
         gap: 15px;
     }

     .step-text {
         text-align: right;
     }

     .date-inputs {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 576px) {
     .booking-title {
         font-size: 2rem;
     }

     .booking-card {
         padding: 25px 20px;
     }

     .price-summary {
         padding: 20px;
     }
 }

 .loading {
     text-align: center;
     padding: 20px;
     color: #666;
     font-style: italic;
 }

 .unit-option {
     cursor: pointer;
     border: 2px solid #e0e0e0;
     border-radius: 10px;
     padding: 15px;
     margin: 10px 0;
     transition: all 0.3s ease;
 }

 .unit-option:hover {
     border-color: var(--gold-color);
     transform: translateY(-2px);
 }

 .unit-option.selected {
     border-color: var(--gold-color);
     background-color: #fff9e6;
 }