/* 
   ========================================
   Programs Page Styles
   ========================================
*/

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-weight: 400;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Programs Section */
.programs-section {
    margin-top: 40px;
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-dark);
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-weight: 400;
}

.section-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-light) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--accent-amber) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(185, 28, 28, 0.3);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-grid:hover> :not(:hover) {
    filter: blur(3px);
    opacity: 0.3;
}

.pricing-card.featured {
    border: 2px solid var(--primary-red);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 30px;
    right: -50px;
    background: var(--primary-red);
    color: var(--text-white);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price .currency {
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: 700;
    position: relative;
    top: -25px
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-white);
    font-family: var(--font-heading);
}

.price .period {
    font-size: 1rem;
    color: var(--text-gray);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: var(--primary-red);
    font-size: 0.9rem;
}

/* Flexibility Note */
.flexibility-note {
    background: var(--bg-card);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-left: 4px solid var(--accent-amber);
    border-radius: 8px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.flexibility-note i {
    color: var(--accent-amber);
    font-size: 1.5rem;
    margin-top: 3px;
}

.flexibility-note p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.flexibility-note strong {
    color: var(--text-white);
}

/* Discount Section */
.discount-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
}

.discount-card {
    background: var(--bg-dark);
    border: 2px solid var(--primary-red);
    border-radius: 16px;
    padding: 50px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    box-shadow: 0 10px 40px rgba(185, 28, 28, 0.2);
}

.discount-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(185, 28, 28, 0.4);
}

.discount-icon i {
    font-size: 3rem;
    color: var(--text-white);
}

.discount-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-white);
    font-weight: 400;
}

.discount-highlight {
    font-size: 1.3rem;
    color: var(--accent-amber);
    font-weight: 600;
    margin-bottom: 20px;
}

.discount-details p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.discount-example {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

.discount-example h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.example-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.example-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.example-item.discount-applied {
    border-color: var(--primary-red);
    background: linear-gradient(90deg, var(--bg-light) 0%, rgba(185, 28, 28, 0.1) 100%);
}

.example-label {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.example-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    font-family: var(--font-heading);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 1rem;
    margin-right: 10px;
}

.discount-note {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.discount-note i {
    color: var(--accent-amber);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-md) 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 100%);
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.highlight-text {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container .btn {
    background-color: var(--primary-red);
    color: var(--text-white);
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .discount-card {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

    .discount-icon {
        width: 80px;
        height: 80px;
    }

    .discount-icon i {
        font-size: 2.5rem;
    }

    .discount-content h2 {
        font-size: 2rem;
    }

    .discount-highlight {
        font-size: 1.1rem;
    }

    .example-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cta-container h2 {
        font-size: 1.8rem;
    }

    .highlight-text {
        font-size: 1.5rem;
    }
}