
       
       :root {
            --primary-color: #4e54c8;
            --secondary-color: #8f94fb;
            --accent-color: #ff6b6b;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --success-color: #28a745;
            --featured-gradient: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
            --basic-gradient: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
            --standard-gradient: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
            --premium-gradient: linear-gradient(135deg, #f46b45 0%, #eea849 100%);
        }
        
       .package-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/team-1.jpg') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .plans-card {
           border: none;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            background: white;
            height: 100%;
            position: relative;
        }

        .plans-card:hover {
             transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .featured-plan {
              border: 3px solid #ff6b6b;
            transform: scale(1.03);
        }

        .featured-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--featured-gradient);
            color: white;
            padding: 8px 40px;
            transform: rotate(45deg);
            font-size: 12px;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
            z-index: 1;
        }

        .plans-header {
             padding: 30px 25px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

          .basic-plan .package-header {
            background: var(--basic-gradient);
            color: white;
        }
        
        .standard-plan .package-header {
            background: var(--standard-gradient);
            color: white;
        }
        
        .premium-plan .package-header {
            background: var(--premium-gradient);
            color: white;
        }
        
        .package-header::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 0;
            width: 100%;
            height: 40px;
            background: white;
            border-radius: 50% 50% 0 0;
            transform: scale(1.5);
        }

        .plans-price {
             padding: 15px 25px;
            background: white;
            text-align: center;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            position: relative;
            z-index: 2;
        }

        .plans-body {
            padding: 20px;
        }

        .plans-feature {
             display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

          .plans-feature:hover {
            background-color: rgba(78, 84, 200, 0.05);
            transform: translateX(5px);
        }

        .plans-feature i {
               margin-right: 12px;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .plans-feature .fa-check-circle {
            color: var(--success-color);
            background-color: rgba(40, 167, 69, 0.1);
        }

        .plans-feature .fa-times-circle {
            color: #6c757d;
            background-color: rgba(108, 117, 125, 0.1);
        }

        .plans-footer {
             padding: 20px 25px 30px;
            text-align: center;
            background: rgba(248, 249, 250, 0.7);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .btn-plans {
             background: var(--primary-color);
            background: var(--basic-gradient);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
            width: 100%;
        }

        .btn-plans:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(78, 84, 200, 0.4);
            color: white;
        }

          .btn-outline-package {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }
          .btn-outline-package:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(78, 84, 200, 0.3);
        }

        .modal-plans .modal-content {
            border-radius: 15px;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .package-hero {
                padding: 60px 0;
            }

            .plans-card {
                margin-bottom: 20px;
            }
        }