/* Registration Section Styles */
.registration {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.95) 0%, 
        rgba(255, 255, 255, 1) 50%, 
        rgba(248, 250, 252, 0.95) 100%);
    position: relative;
    overflow: hidden;
    font-family: 'IBM Plex Sans Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}


.registration-content {
    position: relative;
    z-index: 2;
}

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



.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
    padding: 0 20px;
    align-items: stretch;
}

.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;

}

.basic-card {
    background: linear-gradient(135deg, rgba(26, 95, 63, 0.05) 0%, rgba(26, 95, 63, 0.02) 100%);
    border: 2px solid var(--primary-green);
    box-shadow: 0 8px 32px rgba(26, 95, 63, 0.15);
}

.professional-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 2px solid var(--gold);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
}

/* Card Header Styles */
.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.basic-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
}

.professional-icon {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
}

.card-title-section {
    flex: 1;
}

.card-title-section h3 {
    font-size: 20.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
    text-align: right;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.popularity-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.popularity-badge i {
    font-size: 0.7rem;
}

.pricing-card.featured {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 8px 30px rgba(26, 95, 63, 0.12),
        0 2px 8px rgba(212, 175, 55, 0.1);
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, var(--gold), var(--primary-green));
    height: 5px;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.basic-card:hover {
    box-shadow: 0 12px 40px rgba(26, 95, 63, 0.25);
}

.professional-card:hover {
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--white);
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    position: absolute;
    top: -10px;
    right: 25px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.3px;
}

.student-badge {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    box-shadow: 0 2px 8px rgba(26, 95, 63, 0.3);
}

.pricing-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 25px;
    text-align: center;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

/* Price Section Styles */
.price-section {
    margin-bottom: 28px;
    text-align: center;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.currency {
    font-size: 1.3rem;
    color: #374151;
    font-weight: 500;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.current-price {
    font-size: 4rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    letter-spacing: -2px;
   
}

.old-price-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    
}

.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    
}

.discount-badge {
    
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;

    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
   
}



.target-audience {
    font-size: 1.1rem;
    color: #374151;
    font-weight: 600;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
   
    text-align: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.old-price-section {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

}

.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    
}

.discount-badge {
    background: linear-gradient(135deg, var(--primary-green), #16a085);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    box-shadow: 0 2px 6px rgba(26, 95, 63, 0.2);
}

.limited-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 16px;
    font-weight: 600;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 0.85rem;
 
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    }
}

/* Features List Styles */
.features-list {
    margin-bottom: 32px;
    padding: 0;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    padding: 10px 12px;
    color: #374151;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(4px);
}

.feature-item i {
    color: var(--primary-green);
    font-size: 1rem;
    width: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    background: rgba(26, 95, 63, 0.1);
    border-radius: 50%;
    padding: 2px;
}

/* Upgrade Button Styles */
.upgrade-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.upgrade-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.upgrade-btn:hover::before {
    left: 100%;
}

.basic-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    box-shadow: 0 4px 15px rgba(26, 95, 63, 0.3);
}

.basic-btn:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--light-green));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 95, 63, 0.4);
}

.professional-btn {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.professional-btn:hover {
    background: linear-gradient(135deg, var(--dark-gold), #9a7b0a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.contact-info {
    text-align: center;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.whatsapp-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    padding: 25px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 2rem;
}

.whatsapp-btn strong {
    font-size: 1.3rem;
    font-weight: 800;
}

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

.indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.indicator:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-hover);
}

.indicator i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.indicator span {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* Footer Styles */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .registration {
        padding: 50px 0;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .pricing-card {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .pricing-card.featured {
        transform: translateY(-4px);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .pricing-card:hover {
        transform: translateY(-6px);
    }

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

    .pricing-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .features-list {
        margin-top: 25px;
    }

    .feature-item {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .whatsapp-btn {
        padding: 20px 30px;
        font-size: 1rem;
    }

    .whatsapp-btn i {
        font-size: 1.8rem;
    }

    .whatsapp-btn strong {
        font-size: 1.2rem;
    }

    .urgency-indicators {
        gap: 15px;
    }

    .indicator {
        padding: 15px;
    }

    .indicator i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .indicator span {
        font-size: 1rem;
    }
}

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

    .pricing-card h3 {
        font-size: 1.5rem;
    }

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

    .contact-info h3 {
        font-size: 1.8rem;
    }

    .whatsapp-btn {
        padding: 18px 25px;
        font-size: 0.9rem;
    }

    .indicator {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* WhatsApp Registration Buttons */
.card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #22c55e);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(37, 211, 102, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.card-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.card-cta:hover::before {
    left: 100%;
}

.card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #22c55e, #16a085);
}

.card-cta i {
    font-size: 1.1rem;
}

/* Additional Registration Styles */
.registration-guarantee {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--gold);
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.registration-guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary-green), var(--gold));
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.guarantee-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.guarantee-subtext {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Countdown Timer */
.countdown-timer {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.countdown-timer h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.timer-unit {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
}

.timer-number {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
}

.timer-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Success Stories */
.success-stories {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 40px 0;
}

.success-stories h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 25px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.story-item {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.story-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.story-quote {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.story-author {
    font-weight: 600;
    color: var(--primary-green);
    text-align: right;
}

/* Mobile Responsive Additions */
@media (max-width: 768px) {
    .timer-display {
        gap: 10px;
    }

    .timer-unit {
        padding: 8px 12px;
    }

    .timer-number {
        font-size: 1.5rem;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .registration-guarantee {
        padding: 20px;
    }

    .guarantee-icon {
        font-size: 2.5rem;
    }

    .guarantee-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .card-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .countdown-timer {
        padding: 15px;
    }

    .countdown-timer h4 {
        font-size: 1.1rem;
    }

    .timer-display {
        flex-wrap: wrap;
        gap: 8px;
    }

    .timer-unit {
        padding: 6px 10px;
        min-width: 60px;
    }

    .timer-number {
        font-size: 1.3rem;
    }

    .story-item {
        padding: 15px;
    }
}