.elementor-894 .elementor-element.elementor-element-b1e2fad{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-894 .elementor-element.elementor-element-dfbffa9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-894 .elementor-element.elementor-element-dfbffa9.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-894 .elementor-element.elementor-element-4f7c697{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-894 .elementor-element.elementor-element-dfbffa9{--width:116.142%;}}/* Start custom CSS for html, class: .elementor-element-dbd9ac1 *//* Container */
.container {
    width: 100% !important;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.page-header {
    background: 
        linear-gradient(135deg, rgba(235, 31, 39, 0.9) 0%, rgba(196, 30, 58, 0.9) 100%),
        url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    width: 100% !important;
}

.page-header::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 100 20"><polygon fill="%23ffffff" fill-opacity="0.05" points="0,20 100,0 100,20"/></svg>') repeat-x;
    background-size: 100px 20px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Responsive Design for Header */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
}

/*==============================================================================================================================*//* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9568e0f *//* CSS Variables - Astra Theme Colors */
:root {
    --theme-color: #eb1f27;
    --accent-color: #eb1f27;
    --link-color: #eb1f27;
    --link-hover-color: #2c3e50;
    --heading-color: #ffffff;
    --body-text-color: #34495e;
    --border-color: #e0e0e0;
    --site-background: #ffffff;
    --content-background: #ffffff;
    --button-bg-color: #eb1f27;
    --button-text-color: #ffffff;
    --button-hover-bg: #2c3e50;
    --button-hover-text: #ffffff;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--site-background);
    color: var(--body-text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--theme-color);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--body-text-color);
    margin-bottom: 50px;
}

/* Pricing Grid - Force same line */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    align-items: stretch;
}

/* Responsive - 2 rows with 2 cards each on smaller screens */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Pricing Cards */
.pricing-card {
    background: var(--content-background);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.pricing-card.recommended {
    border: 3px solid var(--theme-color);
    transform: scale(1.02);
}

.pricing-card.recommended:hover {
    transform: scale(1.02) translateY(-15px);
}

.pricing-card.premium {
    background: linear-gradient(135deg, var(--theme-color), #c41e3a);
    color: white;
}

/* Tags */
.recommended-tag, .premium-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--theme-color);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}

.premium-tag {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
}

/* Pricing Header */
.pricing-header {
    padding: 30px 20px 20px;
    text-align: center;
    position: relative;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--theme-color);
}

.pricing-card.premium .pricing-header h3 {
    color: white;
}

.discount-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* Pricing Body */
.pricing-body {
    padding: 0 20px;
    flex-grow: 1;
}

.price-display {
    text-align: center;
    margin-bottom: 20px;
}

.original-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.discounted-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-color);
}

.pricing-card.premium .discounted-price {
    color: #ffd700;
}

.per-session {
    font-size: 0.9rem;
    color: var(--body-text-color);
}

.pricing-card.premium .per-session {
    color: rgba(255,255,255,0.8);
}

.total-sessions, .total-cost {
    text-align: center;
    margin: 10px 0;
    font-weight: 600;
}

.total-cost {
    font-size: 1.2rem;
    color: var(--theme-color);
    margin-bottom: 20px;
}

.pricing-card.premium .total-cost {
    color: #ffd700;
}

/* Gifts Section */
.gifts-section {
    background: rgba(235, 31, 39, 0.05);
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid var(--theme-color);
}

.pricing-card.premium .gifts-section {
    background: rgba(255,255,255,0.1);
    border-left-color: #ffd700;
}

.gifts-section h4 {
    color: var(--theme-color);
    margin-bottom: 10px;
    font-size: 1rem;
}

.pricing-card.premium .gifts-section h4 {
    color: #ffd700;
}

.gifts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gifts-list li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--body-text-color);
}

.pricing-card.premium .gifts-list li {
    color: rgba(255,255,255,0.9);
}

