/* Enhanced Booking Page Styles */

/* Booking Page */
.booking-section {
    padding: 120px 0 100px;
    background: var(--gradient-dark);
    min-height: 100vh;
}

.booking-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

/* Progress Steps */
.booking-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 20px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 2;
}

.step.active {
    opacity: 1;
}

.step span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-fire);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

.form-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-fire);
    box-shadow: 0 0 10px var(--shadow-fire);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Enhanced Package Selection */
.package-selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.package-option {
    position: relative;
}

.package-option input[type="radio"] {
    display: none;
}

.package-card-mini {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.package-card-mini:hover {
    border-color: var(--primary-fire);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-fire);
}

.package-option input[type="radio"]:checked + .package-card-mini {
    border-color: var(--accent-orange);
    background: rgba(247, 147, 30, 0.1);
    transform: scale(1.02);
}

.package-card-mini.premium {
    border: 2px solid #FFD700;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-fire);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.package-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.package-card-mini h4 {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-family: 'Cinzel', serif;
}

.package-card-mini .package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-orange);
    margin-bottom: 10px;
}

.package-card-mini p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Main Contact Section */
.main-contact-section {
    background: rgba(255, 68, 68, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-fire);
    border: 2px solid rgba(255, 68, 68, 0.2);
}

.main-contact-section h4 {
    color: var(--text-orange);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-family: 'Cinzel', serif;
}

/* Attendees Section */
.attendees-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-fire);
}

.attendees-section h4 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.attendee-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-style: italic;
    text-align: center;
}

.attendee-input-group {
    margin-bottom: 15px;
}

.attendee-input-group .form-group {
    margin-bottom: 0;
}

.attendee-name-input[readonly] {
    background: rgba(247, 147, 30, 0.1);
    border-color: var(--accent-orange);
}

/* Add-ons Styles */
.addons-note {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-style: italic;
    font-size: 1.1rem;
}

.selected-items-cart {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid var(--primary-fire);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    animation: slideInDown 0.5s ease;
}

.selected-items-cart h4 {
    color: var(--text-orange);
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
}

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

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    display: block;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 3px;
}

.cart-item-price {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 15px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-fire);
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px var(--shadow-fire);
}

.quantity-btn.minus {
    background: rgba(255, 68, 68, 0.8);
}

.quantity-btn.plus {
    background: var(--gradient-fire);
}

.quantity {
    min-width: 25px;
    text-align: center;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.cart-item-total {
    color: var(--text-orange);
    font-weight: 600;
    min-width: 80px;
    text-align: right;
    font-size: 1.1rem;
}

.cart-total {
    text-align: right;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--primary-fire);
    color: var(--text-light);
    font-size: 1.3rem;
}

/* Addon Categories */
.addon-category {
    margin-bottom: 40px;
}

.addon-category h4 {
    color: var(--text-orange);
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
    font-family: 'Cinzel', serif;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.addon-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.addon-item:hover {
    border-color: var(--primary-fire);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-fire);
}

.addon-info {
    flex: 1;
}

.addon-info h5 {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.addon-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.addon-price {
    color: var(--text-orange);
    font-weight: 600;
    font-size: 1.1rem;
}

.add-btn {
    background: var(--gradient-fire);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-fire);
}

.add-btn.special {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
}

.add-btn.special:hover {
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.plus-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.next-btn, .back-btn, .confirm-btn, .save-booking-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    margin: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-btn, .confirm-btn, .save-booking-btn {
    background: var(--gradient-fire);
    color: white;
}

.next-btn:hover, .confirm-btn:hover, .save-booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-fire);
}

.back-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-orange);
    color: var(--text-orange);
}

.next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Booking Summary */
.booking-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.summary-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.summary-section h4 {
    color: var(--text-orange);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-family: 'Cinzel', serif;
}

.summary-section p,
.summary-section ul {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.5;
}

.summary-section ul {
    list-style: none;
    padding-left: 0;
}

.summary-section li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.summary-section li::before {
    content: '👤';
    margin-right: 10px;
}

.total-summary {
    background: var(--gradient-fire);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 0 10px 30px var(--shadow-fire);
}

.total-breakdown {
    color: white;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.total-row.grand-total {
    font-size: 1.4rem;
    font-weight: 700;
    padding-top: 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 15px;
}




/* Important Warnings Section */
.important-warnings-section {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid var(--primary-fire);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
    animation: warningPulse 3s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 68, 68, 0.6);
    }
}

