/* الأزرار العلوية */
.nav-link.time-btn {
    border: 1px dashed var(--primary_color);
    background: var(--white_blue);
    padding: 10px 25px;
    border-radius: 8px;
    font-family: var(--primary_font);
    transition: var(--transition);
    color: var(--primary_color);
}
.nav-link.time-btn.active {
    background: var(--primary_color);
    color: white;
}

/* الكارت الأساسي */
.custom-plan-card {
    background-color: var(--white_blue);
    border-radius: var(--raduis);
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

/* الكارت الملون (Featured) */
.custom-plan-card.featured {
    background-color: var(--primary_color);
}

.plan-name {
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--primary_color);
}

.price-wrapper {
    margin: 25px 0 10px;
    color: var(--primary_color);
}

.price-wrapper .amount {
    font-size: 3rem;
    font-weight: 600;
}

/* الكارت الداخلي للميزات */
.features-inner-card {
    background: var(--white_color);
    border-radius: var(--raduis);
    padding: 20px;
    margin-top: 20px;
    flex-grow: 1;
}

.features-inner-card.featured-inner {
    background: rgba(255, 255, 255, 0.1); /* شفاف قليلاً للباقة الملونة */
}

.features-title {
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
}

.features-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 100%;
    border-bottom: 1px dashed var(--border_color);
}

.features-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: #ff4d4d; /* لون الأيقونة في الصورة */
}

.featured-inner .features-list li i {
    color: var(--white_color);
}

/* أزرار الاشتراك */
.btn-get-plan {
    background-color: #7065f0; /* نفس لون الزر في الصورة */
    color: white;
    border-radius: 10px;
    padding: 12px;
    font-weight: bold;
}

.btn-white-plan {
    background-color: var(--white_color);
    color: var(--primary_color);
    border-radius: 10px;
    padding: 12px;
    font-weight: bold;
}

.btn-get-plan:hover, .btn-white-plan:hover {
    opacity: 0.9;
    color: inherit;
}
.custom-plan-card.featured .plan-name,
.custom-plan-card.featured .plan-subtitle,
.custom-plan-card.featured .period
{
    color: var(--white_blue);
}
.custom-plan-card.featured .price-wrapper{
    color: var(--white_color);
}