/* Book Now Page Styles - RupIELTS Theme */

/* Main Layout */
.book-now-icon-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: 
        radial-gradient(circle, rgba(64, 224, 208, 0.2) 0%, transparent 70%);
    transition: all 0.6s ease;
    opacity: 0;
}

.book-now-icon-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(64, 224, 208, 0.25),
        inset 0 0 0 2px #40e0d0;
}

.book-now-icon-item:hover::before {
    top: -50%;
    left: -50%;
    opacity: 1;
}

.book-now-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    animation: iconBounce 3s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.book-now-icon-item:nth-child(1) .book-now-icon { --delay: 0s; }
.book-now-icon-item:nth-child(2) .book-now-icon { --delay: 0.2s; }
.book-now-icon-item:nth-child(3) .book-now-icon { --delay: 0.4s; }
.book-now-icon-item:nth-child(4) .book-now-icon { --delay: 0.6s; }

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.book-now-icon-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #40e0d0, #ff9999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.book-now-icon-item p {
    color: #666;
    line-height: 1.6;
}

/* Bookings Section */
.book-now-bookings-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.book-now-section-title {
    font-size: 2.2rem;
    margin-bottom: 35px;
    color: var(--dark-text);
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

.book-now-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #40e0d0, #ff9999, #9acd32);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(64, 224, 208, 0.3);
}

/* Table Styles */
.book-now-table-wrapper {
    overflow-x: auto;
    margin: 0 -20px;
    padding: 0 20px;
}

.book-now-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.book-now-table th {
    background: 
        linear-gradient(135deg, rgba(64, 224, 208, 0.2) 0%, rgba(255, 153, 153, 0.2) 100%);
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: var(--dark-text);
    border-bottom: 3px solid rgba(64, 224, 208, 0.3);
    position: sticky;
    top: 0;
    z-index: 10;
}

.book-now-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.book-now-table tr {
    transition: all 0.3s ease;
}

.book-now-table tbody tr:hover {
    background: 
        linear-gradient(135deg, rgba(64, 224, 208, 0.05) 0%, rgba(255, 153, 153, 0.05) 100%);
    transform: translateX(5px);
}

.book-now-fee {
    font-weight: 700;
    color: #40e0d0;
    font-size: 1.2rem;
}

.book-now-btn {
    background: linear-gradient(45deg, #40e0d0, #ff9999);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(64, 224, 208, 0.3);
    position: relative;
    overflow: hidden;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(64, 224, 208, 0.4);
}

.book-now-btn:hover::before {
    width: 300px;
    height: 300px;
}

.book-now-no-data {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 40px;
}

/* Loading Spinner */
.book-now-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.book-now-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(64, 224, 208, 0.2);
    border-top: 4px solid #40e0d0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.book-now-loading p {
    color: #666;
    font-size: 1.1rem;
}

