/* --- Ų§Ų³ŲŖŲ§ŪŁ„ā€Ł‡Ų§Ū ŲµŁŲ­Ł‡ ŁŲ±ŁŲ´ Ų§Ł‚Ų³Ų§Ų·Ū --- */

/* Ų±Ł†ŚÆā€ŲØŁ†ŲÆŪ */
.bg-orange-soft { background-color: rgba(245, 102, 20, 0.1); }
.text-orange { color: #f56614; }
.bg-blue-soft { background-color: #e3f2fd; }
.bg-green-soft { background-color: #e8f5e9; }

/* Ś©Ų§Ų±ŲŖā€Ł‡Ų§Ū Ų·Ų±Ų­ Ų§Ł‚Ų³Ų§Ų·Ū */
.plan-card {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-color: #eee !important;
}
.hover-lift-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
    border-color: #f56614 !important;
}

/* Ł„ŁŚÆŁŪ ŲÆŲ§ŪŲ±Ł‡ā€Ų§Ū Ų·Ų±Ų­ā€Ł‡Ų§ */
.plan-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #fff;
    padding: 5px;
}

/* Ł„ŪŲ³ŲŖ ŁŪŚŚÆŪā€Ł‡Ų§ */
.plan-features li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.plan-features li:last-child {
    margin-bottom: 0;
}

/* Ų±ŪŲØŁŁ† (ŲØŲ±Ś†Ų³ŲØ ŚÆŁŲ´Ł‡ Ś©Ų§Ų±ŲŖ) */
.badge-ribbon {
    position: absolute;
    top: 15px;
    left: -30px; /* ŲØŲ±Ų§Ū RTL ŲØŲ§ŪŲÆ Ų±Ų§Ų³ŲŖ ŲØŲ§Ų´ŲÆ Ų§ŚÆŲ± direction:rtl Ų§Ų³ŲŖŲ Ų§ŪŁ†Ų¬Ų§ Ś†Ł¾ ŁŲ±Ų¶ Ų´ŲÆŁ‡ */
    transform: rotate(-45deg);
    width: 120px;
    padding: 5px 0;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1;
}
/* Ų§ŲµŁ„Ų§Ų­ Ų±ŪŲØŁŁ† ŲØŲ±Ų§Ū RTL */
[dir="rtl"] .badge-ribbon {
    left: auto;
    right: -30px;
    transform: rotate(45deg);
}

/* Ų§Ų³ŲŖŲ§ŪŁ„ Ų§Ų³Ł„Ų§ŪŲÆŲ± ŲÆŲ³ŲŖŁ‡ā€ŲØŁ†ŲÆŪ */
.cat-link {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #333;
    padding: 15px;
    border-radius: 15px;
    background: #fff;
    transition: all 0.3s;
    border: 1px solid #eee;
}
.cat-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #f56614;
    color: #f56614;
}
.cat-link img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Ų§Ł†ŪŁ…ŪŲ´Ł†ā€Ł‡Ų§ */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}
.animate-zoom-in {
    animation: zoomIn 0.8s ease-out forwards;
    opacity: 0;
    transform: scale(0.95);
}
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes zoomIn { to { opacity: 1; transform: scale(1); } }

/* ŁŁŁ†ŲŖ Ł ŲŖŁ†ŲøŪŁ…Ų§ŲŖ */
.lh-lg { line-height: 2.2 !important; }
.transition-all { transition: all 0.3s ease; }
.hover-scale:hover { transform: scale(1.02); }
.rounded-4{
border-radius : 1rem !important
}