/* Features List */
.features-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.features-list li {
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.pricing-card.premium .features-list li {
    border-bottom-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
}

/* Buttons */
.pricing-btn, .voucher-btn {
    width: 100%;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 8px 0;
}

.pricing-btn {
    background: var(--button-bg-color);
    color: var(--button-text-color);
    margin-bottom: 10px;
}

.pricing-btn:hover {
    background: var(--button-hover-bg);
    transform: translateY(-2px);
}

.voucher-btn {
    background: transparent;
    color: var(--theme-color);
    border: 2px solid var(--theme-color);
    margin-bottom: 20px;
}

.voucher-btn:hover {
    background: var(--theme-color);
    color: white;
}

.pricing-card.premium .voucher-btn {
    color: #ffd700;
    border-color: #ffd700;
}

.pricing-card.premium .voucher-btn:hover {
    background: #ffd700;
    color: #333;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    animation: modalSlideIn 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    background: var(--theme-color);
    color: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-modal {
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

/* Voucher Modal Specific */
#voucher-input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 15px;
}

#apply-voucher {
    width: 100%;
    background: var(--theme-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}

.available-vouchers h4 {
    margin-bottom: 15px;
    color: var(--theme-color);
}

.voucher-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.voucher-tag {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.voucher-tag:hover {
    transform: scale(1.1);
}

#voucher-result {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.voucher-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.voucher-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Voucher Applied Indicator */
.voucher-applied {
    background: #28a745;
    color: white;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
    margin: 10px 0;
    font-size: 14px;
    font-weight: 600;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7c73fa3 *//* Vouchers Section */
.vouchers-section {
    padding: 80px 0;
    background: var(--content-background);
    position: relative;
    overflow: hidden;
}

.vouchers-section::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 100 100"><defs><pattern id="voucher-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23eb1f27" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23voucher-pattern)"/></svg>');
    z-index: 1;
}

.vouchers-section .container {
    position: relative;
    z-index: 2;
}

/* Vouchers Grid */
.vouchers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .vouchers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Voucher Cards */
.voucher-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

.voucher-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 4s linear infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.voucher-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.3);
}

/* Voucher Card Variants */
.voucher-card.new-student {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.voucher-card.summer {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    color: #333;
}

.voucher-card.summer::before {
    background: radial-gradient(circle, rgba(255,165,0,0.2) 0%, transparent 70%);
}

.voucher-card.tet {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
}

.voucher-card.birthday {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: #333;
}

.voucher-card.sibling {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #333;
}

.voucher-card.referral {
    background: linear-gradient(135deg, #d299c2, #fef9d7);
    color: #333;
}

/* Voucher Ribbon */
.voucher-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #ff4757;
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(35deg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 10;
}

.voucher-ribbon.special {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
}

/* Voucher Content */
.voucher-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

.voucher-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.voucher-discount {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.voucher-card p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.voucher-code {
    background: rgba(255,255,255,0.2);
    padding: 12px 20px;
    border-radius: 25px;
    margin: 15px 0;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border: 2px dashed rgba(255,255,255,0.5);
    position: relative;
}

.voucher-code::before,
.voucher-code::after {
    content: '✂️';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.voucher-code::before {
    left: -15px;
}

.voucher-code::after {
    right: -15px;
    transform: translateY(-50%) scaleX(-1);
}

/* Voucher Validity */
.voucher-validity {
    margin: 15px 0;
    font-size: 0.9rem;
}

.validity-label {
    opacity: 0.8;
}

.validity-date {
    font-weight: 600;
    margin-left: 5px;
}

/* Voucher Benefits */
.voucher-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.benefit-item {
    background: rgba(255,255,255,0.15);
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* Voucher Button */
.voucher-btn {
    background: rgba(255,255,255,0.2);
    color: inherit;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    margin-top: 10px;
}

.voucher-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.voucher-btn i {
    margin-right: 8px;
}

/* How to Use Section */
.how-to-use {
    margin-top: 80px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(235, 31, 39, 0.05), rgba(116, 75, 162, 0.05));
    border-radius: 20px;
    border: 2px solid var(--border-color);
}

.how-to-use h3 {
    text-align: center;
    color: var(--theme-color);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-item::after {
    content: '→';
    position: absolute;
    top: 25px;
    right: -15px;
    font-size: 2rem;
    color: var(--theme-color);
    font-weight: bold;
}

.step-item:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--theme-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(235, 31, 39, 0.3);
}

.step-content h4 {
    color: var(--theme-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--body-text-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Voucher Detail Modal */
.voucher-modal-content {
    max-width: 500px;
}

#voucherModalContent {
    padding: 20px 0;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.copy-btn, .apply-btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn {
    background: #6c757d;
    color: white;
}

.copy-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.apply-btn {
    background: var(--theme-color);
    color: white;
}

.apply-btn:hover {
    background: var(--button-hover-bg);
    transform: translateY(-2px);
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    background: #28a745;
    color: white;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-content i {
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .voucher-card {
        padding: 25px 20px;
    }
    
    .voucher-discount {
        font-size: 2rem;
    }
    
    .voucher-icon {
        font-size: 3rem;
    }
    
    .how-to-use {
        padding: 30px 20px;
        margin-top: 50px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item::after {
        content: '↓';
        top: auto;
        bottom: -15px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-number {
        font-size: 1.2rem;
    }
}

/* Animation for cards entrance */
.voucher-card.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover glow effect */
.voucher-card:hover::before {
    animation-duration: 2s;
}

/* Copy success effect */
.voucher-card.copied {
    animation: copySuccess 0.5s ease;
}

@keyframes copySuccess {
    0%, 100% { transform: translateY(-15px) scale(1.02); }
    50% { transform: translateY(-15px) scale(1.08); }
}/* End custom CSS */