/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    --secondary-gradient: linear-gradient(135deg, #9C27B0 0%, #673AB7 100%);
    --dark-bg: #0A0A0F;
    --dark-card: #1E1E2E;
    --text-primary: #FFFFFF;
    --text-secondary: #C4C4C4;
    --text-muted: #8B8B9C;
    --accent-purple: #9C27B0;
    --accent-pink: #E91E63;
    --border-color: #2D2D3A;
    --red-badge: #DC2626;
    --dark-red: #8B0000;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #1A0A2E 0%, #0F0A1A 50%, #0A0A0F 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    padding: 100px 20px 80px;
    text-align: center;
    background: transparent;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 50%, #673AB7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 45px;
    font-weight: 400;
}

.cta-button {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 20px 60px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 45px;
    box-shadow: 0 8px 32px rgba(233, 30, 99, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(233, 30, 99, 0.4);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-icon {
    width: 20px;
    height: 20px;
    stroke: var(--accent-purple);
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 12px 40px rgba(156, 39, 176, 0.2);
}

.bundle-card {
    border: 2px solid var(--accent-purple);
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2) 0%, rgba(30, 30, 46, 1) 100%);
    box-shadow: 0 8px 40px rgba(156, 39, 176, 0.4);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.card-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: -1px;
}

.schedule {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 25px;
    padding: 10px 0;
    font-weight: 500;
}

.discount-info {
    font-size: 0.95rem;
    color: var(--accent-pink);
    text-align: center;
    margin-bottom: 25px;
    padding: 8px 0;
    font-weight: 600;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.5;
}

.check-icon {
    width: 20px;
    height: 20px;
    stroke: var(--accent-purple);
    flex-shrink: 0;
    margin-top: 2px;
}

.card-button {
    background: var(--dark-bg);
    color: white;
    border: 2px solid var(--accent-purple);
    padding: 16px 30px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    width: 100%;
    margin-top: auto;
}

.card-button:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-2px);
}

.bundle-button {
    background: var(--primary-gradient);
    border: none;
}

.bundle-button:hover {
    background: var(--secondary-gradient);
}

/* Membership Section */
.membership-section {
    padding: 60px 20px;
}

.membership-card {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-color);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.limited-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--red-badge);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.clock-icon {
    width: 16px;
    height: 16px;
    stroke: white;
}

.membership-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: var(--text-primary);
}

.membership-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    text-align: center;
}

.membership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.membership-features {
    padding: 20px 0;
}

.membership-features-list {
    list-style: none;
}

.membership-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.membership-features-list .check-icon {
    width: 22px;
    height: 22px;
    stroke: var(--accent-purple);
    flex-shrink: 0;
    margin-top: 2px;
}

.membership-pricing-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(139, 0, 0, 0.3) 100%);
    border: 2px solid rgba(220, 38, 38, 0.5);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.2);
}

.exclusive-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--dark-red);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.5);
}

.savings-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 5px;
}

.discount-percentage {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.timer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
}

.small-icon {
    width: 16px;
    height: 16px;
    stroke: var(--text-secondary);
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.current-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.price-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #FFA500;
    margin-bottom: 25px;
    padding: 10px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 8px;
}

.price-warning .small-icon {
    stroke: #FFA500;
}

.membership-button {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    width: 100%;
    margin-bottom: 25px;
}

.membership-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(233, 30, 99, 0.4);
}

.scarcity-indicators {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scarcity-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.scarcity-item .small-icon {
    width: 16px;
    height: 16px;
    stroke: var(--text-secondary);
}

/* VIP Learning Section */
.vip-learning-section {
    padding: 60px 20px;
}

.vip-learning-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.vip-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.vip-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.vip-note {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-style: italic;
}

.vip-button {
    background: transparent;
    color: white;
    border: 2px solid var(--accent-purple);
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.vip-button:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 60px 20px 30px;
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.footer-slogan {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-list {
    list-style: none;
    margin-bottom: 25px;
}

.footer-list li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-list a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--accent-pink);
}

.footer-list span {
    color: var(--text-muted);
    margin-left: 5px;
}

.payment-methods {
    margin-top: 25px;
}

.payment-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.payment-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-icon {
    width: 50px;
    height: 35px;
    stroke: var(--text-secondary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
}

.footer-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-trust-icon {
    width: 18px;
    height: 18px;
    stroke: var(--accent-purple);
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }

    .membership-title,
    .vip-title {
        font-size: 2rem;
    }

    .membership-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .membership-card {
        padding: 30px 20px;
    }

    .limited-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 20px;
    }

    .current-price {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }

    .pricing-card {
        padding: 25px;
    }

    .card-title {
        font-size: 1.75rem;
    }

    .price {
        font-size: 2rem;
    }

    .membership-card {
        padding: 25px 15px;
    }

    .membership-title {
        font-size: 1.75rem;
    }

    .current-price {
        font-size: 2rem;
    }

    .savings-amount {
        font-size: 1.5rem;
    }

    .membership-pricing-box {
        padding: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--accent-purple);
    color: white;
}

/* Contact Form Popup Styles */
.contact-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.contact-popup-overlay.active {
    display: flex;
}

.contact-popup-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: #0A0A0F;
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(156, 39, 176, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.contact-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: none;
    background: #1A1A2E;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
    position: relative;
}

.contact-popup-title {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto;
    font-family: 'Cairo', sans-serif;
    text-align: center;
    flex: 1;
}

.contact-form-instructions {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Cairo', sans-serif;
}

