/* Polish for Subscription Buttons - Matching Eduma Theme */

.cits-subscription-options {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
    font-family: inherit; /* Inherit site fonts */
    clear: both;
    width: 100%;
}

.cits-option-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.cits-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #ffb606; /* Eduma primary color */
}

.cits-option-card.full-payment {
    border-left: 5px solid #ffb606;
}

.cits-option-card.single-payment {
    border-left: 5px solid #2d3e50;
}

.cits-card-header {
    margin-bottom: 20px;
}

.cits-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: #f1f4f8;
    color: #475569;
    margin-bottom: 12px;
}

.cits-tag.recommended {
    background: #fff8e1;
    color: #b45309;
}

.cits-card-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #2d3e50;
    line-height: 1.2;
    /* Headings in Eduma often have a distinct font-family, we inherit it */
}

.cits-card-body {
    flex-grow: 1;
    margin-bottom: 25px;
}

.cits-description {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 20px 0;
}

.cits-price-breakdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #f1f4f8;
}

.cits-months {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.cits-total {
    font-size: 20px;
    font-weight: 800;
    color: #2d3e50;
}

.cits-premium-btn {
    display: block;
    width: 100%;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.cits-premium-btn.primary {
    background: #ffb606; /* Eduma primary yellow */
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 182, 6, 0.2);
}

.cits-premium-btn.primary:hover {
    background: #e6a405;
    box-shadow: 0 6px 15px rgba(255, 182, 6, 0.4);
    transform: translateY(-2px);
}

.cits-premium-btn.secondary {
    background: #ffffff;
    color: #2d3e50;
    border: 2px solid #eef2f6;
}

.cits-premium-btn.secondary:hover {
    background: #f8fafc;
    border-color: #2d3e50;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.cits-option-card {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cits-option-card:nth-child(2) {
    animation-delay: 0.15s;
}

@media (min-width: 768px) {
    .cits-subscription-options {
        flex-direction: row;
        align-items: stretch;
    }
    
    .cits-option-card {
        flex: 1;
    }
}
