/* Plans Swiper Custom Styles */
.plan-card {
    border: 2px solid #e0e0e0;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s cubic-bezier(.4,2,.6,1), border-color 0.3s;
    background: #fff;
    overflow: hidden;
    min-height: 100%;
    position: relative;
}
.plan-card:hover {
    transform: translateY(-10px) scale(1.03) rotate(-1deg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    border-color: #007bff;
    z-index: 2;
}
.plan-card.featured {
    border: 3px solid #007bff;
    background: linear-gradient(135deg, #f0f6ff 0%, #e6f0ff 100%);
    box-shadow: 0 8px 32px rgba(0,123,255,0.13);
    transform: scale(1.05);
}
.plan-card.featured .card-title {
    color: #007bff;
    font-weight: 700;
    letter-spacing: 1px;
}
.plan-card .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-align: center;
}
.plan-card .plan-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: #007bff;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.3rem 0.9rem;
    border-radius: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
}
.plan-card ul {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}
.plan-card ul li {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}
.plan-card ul li i {
    font-size: 1.1rem;
    margin-right: 0.6rem;
    margin-top: 0.1rem;
}
.plan-card .btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 2rem;
    padding: 0.7rem 1.5rem;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
}
.plan-card .btn:hover {
    background: #0056b3;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,123,255,0.18);
}
@media (max-width: 991px) {
    .plan-card {
        margin-bottom: 2rem;
    }
}