/* Extracted from app/Views/frontend/services/view.php (smm-social-media-marketing) during CSS refactor. */

.pricing {
            text-align: center;
            padding: 20px 10px 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-title {
            font-size: 2rem;
            color: #444;
            text-transform: uppercase;
            margin-bottom: 30px;
            position: relative;
            font-weight: 700;
            padding-bottom: 15px;
        }

        .pricing-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #ff4500;
        }

        .pricing-plans {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 20px;
        }

        .plan {
            background: #fff;
            border-radius: 15px;
            width: 100%;
            max-width: 375px;
            box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.08);
            position: relative;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s, box-shadow 0.3s;
            overflow: hidden;
            border: 1px solid #f0f0f0;
        }

        .plan:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        .plan-header {
            padding: 30px 20px;
            background: #f9f9f9;
            border-bottom: 1px solid #eee;
        }

        .recommended {
            border: 2px solid #ff4500;
            transform: scale(1.03);
        }

        .best-value-label {
            background: #ff4500;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            position: absolute;
            top: 30px;
            right: -50px;
            transform: rotate(45deg);
            padding: 5px 40px;
            z-index: 1;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .plan-price-wrapper {
            margin-bottom: 10px;
        }

        .plan-price {
            font-weight: bold;
            display: flex;
            align-items: baseline;
            justify-content: center;
            margin-bottom: 5px;
            color: #333;
        }

        .price-prefix {
            font-size: 1.2rem;
            margin-right: 5px;
            color: #666;
        }

        .price-amount {
            font-size: 3.5rem;
            line-height: 1;
        }

        .price-currency {
            font-size: 1.2rem;
            margin-left: 5px;
            color: #666;
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
            margin: 10px 0 5px;
        }

        .plan-recurring {
            font-size: 0.9rem;
            color: #777;
            margin: 5px 0;
        }

        .plan-features {
            list-style: none;
            margin: 0;
            padding: 20px;
            text-align: left;
            flex-grow: 1;
        }

        .plan-features li {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            color: #555;
            display: flex;
            align-items: flex-start;
        }

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

        .feature-category {
            font-weight: 600;
            color: #333;
            padding-top: 15px !important;
            border-bottom: none !important;
        }

        .plan-features i {
            color: #16ad44;
            margin-right: 10px;
            font-size: 1rem;
            margin-top: 5px;
        }

        .premium-feature {
            color: #ff4500 !important;
        }

        .plan-note {
            font-size: 0.9rem;
            color: #666;
            font-style: italic;
            padding: 0 20px 10px;
            margin: 0;
            text-align: left;
        }

        .plan-button {
            background: #16ad44;
            color: #fff;
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin: 10px 20px 25px;
            box-shadow: 0 4px 10px rgba(22, 173, 68, 0.3);
        }

        .plan-button:hover {
            background: #f82538;
            box-shadow: 0 4px 15px rgba(248, 37, 56, 0.4);
            transform: translateY(-3px);
        }

        @media (max-width: 1100px) {
            .pricing-plans {
                gap: 20px;
            }

            .plan {
                max-width: 320px;
            }
        }

        @media (max-width: 992px) {
            .plan {
                max-width: 300px;
            }
        }

        @media (max-width: 768px) {
            .pricing-plans {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }

            .plan {
                max-width: 100%;
                width: 100%;
                margin-bottom: 20px;
            }

            .recommended {
                transform: none;
                order: -1;
            }
        }
