/* Modern Booking System Styles */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --text-dark: #2c3e50;
    --border-radius: 12px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Banner Area Modernization */
.banner_area {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #16213e 100%);
    padding: 60px 0 15px;
    position: relative;
    overflow: hidden;
}
.banner_inner_content {
    position: relative;
    padding: 80px 0px 0px 0px !important;
}
.banner_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.banner_inner_content {
    z-index: 2;
    text-align: center;
}

.banner_inner_content h3 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease;
}

.banner_inner_content ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    animation: fadeInUp 1s ease;
}

.banner_inner_content ul li {
    position: relative;
}

.banner_inner_content ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

.banner_inner_content ul li.active a,
.banner_inner_content ul li a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    padding-right: 18px;
}

/* Booking Container */
.reserv_table_area {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Info Card */
.booking-info-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    color: white;
    box-shadow: var(--box-shadow);
    height: fit-content;
    position: sticky;
    top: 20px;
    animation: slideInLeft 0.8s ease;
}

.booking-info-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-info-card h3 span {
    display: block;
    font-size: 2.5rem;
    margin-top: 10px;
}

.booking-info-card p {
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.pricing-notice {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.pricing-notice h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-notice h4::before {
    content: '⚠️';
    font-size: 1.3rem;
}

.pricing-notice ul {
    list-style: none;
    padding: 0;
}

.pricing-notice li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-notice li::before {
    content: '✓';
    background: rgba(255, 255, 255, 0.3);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-notice li:last-child {
    border-bottom: none;
}

/* Form Container */
.booking-form-container {
    background: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    animation: slideInRight 0.8s ease;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

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

.modern-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.5rem;
    transition: var(--transition);
}

.modern-input,
.modern-select,
.modern-textarea {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: var(--transition);
    background: #f8f9fa;
    color: var(--text-dark);
}

.modern-input:focus,
.modern-select:focus,
.modern-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.modern-input::placeholder {
    color: #adb5bd;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    background: #f8f9fa;
    font-weight: 500;
}

.radio-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

.radio-option label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    transition: var(--transition);
}

.radio-option input[type="radio"]:checked + label::before {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: inset 0 0 0 4px white;
}

/* Children Section */
.children-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    border: 2px dashed #dee2e6;
}

.children-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 15px;
    margin-bottom: 15px;
    align-items: end;
}

.btn-add-child,
.btn-remove-child {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.btn-add-child {
    background: var(--success-color);
    color: white;
}

.btn-add-child:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-remove-child {
    background: var(--danger-color);
    color: white;
}

.btn-remove-child:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Payment Section */
.payment-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.total-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.total-amount .amount {
    color: var(--primary-color);
    font-size: 2rem;
}

/* Captcha Section */
.captcha-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.captcha-image {
    text-align: center;
}

.captcha-image img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.5s ease;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert::before {
    font-size: 1.5rem;
}

.alert-success::before {
    content: '✓';
}

.alert-danger::before {
    content: '✗';
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-info-card {
        position: relative;
        top: 0;
    }

    .booking-form-container {
        padding: 30px;
    }

    .children-row {
        grid-template-columns: 1fr;
    }

    .captcha-container {
        grid-template-columns: 1fr;
    }
}

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

    .booking-info-card,
    .booking-form-container {
        padding: 20px;
    }

    .form-header h2 {
        font-size: 1.8rem;
    }

    .radio-group {
        flex-direction: column;
    }
}

.auth-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding-bottom: 20px;
    padding-top: 20px;
}

.auth-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 20px;
    animation: slideUp 0.5s ease-out;
}

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

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.auth-header p {
    color: #666;
    font-size: 14px;
}

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

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="tel"],
select {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

input:focus,
select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.password-toggle {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 42px;
    cursor: pointer;
    color: #667eea;
    font-size: 18px;
    user-select: none;
}

.error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ffb606 0%, #a86f00 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
    color: #999;
    font-size: 13px;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    background: white;
    padding: 0 10px;
    position: relative;
}

.auth-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

.auth-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-link a:hover {
    color: #764ba2;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    cursor: pointer;
}

.otp-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.otp-inputs input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.success-icon {
    text-align: center;
    margin-bottom: 20px;
}

.success-icon svg {
    width: 60px;
    height: 60px;
    color: #2ecc71;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.back-link:hover {
    color: #764ba2;
}

.timer {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin-top: 15px;
}

.resend-link {
    color: #667eea;
    cursor: pointer;
    font-weight: 600;
}

.hidden {
    display: none;
}

.strength-meter {
    height: 4px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-top: 8px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
}

.strength-weak {
    background: #e74c3c;
}
.strength-fair {
    background: #f39c12;
}
.strength-good {
    background: #3498db;
}
.strength-strong {
    background: #2ecc71;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 25px;
    }

    .auth-header h1 {
        font-size: 22px;
    }
}