.warnings-container h3 {
    text-align: center;
    color: var(--text-orange);
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.warning-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.warning-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.warning-item:hover::before {
    left: 100%;
}

.warning-item.critical {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.warning-item.critical:hover {
    border-color: #ff4444;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
}

.warning-item.info {
    border-color: #17a2b8;
    background: rgba(23, 162, 184, 0.1);
}

.warning-item.info:hover {
    border-color: #20c997;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(23, 162, 184, 0.4);
}

.warning-item.notice {
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.warning-item.notice:hover {
    border-color: #ffed4e;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

.warning-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.warning-content h4 {
    color: var(--text-light);
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.warning-content ul {
    list-style: none;
    padding: 0;
}

.warning-content li {
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.warning-content li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--text-orange);
    font-size: 0.8rem;
}

.warning-content li strong {
    color: var(--text-orange);
}

/* Agreement Section */
.agreement-section {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--accent-orange);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.agreement-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    position: relative;
}

.agreement-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-fire);
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.agreement-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--gradient-fire);
    border-color: var(--accent-orange);
}

.agreement-checkbox input[type="checkbox"]:checked + .checkmark::after {
    transform: translate(-50%, -50%) scale(1);
}

.agreement-text {
    color: var(--text-light);
    line-height: 1.6;
    text-align: left;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .important-warnings-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .warnings-container h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .warning-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .warning-item {
        padding: 15px;
    }
    
    .warning-icon {
        font-size: 2rem;
    }
    
    .warning-content h4 {
        font-size: 1.1rem;
    }
    
    .agreement-section {
        padding: 20px;
    }
    
    .agreement-checkbox {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .checkmark {
        width: 20px;
        height: 20px;
    }
    
    .agreement-text {
        font-size: 0.9rem;
    }
}

/* Extra attention-grabbing effects */
.warning-item.critical {
    animation: criticalWarning 2s ease-in-out infinite;
}

@keyframes criticalWarning {
    0%, 100% { 
        border-color: #dc3545;
    }
    50% { 
        border-color: #ff4444;
    }
}

/* Payment Styles */
.payment-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.payment-method {
    text-align: center;
}

.payment-method h4 {
    color: var(--text-orange);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid var(--primary-fire);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.qr-code-placeholder img{
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;

}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.payment-info p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1rem;
}

.payment-amount {
    background: var(--gradient-fire);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.amount-display {
    font-size: 3rem;
    font-weight: 700;
    margin-top: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.payment-instructions {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--text-muted);
}

/* Success with Ticket */
.booking-success {
    text-align: center;
    padding: 60px 40px;
    background: rgba(40, 167, 69, 0.1);
    border: 2px solid #28a745;
    border-radius: 20px;
    animation: slideInUp 0.5s ease;
}

.success-animation {
    margin-bottom: 30px;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #28a745;
    color: white;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-content h2 {
    color: #28a745;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-family: 'Cinzel', serif;
}

.success-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.booking-id-display {
    background: var(--gradient-fire);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    color: white;
    box-shadow: 0 10px 30px var(--shadow-fire);
}

.booking-id-display h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.booking-id {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.booking-id span {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.important-notice {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid var(--primary-fire);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

.important-notice h4 {
    color: var(--text-orange);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.important-notice ul {
    color: var(--text-light);
    padding-left: 20px;
}

.important-notice li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.whatsapp-section {
    margin: 30px 0;
}

.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #20B85A;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.back-home-btn {
    background: var(--gradient-fire);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-fire);
}

/* Custom Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .booking-steps {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .step {
        margin: 0 10px;
    }
    
    .booking-steps::before {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .package-selector-grid {
        grid-template-columns: 1fr;
    }
    
    .addon-grid {
        grid-template-columns: 1fr;
    }
    
    .addon-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .add-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
    
    .cart-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .cart-item-controls {
        margin: 0;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-navigation .back-btn,
    .step-navigation .next-btn,
    .step-navigation .confirm-btn,
    .step-navigation .save-booking-btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .qr-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .amount-display {
        font-size: 2.5rem;
    }
    
    .booking-id span {
        font-size: 1.5rem;
    }
    
    .booking-form-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .package-card-mini {
        padding: 20px;
    }
    
    .package-card-mini .package-price {
        font-size: 1.5rem;
    }
    
    .booking-id span {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .booking-summary {
        padding: 20px;
    }
    
    .total-summary {
        padding: 20px;
    }
    
    .addon-item {
        padding: 15px;
    }
    
    .selected-items-cart {
        padding: 15px;
    }
    
    .main-contact-section,
    .attendees-section {
        padding: 20px;
    }
}