.contact-popup-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #FFFFFF;
    font-size: 1.75rem;
    cursor: pointer;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    line-height: 1;
    font-weight: 300;
}

.contact-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.contact-form-container {
    padding: 2rem 2.5rem;
    max-height: calc(90vh - 80px);
    overflow-y: auto;
    background: #1E1E2E;
}

.contact-form-container::-webkit-scrollbar {
    width: 8px;
}

.contact-form-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.contact-form-container::-webkit-scrollbar-thumb {
    background: rgba(156, 39, 176, 0.5);
    border-radius: 4px;
}

.contact-form-container::-webkit-scrollbar-thumb:hover {
    background: rgba(156, 39, 176, 0.7);
}

.vip-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vip-contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.vip-contact-form .form-label {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Cairo', sans-serif;
}

.vip-contact-form .form-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: #0A0A0F;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    box-sizing: border-box;
    direction: rtl;
}

.vip-contact-form .form-input:focus {
    outline: none;
    border-color: rgba(156, 39, 176, 0.8);
    background: #0A0A0F;
    box-shadow: 0 0 0 2px rgba(156, 39, 176, 0.2);
}

.vip-contact-form .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    padding-left: 2.5rem;
    cursor: pointer;
}

.vip-contact-form .form-select:focus {
    border-color: rgba(156, 39, 176, 0.8);
    background-color: #0A0A0F;
}

.vip-contact-form .form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.vip-contact-form textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.vip-contact-form .form-submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

.vip-contact-form .form-submit-btn svg {
    width: 20px;
    height: 20px;
}

.vip-contact-form .form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(233, 30, 99, 0.6);
    background: linear-gradient(135deg, #F06292 0%, #BA68C8 100%);
}

.vip-contact-form .form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-success-message {
    padding: 1.5rem;
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid rgba(76, 175, 80, 0.5);
    border-radius: 12px;
    text-align: center;
    color: #4CAF50;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .contact-popup-container {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .contact-popup-header {
        padding: 1.25rem 1.5rem;
        border-radius: 16px 16px 0 0;
    }
    
    .contact-popup-title {
        font-size: 1.1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
        max-height: calc(95vh - 80px);
    }
    
    .vip-contact-form {
        gap: 1.25rem;
    }
    
    .vip-contact-form .form-input {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .vip-contact-form .form-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 10px;
    }
}

/* Lahza Payment Popup Styles */
.lahza-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lahza-popup-overlay.active {
    display: flex;
}

.lahza-popup-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: #0A0A0F;
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(156, 39, 176, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.lahza-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: none;
    background: #4A1A5C;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
}

.lahza-popup-title {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Cairo', sans-serif;
}

.lahza-popup-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #FFFFFF;
    font-size: 1.75rem;
    cursor: pointer;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    line-height: 1;
    font-weight: 300;
}

.lahza-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lahza-popup-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: #1E1E2E;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lahza-checkout-iframe {
    width: 100%;
    height: 80vh;
    min-height: 600px;
    border: none;
    background: #1E1E2E;
    display: block;
}

#payment-iframe-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: #1E1E2E;
    min-height: 600px;
}

/* Payment Loading Indicator */
.payment-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1E1E2E;
    z-index: 10;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(156, 39, 176, 0.2);
    border-top-color: #9C27B0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Cairo', sans-serif;
}

.loading-subtext {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-family: 'Cairo', sans-serif;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Payment User Form Styles */
.payment-user-form {
    padding: 2rem 2.5rem;
    max-height: calc(90vh - 80px);
    overflow-y: auto;
    background: #1E1E2E;
}

.payment-user-form::-webkit-scrollbar {
    width: 8px;
}

.payment-user-form::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.payment-user-form::-webkit-scrollbar-thumb {
    background: rgba(156, 39, 176, 0.5);
    border-radius: 4px;
}

.payment-user-form::-webkit-scrollbar-thumb:hover {
    background: rgba(156, 39, 176, 0.7);
}

.user-info-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.user-info-form .form-group {
    display: flex;
    flex-direction: column;
}

.user-info-form .form-label {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Cairo', sans-serif;
}

.text-required {
    color: #DC2626;
    font-weight: 700;
}

.user-info-form .form-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: #0A0A0F;
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    box-sizing: border-box;
}

.user-info-form .form-input:focus {
    outline: none;
    border-color: rgba(156, 39, 176, 0.6);
    background: #0A0A0F;
    box-shadow: 0 0 0 2px rgba(156, 39, 176, 0.2);
}

.user-info-form .form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.user-info-form .form-submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

.user-info-form .form-submit-btn svg {
    width: 24px;
    height: 24px;
    transform: rotate(180deg);
}

.user-info-form .form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(233, 30, 99, 0.6);
    background: linear-gradient(135deg, #F06292 0%, #BA68C8 100%);
}

.user-info-form .form-submit-btn:active {
    transform: translateY(0);
}

.user-info-form .form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .lahza-popup-container {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .lahza-popup-header {
        padding: 1.25rem 1.5rem;
        border-radius: 16px 16px 0 0;
    }
    
    #lahza-checkout-iframe {
        height: 75vh;
        min-height: 500px;
    }
    
    .lahza-popup-title {
        font-size: 1.1rem;
    }
    
    .payment-user-form {
        padding: 1.5rem;
        max-height: calc(95vh - 80px);
    }
    
    .user-info-form {
        gap: 1.25rem;
    }
    
    .user-info-form .form-input {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .user-info-form .form-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 10px;
    }
}