/* Pricing Packages Component - Dashboard */

.pricing-packages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ecf4ff 100%);
    min-height: 80vh;
}

/* Use the same pricing card styles as pricing.html */
.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(40, 120, 235, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #f14d5d 0%, #ff6b7a 100%);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(241, 77, 93, 0.3);
    z-index: 10;
}

.pricing-header {
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.pricing-header i {
    display: block;
}

.pricing-header h3 {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-body {
    padding: 30px;
}

.pricing-price {
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px dashed #ecf4ff;
    margin-bottom: 30px;
}

.pricing-price h2 {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 0;
    line-height: 1;
}

.pricing-price span {
    font-size: 1rem;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #ecf4ff;
    color: #120f2d;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.pricing-features li.text-muted {
    color: #6b6a75 !important;
}

/* Payment Info Alert */
.pricing-packages-section .alert {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    border-radius: 15px;
}

/* Pricing Package Buttons */
.pricing-card .btn {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.pricing-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ========================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ======================================== */

/* Tablet and below (992px) */
@media (max-width: 992px) {

    /* Pricing cards */
    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .pricing-price h2 {
        font-size: 2.5rem;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {

    /* Pricing adjustments */
    .pricing-header {
        padding: 30px 20px;
    }

    .pricing-header h3 {
        font-size: 1.3rem;
    }

    .pricing-body {
        padding: 20px;
    }

    .pricing-price h2 {
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
        padding: 8px 0;
    }

    /* Buttons */
    .pricing-card .btn {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
}

/* Mobile Small (576px and below) */
@media (max-width: 576px) {

    /* Pricing cards */
    .pricing-header {
        padding: 25px 15px;
    }

    .pricing-header h3 {
        font-size: 1.2rem;
    }

    .pricing-header i {
        font-size: 2rem;
    }

    .pricing-body {
        padding: 15px;
    }

    .pricing-price {
        padding: 15px 0;
        margin-bottom: 20px;
    }

    .pricing-price h2 {
        font-size: 1.8rem;
    }

    .pricing-price span {
        font-size: 0.85rem;
    }

    .pricing-features {
        margin-bottom: 20px;
    }

    .pricing-features li {
        font-size: 0.8rem;
        padding: 6px 0;
    }

    .pricing-features li i {
        font-size: 0.9rem;
    }

    /* Popular badge */
    .popular-badge {
        font-size: 0.7rem;
        padding: 5px 30px;
    }

    /* Savings badge */
    .savings-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
}