/* Modal Styles */
.book-now-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.book-now-modal-content {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 30px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 50px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.book-now-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: 
        linear-gradient(135deg, rgba(255, 153, 153, 0.2) 0%, rgba(255, 153, 153, 0.3) 100%);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-now-modal-close:hover {
    background: 
        linear-gradient(135deg, #ff9999 0%, #ff6666 100%);
    color: white;
    transform: rotate(90deg);
}

.book-now-modal-title {
    font-size: 2rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #40e0d0, #ff9999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Form Styles */
.book-now-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.book-now-form-group {
    position: relative;
}

.book-now-form-group.book-now-full-width {
    grid-column: 1 / -1;
}

.book-now-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.book-now-form-group input,
.book-now-form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 15px;
    background: 
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #40e0d0, #ff9999) border-box;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.book-now-form-group input:focus,
.book-now-form-group textarea:focus {
    outline: none;
    box-shadow: 
        0 5px 20px rgba(64, 224, 208, 0.2),
        inset 0 0 0 2px rgba(64, 224, 208, 0.2);
}

/* Booking Summary */
.book-now-summary {
    background: 
        linear-gradient(135deg, rgba(64, 224, 208, 0.1) 0%, rgba(255, 153, 153, 0.1) 100%);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.book-now-summary h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
}

.book-now-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.book-now-summary-item:last-child {
    border-bottom: none;
}

.book-now-summary-item.book-now-total {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(64, 224, 208, 0.3);
    font-size: 1.2rem;
}

.book-now-summary-item.book-now-total strong {
    color: #40e0d0;
}

/* Payment Section */
.book-now-payment {
    margin-bottom: 30px;
}

#payment-element {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    min-height: 200px;
}

.book-now-payment-message {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 0, 0, 0.1);
    color: #d9534f;
    border-radius: 10px;
    text-align: center;
}

/* Submit Button */
.book-now-submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(45deg, #40e0d0, #ff9999);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.book-now-submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(64, 224, 208, 0.4);
}

.book-now-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.book-now-button-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Success Message */
.book-now-success {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

.book-now-success-content {
    text-align: center;
    max-width: 500px;
    padding: 60px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    animation: successBounce 0.6s ease-out;
}

@keyframes successBounce {
    0% {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    50% {
        transform: scale(1.05) translateY(0);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.book-now-success-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: checkmark 0.8s ease-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
    }
    50% {
        transform: scale(1.2) rotate(15deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.book-now-success h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #40e0d0, #9acd32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.book-now-success p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.book-now-home-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #40e0d0, #ff9999);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.3);
}

.book-now-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(64, 224, 208, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .book-now-title {
        font-size: 2.2rem;
    }
    
    .book-now-subtitle {
        font-size: 1.1rem;
    }
    
    .book-now-hero {
        padding: 50px 20px 70px;
    }
    
    .book-now-welcome-card {
        padding: 40px 25px;
    }
    
    .book-now-icon-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .book-now-icon {
        font-size: 48px;
    }
    
    .book-now-bookings-card {
        padding: 30px 20px;
    }
    
    .book-now-table {
        font-size: 0.9rem;
    }
    
    .book-now-table th,
    .book-now-table td {
        padding: 12px 8px;
    }
    
    .book-now-modal-content {
        padding: 30px 20px;
    }
    
    .book-now-form-grid {
        grid-template-columns: 1fr;
    }
    
    .book-now-decoration {
        display: none;
    }
}

/* Print Styles */
@media print {
    .book-now-hero,
    .book-now-modal,
    .book-now-success,
    .book-now-btn {
        display: none;
    }
    
    .book-now-table {
        border: 1px solid #ddd;
    }
    
    .book-now-table th,
    .book-now-table td {
        border: 1px solid #ddd;
    }
}book-now-main {
    min-height: 100vh;
    background: inherit;
    position: relative;
}

/* Hero Section */
.book-now-hero {
    position: relative;
    padding: 80px 20px 100px;
    text-align: center;
    overflow: hidden;
}

/* Animated Background */
.book-now-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(64, 224, 208, 0.3) 0%, rgba(255, 153, 153, 0.3) 25%, rgba(154, 205, 50, 0.3) 50%, rgba(223, 115, 255, 0.3) 75%, rgba(64, 224, 208, 0.3) 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    opacity: 0.8;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.book-now-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Title Styles */
.book-now-title {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #40e0d0, #ff9999, #9acd32, #df73ff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    line-height: 1.2;
    animation: textGradient 6s ease infinite;
    text-shadow: 0 0 30px rgba(64, 224, 208, 0.3);
}

@keyframes textGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.book-now-subtitle {
    font-size: 1.25rem;
    color: var(--dark-text);
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Course Selector */
.book-now-course-selector {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.book-now-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.book-now-dropdown {
    width: 100%;
    padding: 18px 25px;
    font-size: 1.1rem;
    border: 3px solid transparent;
    border-radius: 50px;
    background: 
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #40e0d0, #ff9999, #9acd32, #df73ff) border-box;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    background-image: 
        linear-gradient(white, white),
        linear-gradient(135deg, #40e0d0, #ff9999, #9acd32, #df73ff),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-position: 
        center,
        center,
        right 25px center;
    background-repeat: 
        no-repeat,
        no-repeat,
        no-repeat;
    background-origin: 
        padding-box,
        border-box,
        content-box;
    background-clip: 
        padding-box,
        border-box,
        content-box;
}

.book-now-dropdown:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.book-now-dropdown:focus {
    outline: none;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 0 4px rgba(64, 224, 208, 0.3);
}

/* Decorative Elements */
.book-now-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.book-now-deco-1 {
    width: 150px;
    height: 150px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(64, 224, 208, 0.4), transparent 70%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.book-now-deco-2 {
    width: 200px;
    height: 200px;
    background: 
        radial-gradient(circle at 70% 70%, rgba(255, 153, 153, 0.4), transparent 70%);
    bottom: 10%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Container */
.book-now-container {
    max-width: 1200px;
    margin: -50px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Welcome Section */
.book-now-welcome-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.book-now-welcome-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(154, 205, 50, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.book-now-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.book-now-icon-item {
    text-align: center;
    padding: 30px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Bookings Section */
.book-now-bookings-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.book-now-section-title {
    font-size: 2.2rem;
    margin-bottom: 35px;
    color: var(--dark-text);
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

.book-now-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #40e0d0, #ff9999, #9acd32);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(64, 224, 208, 0.3);
}

/* Table Styles */
.book-now-table-wrapper {
    overflow-x: auto;
    margin: 0 -20px;
    padding: 0 20px;
}

.book-now-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.book-now-table th {
    background: 
        linear-gradient(135deg, rgba(64, 224, 208, 0.2) 0%, rgba(255, 153, 153, 0.2) 100%);
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: var(--dark-text);
    border-bottom: 3px solid rgba(64, 224, 208, 0.3);
    position: sticky;
    top: 0;
    z-index: 10;
}

.book-now-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.book-now-table tr {
    transition: all 0.3s ease;
}

.book-now-table tbody tr:hover {
    background: 
        linear-gradient(135deg, rgba(64, 224, 208, 0.05) 0%, rgba(255, 153, 153, 0.05) 100%);
    transform: translateX(5px);
}

.book-now-fee {
    font-weight: 700;
    color: #40e0d0;
    font-size: 1.2rem;
}

.book-now-btn {
    background: linear-gradient(45deg, #40e0d0, #ff9999);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(64, 224, 208, 0.3);
    position: relative;
    overflow: hidden;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(64, 224, 208, 0.4);
}

.book-now-btn:hover::before {
    width: 300px;
    height: 300px;
}

.book-now-no-data {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 40px;
}

/* Loading Spinner */
.book-now-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.book-now-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(64, 224, 208, 0.2);
    border-top: 4px solid #40e0d0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.book-now-loading p {
    color: #666;
    font-size: 1.1rem;
}

/* Modal Styles */
.book-now-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.book-now-modal-content {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 30px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 50px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.book-now-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: 
        linear-gradient(135deg, rgba(255, 153, 153, 0.2) 0%, rgba(255, 153, 153, 0.3) 100%);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-now-modal-close:hover {
    background: 
        linear-gradient(135deg, #ff9999 0%, #ff6666 100%);
    color: white;
    transform: rotate(90deg);
}

.book-now-modal-title {
    font-size: 2rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #40e0d0, #ff9999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Form Styles */
.book-now-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.book-now-form-group {
    position: relative;
}

.book-now-form-group.book-now-full-width {
    grid-column: 1 / -1;
}

.book-now-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.book-now-form-group input,
.book-now-form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 15px;
    background: 
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #40e0d0, #ff9999) border-box;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.book-now-form-group input:focus,
.book-now-form-group textarea:focus {
    outline: none;
    box-shadow: 
        0 5px 20px rgba(64, 224, 208, 0.2),
        inset 0 0 0 2px rgba(64, 224, 208, 0.2);
}

/* Booking Summary */
.book-now-summary {
    background: 
        linear-gradient(135deg, rgba(64, 224, 208, 0.1) 0%, rgba(255, 153, 153, 0.1) 100%);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.book-now-summary h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
}

.book-now-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.book-now-summary-item:last-child {
    border-bottom: none;
}

.book-now-summary-item.book-now-total {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(64, 224, 208, 0.3);
    font-size: 1.2rem;
}

.book-now-summary-item.book-now-total strong {
    color: #40e0d0;
}

/* Payment Section */
.book-now-payment {
    margin-bottom: 30px;
}

#payment-element {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    min-height: 200px;
}

.book-now-payment-message {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 0, 0, 0.1);
    color: #d9534f;
    border-radius: 10px;
    text-align: center;
}

/* Submit Button */
.book-now-submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(45deg, #40e0d0, #ff9999);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.book-now-submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(64, 224, 208, 0.4);
}

.book-now-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.book-now-button-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Success Message */
.book-now-success {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

.book-now-success-content {
    text-align: center;
    max-width: 500px;
    padding: 60px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    animation: successBounce 0.6s ease-out;
}

@keyframes successBounce {
    0% {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    50% {
        transform: scale(1.05) translateY(0);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.book-now-success-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: checkmark 0.8s ease-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
    }
    50% {
        transform: scale(1.2) rotate(15deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.book-now-success h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #40e0d0, #9acd32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.book-now-success p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.book-now-home-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #40e0d0, #ff9999);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.3);
}

.book-now-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(64, 224, 208, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .book-now-title {
        font-size: 2.2rem;
    }
    
    .book-now-subtitle {
        font-size: 1.1rem;
    }
    
    .book-now-hero {
        padding: 50px 20px 70px;
    }
    
    .book-now-welcome-card {
        padding: 40px 25px;
    }
    
    .book-now-icon-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .book-now-icon {
        font-size: 48px;
    }
    
    .book-now-bookings-card {
        padding: 30px 20px;
    }
    
    .book-now-table {
        font-size: 0.9rem;
    }
    
    .book-now-table th,
    .book-now-table td {
        padding: 12px 8px;
    }
    
    .book-now-modal-content {
        padding: 30px 20px;
    }
    
    .book-now-form-grid {
        grid-template-columns: 1fr;
    }
    
    .book-now-decoration {
        display: none;
    }
}

/* Print Styles */
@media print {
    .book-now-hero,
    .book-now-modal,
    .book-now-success,
    .book-now-btn {
        display: none;
    }
    
    .book-now-table {
        border: 1px solid #ddd;
    }
    
    .book-now-table th,
    .book-now-table td {
        border: 1px solid #ddd;
    }
}