.booking-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d563 0%, #00a84f 100%);
}

.booking-wrapper {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 213, 99, 0.1);
    border: 1px solid rgba(0, 213, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.booking-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #00d563 0%, #00a84f 100%);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #00160a;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #00d563;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Step Form Styles */
.form-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-methods h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #00160a;
}

.payment-method-btn {
    padding: 14px 5px;
    margin: 0 2px 10px;
    border: 2px solid #e0e0e0;
    background: white;
    cursor: pointer;
    border-radius: 9px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    width: 49%;
    color: #00160a;
    position: relative;
    overflow: hidden;
}

.payment-method-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 213, 99, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.payment-method-btn:hover::before {
    width: 300px;
    height: 300px;
}

.payment-method-btn:hover {
    border-color: #00d563;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 213, 99, 0.2);
}

.payment-method-btn.active {
    border-color: #00d563;
    background: #00d563;
    color: white;
}

.payment-method-btn.active::before {
    display: none;
}

.payment-section {
    display: none;
    margin-top: 30px;
    padding: 35px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid rgba(0, 213, 99, 0.15);
}

.payment-section.active {
    display: block;
}

#card-element {
    border: 2px solid #e0e0e0;
    padding: 20px;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
}

#card-element:focus-within {
    border-color: #00d563;
    box-shadow: 0 0 0 4px rgba(0, 213, 99, 0.1);
}

#card-errors, #express-checkout-errors {
    color: #dc3545;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    padding: 12px;
    background: #f8d7da;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    display: none;
}

#card-errors.show, #express-checkout-errors.show {
    display: block;
}

.session-price {
    font-size: 18px;
    font-weight: 700;
    color: white;
    padding: 10px 30px;
    background: linear-gradient(135deg, #00160a 0%, #00160a 100%);
    border-radius: 12px;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.btn-disabled {
    opacity: 0.6;
    pointer-events: none;
    cursor: not-allowed;
}

#paypal-button-container, #express-checkout-element {
    max-width: 400px;
    margin: 0 auto;
}

.contact-us__input {
    margin-bottom: 25px;
}

.contact-us__input input,
.contact-us__input select {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    color: #00160a;
    font-weight: 500;
}

.contact-us__input input::placeholder,
.contact-us__input select option:first-child {
    color: #adb5bd;
}

.contact-us__input input:focus,
.contact-us__input select:focus {
    border-color: #00d563;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 213, 99, 0.1);
    background: white;
}

.contact-us__input input.error,
.contact-us__input select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
    animation: shake 0.5s;
}

.contact-us__input input.error:focus,
.contact-us__input select.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.contact-us__input select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300d563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 50px;
}

.rs-btn {
    width: 100%;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #00d563;
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 213, 99, 0.3);
    cursor: pointer;
}

.rs-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.rs-btn:hover::before {
    left: 100%;
}

.rs-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 213, 99, 0.4);
}

.rs-btn:active {
    transform: translateY(-1px);
}

.rs-btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
}

.rs-btn-secondary:hover {
    box-shadow: 0 12px 30px rgba(108, 117, 125, 0.4);
}

.form-note {
    background: linear-gradient(135deg, #d1f4e0 0%, #e8f9f0 100%);
    border-left: 5px solid #00d563;
    padding: 18px 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    font-size: 15px;
    color: #00160a;
    font-weight: 500;
}

.form-note strong {
    color: #00a84f;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.button-group .rs-btn {
    flex: 1;
}

.booking-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(0, 213, 99, 0.2);
    margin-bottom: 30px;
}

.booking-summary h4 {
    color: #00160a;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.booking-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

.booking-summary-item:last-child {
    border-bottom: none;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #00d563;
}

.booking-summary-label {
    color: #6c757d;
    font-weight: 500;
}

.booking-summary-value {
    color: #00160a;
    font-weight: 600;
}

.booking-summary-total {
    font-size: 24px;
    color: #00d563;
}

@media (max-width: 768px) {
    .booking-wrapper {
        padding: 40px 25px;
    }

    .section-title {
        font-size: 28px;
    }

    .payment-method-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .session-price {
        font-size: 22px;
        padding: 15px 20px;
    }

    .payment-methods {
        padding: 20px;
    }

    .button-group {
        flex-direction: column;
    }
}

.breadcrumbsec {
    background: linear-gradient(135deg, #00160a 0%, #003d1f 100%);
    position: relative;
    overflow: hidden;
}

.breadcrumbsec::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 213, 99, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.breadcrumbsec h1 {
    color: white;
    position: relative;
    z-index: 1;
}