/* ====== Professional Modernized Plans Page (with #f6ee44 branding) ====== */

/* General Page Styling */
body {
    background-color: #fafafa;
    color: #222;
    font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.6;
}

/* Section Titles */
.section-title {
    font-size: 1.9em;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 5px solid #f6ee44;
    padding-left: 12px;
}

.section-title i {
    color: #f6ee44;
}

/* Price Card */
.price-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #f6ee44;
}

/* Plan Badge */
.plan-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #f6ee44;
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(246, 238, 68, 0.4);
}

.plan-badge.bg-success {
    background: #28a745 !important;
    color: #fff;
}

.plan-badge.bg-info {
    background: #17a2b8 !important;
    color: #fff;
}

/* Plan Title */
.price-card h4 {
    color: #222;
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Price Section */
.price {
    background: #fdfdfd;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    text-align: center;
    padding: 20px;
    margin: 25px 0;
}

.original-price {
    color: #999;
    font-size: 1.1em;
    text-decoration: line-through;
}

.current-price {
    color: #f6ee44;
    font-size: 2.4em;
    font-weight: 800;
    margin-top: 5px;
}


.offer-badge {
    position: absolute;
    top: 18px;
    left: -38px; /* Slightly out of card for realistic corner wrap */
    background: #e74c3c;
    color: #fff;
    padding: 8px 60px;
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(-45deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
    letter-spacing: 0.5px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

/* Optional hover tint for visual depth */
.price-card:hover .offer-badge {
    background: #c0392b;
}



/* Description */
.price-card .text-muted {
    color: #555 !important;
    font-size: 0.95em;
    margin-bottom: 15px;
    min-height: 60px;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.features-list li {
    color: #333;
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid #eee;
    font-size: 0.95em;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #f6ee44;
    font-weight: bold;
    font-size: 1.2em;
}

/* Contact Button */
.contact-btn {
    display: inline-block;
    background: #f6ee44;
    color: #000 !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1em;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.contact-btn:hover {
    background: #e4dc3f;
    border-color: #cfc637;
    color: #000 !important;
    transform: translateY(-2px);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px dashed #ccc;
}

.empty-state i {
    font-size: 3em;
    color: #ccc;
    margin-bottom: 15px;
}

.empty-state h4 {
    color: #444;
    font-weight: 600;
    margin-bottom: 10px;
}

.empty-state p {
    color: #888;
}

/* Contact Section */
#contact {
    background: #111;
    border-radius: 12px;
    padding: 60px 25px;
}

#contact h3 {
    color: #f6ee44;
    font-weight: 600;
    font-size: 1.9em;
    margin-bottom: 15px;
}

#contact p {
    color: #ddd;
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .price-card {
        margin-bottom: 20px;
    }
    .current-price {
        font-size: 2em;
    }
    .section-title {
        font-size: 1.6em;
    }
    .contact-btn {
        width: 100%;
        text-align: center;
    }
}
/* ===================================
           99 Trainings - Pricing Plans CSS
           =================================== */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', 'Helvetica', sans-serif;
            background-color: #000000;
            color: #ffffff;
            line-height: 1.6;
            padding: 40px 20px;
        }

        /* Main Container */
        .pricing-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Section */
        .pricing-section {
            margin-bottom: 80px;
        }

        .section-heading {
            font-size: 2.5rem;
            font-weight: bold;
            color: #f6ee44;
            text-align: center;
            margin-bottom: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Pricing Grid */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            padding: 0 20px;
        }

        /* Pricing Card */
        .pricing-card {
            background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
            border: 1px solid #333333;
            border-radius: 8px;
            padding: 50px 40px;
            transition: all 0.3s ease;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            border-color: #f6ee44;
            box-shadow: 0 10px 40px rgba(246, 238, 68, 0.2);
        }

        /* Card Content */
        .card-content {
            text-align: center;
        }

        /* Plan Header Group */
        .plan-header-group {
            margin-bottom: 10px;
        }

        /* Plan Name */
        .plan-name {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 10px;
            text-transform: capitalize;
        }

        .plan-section {
            font-size: 0.95rem;
            color: #f6ee44;
            background: rgba(246, 238, 68, 0.15);
            padding: 5px 15px;
            border-radius: 20px;
            margin-bottom: 20px;
            display: inline-block;
        }

        /* Price Section */
        .price-section {
            margin: 40px 0;
        }

        .price {
            font-size: 4.5rem;
            font-weight: bold;
            color: #f6ee44;
            line-height: 1;
            margin-bottom: 15px;
            letter-spacing: -2px;
        }

        .price-label {
            font-size: 1rem;
            font-weight: 600;
            color: #cccccc;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Offer Badge Container */
        .offer-badge-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            margin-bottom: 30px;
        }

        .offer-original-price {
            font-size: 1.1rem;
            color: #888;
            text-decoration: line-through;
        }

        .offer-label {
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: #fff;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        }

        .offer-label i {
            animation: flicker 1.5s infinite;
        }

        @keyframes flicker {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .discount-percentage {
            background: #f6ee44;
            color: #000;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            margin-left: 10px;
        }

        /* Features List */
        .features-list {
            list-style: none;
            padding: 0;
            margin: 40px 0;
            text-align: center;
        }

        .features-list li {
            font-size: 1.1rem;
            color: #cccccc;
            padding: 12px 0;
            border-bottom: 1px solid #222222;
        }

        .features-list li:last-child {
            border-bottom: none;
        }

        /* Empty State */
        .empty-state {
            grid-column: 1 / -1;
            text-align: center;
            padding: 80px 40px;
            background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
            border: 1px dashed #333333;
            border-radius: 8px;
        }

        .empty-icon {
            font-size: 3rem;
            color: #333;
            margin-bottom: 16px;
        }

        .empty-state h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #999;
            margin-bottom: 8px;
        }

        .empty-state p {
            font-size: 0.9375rem;
            color: #666;
        }

        /* Enroll Button */
        .enroll-btn {
            background-color: #3a3a3a;
            color: #ffffff;
            font-size: 1rem;
            font-weight: bold;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 18px 60px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 30px;
            width: 100%;
        }

        .enroll-btn:hover {
            background-color: #f6ee44;
            color: #000000;
            transform: translateY(-2px);
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
            border: 1px solid #333333;
            border-radius: 8px;
            padding: 60px 40px;
            text-align: center;
            margin-top: 80px;
        }

        .contact-section h2 {
            font-size: 2rem;
            color: #f6ee44;
            margin-bottom: 15px;
        }

        .contact-section p {
            font-size: 1.2rem;
            color: #cccccc;
            margin-bottom: 40px;
        }

        .contact-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .contact-btn {
            background-color: transparent;
            color: #f6ee44;
            border: 2px solid #f6ee44;
            padding: 15px 35px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .contact-btn:hover {
            background-color: #f6ee44;
            color: #000000;
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .pricing-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 20px 10px;
            }

            .section-heading {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0;
            }

            .pricing-card {
                padding: 40px 30px;
            }

            .plan-name {
                font-size: 1.5rem;
            }

            .price {
                font-size: 3.5rem;
            }

            .contact-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .contact-btn {
                width: 100%;
                justify-content: center;
            }

            .contact-section {
                padding: 40px 20px;
            }
        }

        @media (max-width: 480px) {
            .section-heading {
                font-size: 1.75rem;
            }

            .price {
                font-size: 3rem;
            }

            .pricing-card {
                padding: 30px 20px;
            }

            .enroll-btn {
                padding: 15px 40px;
                font-size: 0.9rem;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }
.plan-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.plan-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    width: 200px;
    height: 70px;

    padding: 10px 20px;

    border-radius: 10px;
    border: 2px solid #f6ee44;

    text-decoration: none;
    color: #f6ee44;
    font-weight: bold;

    transition: all 0.3s ease;
}

.plan-btn:hover {
    background: #f6ee44;
    color: #000;
}

.plan-btn.active {
    background: #f6ee44;
    color: #000;
}