.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.pricing-container {
    position: relative;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.pricing-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.toggle-label {
    color: #ffffff;
    font-weight: 500;
    opacity: 0.8;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-switch.active {
    background: rgba(255, 255, 255, 0.3);
}

.toggle-switch.active::before {
    transform: translateX(30px);
}

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

/* Exclusive Pricing Cards Styles */
.exclusive-pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f1f5f9;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out;
}

.exclusive-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--card-color, #667eea);
}

.exclusive-pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--card-color, #667eea);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.exclusive-pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.3);
}

.exclusive-pricing-card:nth-child(2) {
    animation-delay: 0.1s;
}

.exclusive-pricing-card:nth-child(3) {
    animation-delay: 0.2s;
}

.exclusive-pricing-card:nth-child(4) {
    animation-delay: 0.3s;
}

.exclusive-featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--card-color, #667eea), #764ba2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.exclusive-star-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.exclusive-card-header {
    background: linear-gradient(135deg, var(--card-color, #667eea), rgba(118, 75, 162, 0.9));
    color: #ffffff;
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
}

.exclusive-card-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: #ffffff;
    border-radius: 20px 20px 0 0;
}

.exclusive-plan-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.exclusive-plan-price {
    margin-bottom: 10px;
}

.exclusive-price-amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.exclusive-price-period {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
    text-transform: capitalize;
}

.exclusive-plan-duration {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

.exclusive-card-body {
    padding: 30px;
}

.exclusive-plan-desc {
    color: #64748b;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 16px;
}

.exclusive-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.exclusive-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
}

.exclusive-feature-item:last-child {
    border-bottom: none;
}

.exclusive-feature-item.empty {
    justify-content: center;
    color: #9ca3af;
    font-style: italic;
}

.exclusive-feature-icon {
    width: 20px;
    height: 20px;
    fill: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.exclusive-feature-text {
    flex: 1;
    line-height: 1.5;
}

.exclusive-feature-text strong {
    color: #1f2937;
    font-weight: 600;
}

.exclusive-card-footer {
    padding: 0 30px 30px;
}

.exclusive-subscribe-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--btn-color, #667eea), #764ba2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.exclusive-subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #ffffff;
}

.exclusive-btn-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.exclusive-subscribe-btn:hover .exclusive-btn-icon {
    transform: translateX(4px);
}

/* RTL Support */
[dir="rtl"] .exclusive-featured-badge {
    right: auto;
    left: 20px;
}

[dir="rtl"] .exclusive-subscribe-btn:hover .exclusive-btn-icon {
    transform: translateX(-4px) scaleX(-1);
}

[dir="rtl"] .exclusive-btn-icon {
    transform: scaleX(-1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .exclusive-pricing-card.featured {
        transform: none;
    }
    
    .exclusive-pricing-card {
        margin-bottom: 20px;
    }
    
    .exclusive-card-header {
        padding: 30px 20px 20px;
    }
    
    .exclusive-plan-title {
        font-size: 24px;
    }
    
    .exclusive-price-amount {
        font-size: 36px;
    }
    
    .exclusive-card-body {
        padding: 20px;
    }
    
    .exclusive-card-footer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .exclusive-plan-title {
        font-size: 20px;
    }
    
    .exclusive-price-amount {
        font-size: 32px;
    }
    
    .exclusive-subscribe-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

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

.exclusive-pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

.exclusive-pricing-card:nth-child(2) {
    animation-delay: 0.1s;
}

.exclusive-pricing-card:nth-child(3) {
    animation-delay: 0.2s;
}

.exclusive-pricing-card:nth-child(4) {
    animation-delay: 0.3s;
}

.exclusive-plan-desc {
    color: #9ca3af;
}

.exclusive-feature-item {
    color: #d1d5db;
    border-color: #374151;
}

.exclusive-feature-text strong {
    color: #f9fafb;
}
}