
<!-- CSS Modern untuk SMA -->
<style>
    /* Premium Badge */
    .premium-badge .badge-premium {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        padding: 0.75rem 2.5rem;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
        border: 1px solid rgba(255, 215, 0, 0.3);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        display: inline-block;
        letter-spacing: 1px;
    }

    /* Gradient Premium */
    .gradient-premium {
        background: linear-gradient(135deg, #FFD700, #17B5D1, #5c940d);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 2.5rem;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }

    /* Premium Divider */
    .premium-divider {
        width: 200px;
        height: 4px;
        background: linear-gradient(90deg, #FFD700, #17B5D1, #5c940d);
        border-radius: 2px;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }

    /* Floating Elements */
    .floating-element {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        z-index: 1;
        animation: floatPremium 20s ease-in-out infinite;
    }

    .floating-1 {
        width: 300px;
        height: 300px;
        background: rgba(23, 181, 209, 0.1);
        top: 10%;
        left: 5%;
        animation-delay: 0s;
    }

    .floating-2 {
        width: 400px;
        height: 400px;
        background: rgba(255, 215, 0, 0.1);
        bottom: 10%;
        right: 5%;
        animation-delay: 5s;
    }

    .floating-3 {
        width: 250px;
        height: 250px;
        background: rgba(92, 148, 13, 0.1);
        top: 40%;
        right: 20%;
        animation-delay: 10s;
    }

    @keyframes floatPremium {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(40px, -40px) scale(1.1); }
    }

    /* Vision Premium Card */
    .vision-premium-card {
        background: white;
        border-radius: 40px;
        padding: 3rem;
        box-shadow: 0 40px 80px rgba(11, 30, 51, 0.2);
        border: 1px solid rgba(255, 215, 0, 0.3);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .vision-premium-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #FFD700, #17B5D1, #5c940d);
    }

    .vision-premium-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 60px 120px rgba(11, 30, 51, 0.3);
    }

    .vision-premium-icon {
        width: 120px;
        height: 120px;
        background: linear-gradient(145deg, #FFD700, #17B5D1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        color: #0B1E33;
        box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
        animation: pulse 3s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }

    .vision-premium-text {
        font-size: 1.25rem;
        line-height: 1.9;
        color: #4a5568;
        font-style: italic;
        padding-left: 2rem;
        border-left: 4px solid #FFD700;
        margin: 0;
    }

    /* Section Titles Premium */
    .section-title-premium {
        font-size: 2.8rem;
        font-weight: 800;
        color: #0B1E33;
        position: relative;
        display: inline-block;
        letter-spacing: -0.5px;
    }

    .section-title-premium.light {
        color: white;
        text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    .section-title-premium::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #FFD700, #17B5D1);
        border-radius: 2px;
    }

    .section-subtitle-premium {
        font-size: 1.3rem;
        color: #6c757d;
        margin-top: 1.5rem;
        font-weight: 300;
    }

    .section-subtitle-premium.light {
        color: rgba(255, 255, 255, 0.9);
    }

    /* Program Premium Cards */
    .program-premium-card {
        background: white;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        height: 100%;
        position: relative;
    }

    .program-premium-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 40px 80px rgba(11, 30, 51, 0.15);
    }

    .program-premium-header {
        padding: 3rem 2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .program-premium-header::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .program-premium-card:hover .program-premium-header::after {
        opacity: 1;
    }

    .program-premium-body {
        padding: 2rem;
    }

    .program-premium-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #0B1E33;
        margin-bottom: 1rem;
        text-align: center;
    }

    .program-premium-text {
        color: #6c757d;
        text-align: center;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }

    .program-premium-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .feature-badge {
        padding: 0.4rem 1rem;
        background: #f0f9ff;
        border-radius: 50px;
        font-size: 0.85rem;
        color: #0B1E33;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
    }

    /* Facility Premium Cards */
    .facility-premium-card {
        text-align: center;
        padding: 2.5rem 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 30px;
        transition: all 0.4s ease;
        cursor: pointer;
        border: 1px solid rgba(255, 215, 0, 0.2);
        position: relative;
        overflow: hidden;
    }

    .facility-premium-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #FFD700, transparent);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }

    .facility-premium-card:hover::before {
        transform: translateX(0);
    }

    .facility-premium-card:hover {
        transform: translateY(-10px) scale(1.02);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    }

    .facility-premium-icon {
        width: 120px;
        height: 120px;
        margin: 0 auto 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        color: #FFD700;
        transition: all 0.4s ease;
        position: relative;
    }

    .icon-glow {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,215,0,0.4) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .facility-premium-card:hover .icon-glow {
        opacity: 1;
    }

    .facility-premium-card:hover .facility-premium-icon {
        transform: scale(1.1) rotate(5deg);
        color: white;
    }

    .facility-premium-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: white;
        margin-bottom: 0.5rem;
    }

    .facility-premium-desc {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
    }

    /* Info Premium Cards */
    .info-premium-card {
        background: white;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        height: 100%;
    }

    .info-premium-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 40px 80px rgba(11, 30, 51, 0.15);
    }

    .info-premium-header {
        padding: 2rem;
        text-align: center;
    }

    .info-premium-body {
        padding: 2rem;
    }

    .info-premium-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #0B1E33;
        margin-bottom: 1rem;
        text-align: center;
    }

    .info-premium-text {
        color: #4a5568;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .license-badge {
        text-align: center;
    }

    .badge-license {
        display: inline-block;
        padding: 0.5rem 2rem;
        background: linear-gradient(145deg, #28a745, #20c997);
        color: white;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
    }

    /* Foundation Premium Card */
    .foundation-premium-card {
        background: white;
        border-radius: 30px;
        padding: 3rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .foundation-premium-title {
        font-size: 2rem;
        font-weight: 700;
        color: #0B1E33;
        margin-bottom: 2rem;
        text-align: center;
    }

    .foundation-premium-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
        background: #f8faff;
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .foundation-premium-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(11, 30, 51, 0.1);
    }

    .foundation-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        flex-shrink: 0;
    }

    /* Curriculum Premium Cards */
    .curriculum-premium-card {
        background: white;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        height: 100%;
    }

    .curriculum-premium-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 40px 80px rgba(11, 30, 51, 0.15);
    }

    .curriculum-premium-header {
        padding: 2rem;
        text-align: center;
        color: white;
    }

    .curriculum-premium-body {
        padding: 2rem;
    }

    .curriculum-premium-body h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #0B1E33;
        margin-bottom: 1rem;
        text-align: center;
    }

    .curriculum-premium-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .curriculum-premium-list li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
        color: #4a5568;
        font-size: 0.95rem;
    }

    .curriculum-premium-list li i {
        color: #28a745;
    }

    /* Approach Premium Cards */
    .approach-premium-card {
        background: white;
        border-radius: 30px;
        padding: 2.5rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        height: 100%;
    }

    .approach-premium-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #0B1E33;
        margin-bottom: 2rem;
        padding-bottom: 0.5rem;
        border-bottom: 3px solid #f0f0f0;
    }

    .approach-premium-list {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }

    .approach-premium-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: #f8faff;
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .approach-premium-item:hover {
        transform: translateX(5px);
        background: white;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .approach-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .pbl-bg { background: linear-gradient(145deg, #17B5D1, #0f8ca3); }
    .collab-bg { background: linear-gradient(145deg, #5c940d, #3e6309); }
    .problem-bg { background: linear-gradient(145deg, #364fc7, #1f3085); }
    .authentic-bg { background: linear-gradient(145deg, #ff8c00, #b36200); }
    .continuous-bg { background: linear-gradient(145deg, #6c5ce7, #5849c2); }
    .comprehensive-bg { background: linear-gradient(145deg, #dc3545, #a71d2a); }

    /* Development Card */
    .development-premium-card {
        background: white;
        border-radius: 30px;
        padding: 3rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .development-premium-title {
        font-size: 2rem;
        font-weight: 700;
        color: #0B1E33;
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .development-item {
        text-align: center;
        padding: 2rem;
        background: #f8faff;
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .development-item:hover {
        transform: translateY(-5px);
        background: white;
        box-shadow: 0 20px 40px rgba(11, 30, 51, 0.1);
    }

    .development-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
    }

    .development-item h5 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #0B1E33;
        margin-bottom: 0.5rem;
    }

    .development-item p {
        color: #6c757d;
        margin: 0;
    }

    /* Standard Premium Cards */
    .standard-premium-card {
        background: white;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        height: 100%;
    }

    .standard-premium-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 40px 80px rgba(11, 30, 51, 0.15);
    }

    .standard-premium-card.academic .standard-premium-header {
        background: linear-gradient(145deg, #17B5D1, #0f8ca3);
    }

    .standard-premium-card.islamic .standard-premium-header {
        background: linear-gradient(145deg, #5c940d, #3e6309);
    }

    .standard-premium-header {
        padding: 2rem;
        color: white;
        text-align: center;
    }

    .standard-premium-header i {
        margin-bottom: 0.5rem;
    }

    .standard-premium-header h3 {
        margin: 0;
        font-size: 1.3rem;
        font-weight: 700;
    }

    .standard-premium-body {
        padding: 2rem;
    }

    .standard-premium-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .standard-premium-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1rem;
        color: #4a5568;
    }

    .standard-premium-list li i {
        color: #28a745;
        margin-top: 0.2rem;
    }

    /* Language Card */
    .language-premium-card {
        background: white;
        border-radius: 30px;
        padding: 3rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .language-premium-title {
        font-size: 2rem;
        font-weight: 700;
        color: #0B1E33;
        text-align: center;
        margin-bottom: 2rem;
    }

    .language-item {
        text-align: center;
        padding: 2rem;
        background: #f8faff;
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .language-item:hover {
        transform: translateY(-5px);
        background: white;
        box-shadow: 0 20px 40px rgba(11, 30, 51, 0.1);
    }

    .language-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
    }

    .language-item h5 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #0B1E33;
        margin-bottom: 0.5rem;
    }

    .language-item p {
        color: #6c757d;
        margin: 0;
    }

    /* Requirements Card */
    .requirements-premium-card {
        background: white;
        border-radius: 30px;
        padding: 2.5rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        height: 100%;
    }

    .requirements-premium-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #0B1E33;
        margin-bottom: 2rem;
        text-align: center;
    }

    .requirements-premium-card h5 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #0B1E33;
        margin-bottom: 1rem;
    }

    .requirements-premium-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .requirements-premium-card li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        color: #4a5568;
        font-size: 0.95rem;
    }

    .requirements-premium-card li i {
        color: #28a745;
        font-size: 0.9rem;
    }

    /* Evaluation Card */
    .evaluation-premium-card {
        background: white;
        border-radius: 30px;
        padding: 2.5rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        height: 100%;
    }

    .evaluation-premium-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #0B1E33;
        margin-bottom: 2rem;
        text-align: center;
    }

    .evaluation-icon-small {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.5rem;
        color: white;
        font-size: 1.5rem;
    }

    .evaluation-icon-small.daily { background: linear-gradient(145deg, #17B5D1, #0f8ca3); }
    .evaluation-icon-small.semester { background: linear-gradient(145deg, #5c940d, #3e6309); }
    .evaluation-icon-small.final { background: linear-gradient(145deg, #ff8c00, #b36200); }

    .evaluation-premium-card h6 {
        font-size: 1rem;
        font-weight: 600;
        color: #0B1E33;
        margin: 0;
    }

    /* Graduate Premium Cards */
    .graduate-premium-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 40px;
        padding: 2.5rem 2rem;
        transition: all 0.4s ease;
        height: 100%;
        border: 1px solid rgba(255, 215, 0, 0.2);
        position: relative;
        overflow: hidden;
    }

    .graduate-premium-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at top right, rgba(255,215,0,0.1), transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .graduate-premium-card:hover::after {
        opacity: 1;
    }

    .graduate-premium-card:hover {
        transform: translateY(-15px) scale(1.02);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 40px 80px rgba(0,0,0,0.3);
        border-color: rgba(255, 215, 0, 0.4);
    }

    .graduate-premium-icon {
        width: 120px;
        height: 120px;
        border-radius: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 2rem;
        color: white;
        position: relative;
        z-index: 2;
    }

    .graduate-premium-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        text-align: center;
        margin-bottom: 2rem;
        position: relative;
        z-index: 2;
    }

    .graduate-premium-list {
        list-style: none;
        padding: 0;
        margin: 0;
        position: relative;
        z-index: 2;
    }

    .graduate-premium-list li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
        padding: 0.5rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .graduate-premium-list li:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
    }

    .graduate-premium-list li i {
        color: #FFD700;
        font-size: 1rem;
        margin-top: 0.2rem;
    }

    .graduate-premium-list li strong {
        display: block;
        color: white;
        margin-bottom: 0.25rem;
        font-size: 1.1rem;
    }

    .graduate-premium-list li p {
        margin: 0;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.5;
    }

    /* Media Queries */
    @media (max-width: 768px) {
        .display-3 {
            font-size: 2.2rem;
        }
        
        .gradient-premium {
            font-size: 1.8rem;
        }
        
        .section-title-premium {
            font-size: 2rem;
        }
        
        .vision-premium-card {
            padding: 1.5rem;
        }
        
        .vision-premium-text {
            font-size: 1rem;
            padding-left: 1rem;
        }
        
        .vision-premium-icon {
            width: 80px;
            height: 80px;
        }
        
        .program-premium-title {
            font-size: 1.3rem;
        }
        
        .foundation-premium-card,
        .development-premium-card,
        .language-premium-card {
            padding: 1.5rem;
        }
        
        .graduate-premium-card {
            padding: 1.5rem;
        }
        
        .graduate-premium-title {
            font-size: 1.3rem;
        }
        
        .graduate-premium-list li strong {
            font-size: 1rem;
        }
    }
</style>