    
        .booking-page {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #fff7e9;
            width: 100%;
            min-height: 100vh;
            padding: 40px 0;
            box-sizing: border-box;
       }
        
        .booking-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 48px 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 10px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(226, 232, 240, 0.6);
            transition: all 0.3s ease;
        }
        
        .booking-card:hover {
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 10px 30px rgba(0, 0, 0, 0.04);
        }
        
        /* ========================================
           HEADER
           ======================================== */
        .booking-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ebf8ff, #bee3f8);
            color: #276749;
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        .booking-title {
            font-size: 32px;
            font-weight: 800;
            color: #1a202c;
            letter-spacing: -0.5px;
            margin-top: 16px;
            margin-bottom: 8px;
        }
        
        .booking-title span {
            color: #276749;
        }
        
        .booking-subtitle {
            color: #718096;
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 32px;
        }
        
        /* ========================================
           FORM STYLES
           ======================================== */
        .form-label {
            font-weight: 600;
            color: #2d3748;
            font-size: 14px;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .form-label .required {
            color: #e53e3e;
            font-size: 16px;
        }
        
        .form-label .label-icon {
            color: #276749;
        }
        
        .booking-input,
        .form-select {
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 12px 16px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: #f7fafc;
            font-family: 'Inter', sans-serif;
            width: 100%;
        }
        
        .booking-input:focus,
        .form-select:focus {
            border-color: #276749;
            box-shadow: 0 0 0 4px rgba(66, 153, 225, 0.12);
            background: #ffffff;
            outline: none;
        }
        
        .booking-input::placeholder {
            color: #a0aec0;
        }
        
        .booking-textarea {
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 12px 16px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: #f7fafc;
            font-family: 'Inter', sans-serif;
            width: 100%;
            resize: vertical;
            min-height: 120px;
        }
        
        .booking-textarea:focus {
            border-color: #276749;
            box-shadow: 0 0 0 4px rgba(66, 153, 225, 0.12);
            background: #ffffff;
            outline: none;
        }
        
        .booking-textarea::placeholder {
            color: #a0aec0;
        }
        
        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a5568' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
            cursor: pointer;
        }
        
        .form-select option:disabled {
            color: #a0aec0;
            background: #f7fafc;
        }
        
        /* ========================================
           SUBMIT BUTTON
           ======================================== */
        .booking-btn {
            background: #276749;
            color: white;
            border: none;
            border-radius: 12px;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(66, 153, 225, 0.35);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            margin-top: 8px;
        }
        
        .booking-btn:hover {
            transform: translateY(-2px);
        }
        
        .booking-btn:active {
            transform: translateY(0);
        }
        
        .booking-btn i {
            font-size: 20px;
        }
        
        /* ========================================
           INPUT GROUP WITH ICON
           ======================================== */
        .input-group-custom {
            position: relative;
        }
        
        .input-group-custom .input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #a0aec0;
            font-size: 18px;
            pointer-events: none;
        }
        
        .input-group-custom .booking-input {
            padding-left: 44px;
        }
        
        /* ========================================
           SWEETALERT2 CUSTOM
           ======================================== */
        .booking-alert-popup {
            border-radius: 16px !important;
            padding: 24px !important;
        }
        
        .booking-alert-title {
            font-family: 'Inter', sans-serif !important;
            font-weight: 700 !important;
        }
        
        .booking-alert-button {
            border-radius: 10px !important;
            padding: 10px 32px !important;
            font-weight: 600 !important;
            font-family: 'Inter', sans-serif !important;
        }
        
        /* ========================================
           RESPONSIVE
           ======================================== */
        @media (max-width: 768px) {
            .booking-card {
                padding: 32px 24px;
                border-radius: 20px;
                margin: 0 16px;
            }
            
            .booking-title {
                font-size: 26px;
            }
            
            .booking-subtitle {
                font-size: 14px;
            }
            
            .booking-input,
            .form-select,
            .booking-textarea {
                font-size: 14px;
                padding: 10px 14px;
            }
            
            .booking-btn {
                padding: 14px 24px;
                font-size: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .booking-card {
                padding: 24px 16px;
            }
            
            .booking-title {
                font-size: 22px;
            }
            
            .booking-badge {
                font-size: 11px;
                padding: 4px 16px;
            }
            
            .booking-btn {
                padding: 12px 20px;
                font-size: 14px;
            }
        }
        
        /* ========================================
           ANIMATIONS
           ======================================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .booking-card {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        /* Disabled state for select */
        .form-select:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            background-color: #f7fafc;
        }