
<!-- CSS Modern untuk SMP -->
<style>
    /* Badge SMP */
    .badge-smp .badge-pill {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        color: white;
        border: 1px solid rgba(255, 215, 0, 0.3);
        display: inline-block;
    }

    /* Gradient SMP */
    .gradient-smp {
        background: linear-gradient(135deg, #FFD700, #17B5D1, #5c940d);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 2.2rem;
        font-weight: 700;
    }

    /* Divider SMP */
    .divider-smp {
        width: 150px;
        height: 4px;
        background: linear-gradient(90deg, #FFD700, #17B5D1);
        border-radius: 2px;
    }

    /* Floating Shapes */
    .floating-shape-smp {
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1), transparent 70%);
        filter: blur(40px);
        z-index: 1;
        animation: floatSmp 15s ease-in-out infinite;
    }

    .shape-1 {
        top: 10%;
        left: 5%;
        animation-delay: 0s;
    }

    .shape-2 {
        bottom: 10%;
        right: 5%;
        animation-delay: 3s;
    }

    .shape-3 {
        top: 40%;
        right: 15%;
        animation-delay: 6s;
    }

    @keyframes floatSmp {

        0%,
        100% {
            transform: translate(0, 0) scale(1);
        }

        50% {
            transform: translate(30px, -30px) scale(1.1);
        }
    }

    /* Vision Card SMP */
    .vision-smp-card {
        background: white;
        border-radius: 30px;
        padding: 2.5rem;
        box-shadow: 0 30px 60px rgba(10, 38, 71, 0.15);
        border: 1px solid rgba(255, 215, 0, 0.2);
        transition: all 0.3s ease;
    }

    .vision-smp-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 40px 80px rgba(10, 38, 71, 0.2);
    }

    .vision-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(145deg, #FFD700, #17B5D1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        color: #0A2647;
        box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    }

    .vision-text-smp {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #4a5568;
        font-style: italic;
        padding-left: 1.5rem;
        border-left: 4px solid #FFD700;
    }

    /* Section Titles */
    .section-title-smp {
        font-size: 2.5rem;
        font-weight: 800;
        color: #0A2647;
        position: relative;
        display: inline-block;
    }

    .section-title-smp.light {
        color: white;
    }

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

    .section-subtitle-smp {
        font-size: 1.2rem;
        color: #6c757d;
        margin-top: 1rem;
    }

    .section-subtitle-smp.light {
        color: rgba(255, 255, 255, 0.8);
    }

    /* Program Cards SMP */
    .program-smp-card {
        background: white;
        border-radius: 30px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .program-smp-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #FFD700, #17B5D1);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .program-smp-card:hover::before {
        transform: scaleX(1);
    }

    .program-smp-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(10, 38, 71, 0.15);
    }

    .program-icon-wrapper {
        width: 100px;
        height: 100px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        transition: all 0.3s ease;
    }

    .program-smp-card:hover .program-icon-wrapper {
        transform: scale(1.1) rotate(5deg);
    }

    .program-smp-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: #0A2647;
        margin-bottom: 1rem;
    }

    .program-smp-text {
        color: #6c757d;
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }

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

    .tag {
        padding: 0.3rem 1rem;
        background: #f0f9ff;
        border-radius: 50px;
        font-size: 0.85rem;
        color: #0A2647;
        font-weight: 500;
    }

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

    .facility-smp-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .facility-smp-icon {
        width: 100px;
        height: 100px;
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: #FFD700;
        transition: all 0.3s ease;
    }

    .facility-smp-card:hover .facility-smp-icon {
        transform: scale(1.1);
        background: rgba(255, 215, 0, 0.3);
    }

    .facility-smp-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
        margin: 0;
    }

    .facility-glow {
        width: 8px;
        height: 8px;
        background: #FFD700;
        border-radius: 50%;
        margin: 0.5rem auto 0;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .facility-smp-card:hover .facility-glow {
        opacity: 1;
        box-shadow: 0 0 20px #FFD700;
    }

    /* Foundation Cards */
    .foundation-smp-card {
        background: white;
        border-radius: 30px;
        padding: 2.5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    }

    .card-title-smp {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0A2647;
    }

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

    .foundation-smp-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(10, 38, 71, 0.1);
    }

    .foundation-smp-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

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

    .curriculum-smp-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(10, 38, 71, 0.15);
    }

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

    .curriculum-smp-body {
        padding: 1.5rem;
    }

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

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

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

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

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

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

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

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

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

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

    .fun-bg {
        background: linear-gradient(145deg, #17B5D1, #0f8ca3);
    }

    .project-bg {
        background: linear-gradient(145deg, #5c940d, #3e6309);
    }

    .collab-bg {
        background: linear-gradient(145deg, #364fc7, #1f3085);
    }

    .daily-bg {
        background: linear-gradient(145deg, #ff8c00, #b36200);
    }

    .attitude-bg {
        background: linear-gradient(145deg, #dc3545, #a71d2a);
    }

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

    .standard-smp-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(10, 38, 71, 0.15);
    }

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

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

    .standard-smp-card.skill .standard-smp-header {
        background: linear-gradient(145deg, #ff8c00, #b36200);
    }

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

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

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

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

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

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

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

    /* Requirement Card */
    .requirement-card {
        background: white;
        border-radius: 30px;
        padding: 2.5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    }

    .requirement-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0A2647;
        margin-bottom: 2rem;
        text-align: center;
    }

    .requirement-item {
        padding: 1.5rem;
        background: #f8faff;
        border-radius: 20px;
        height: 100%;
    }

    .requirement-item h5 {
        color: #0A2647;
        margin-bottom: 1rem;
    }

    .requirement-item ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .requirement-item li {
        margin-bottom: 0.5rem;
        color: #4a5568;
        padding-left: 1.5rem;
        position: relative;
    }

    .requirement-item li::before {
        content: '•';
        color: #28a745;
        font-weight: bold;
        position: absolute;
        left: 0;
    }

    /* Evaluation Card */
    .evaluation-smp-card {
        background: white;
        border-radius: 30px;
        padding: 3rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    }

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

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

    .evaluation-smp-item:hover {
        transform: translateY(-5px);
        background: white;
        box-shadow: 0 20px 40px rgba(10, 38, 71, 0.1);
    }

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

    .evaluation-smp-icon.daily {
        background: linear-gradient(145deg, #17B5D1, #0f8ca3);
    }

    .evaluation-smp-icon.semester {
        background: linear-gradient(145deg, #5c940d, #3e6309);
    }

    .evaluation-smp-icon.final {
        background: linear-gradient(145deg, #FFD700, #b38200);
    }

    .evaluation-smp-item h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #0A2647;
        margin-bottom: 0.5rem;
    }

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

    /* Graduate Cards */
    .graduate-smp-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 30px;
        padding: 2rem;
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid rgba(255, 215, 0, 0.2);
    }

    .graduate-smp-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    }

    .graduate-smp-icon {
        width: 100px;
        height: 100px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: white;
    }

    .graduate-smp-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: white;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .graduate-smp-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .graduate-smp-list li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
    }

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

    .graduate-smp-list li strong {
        display: block;
        color: white;
        margin-bottom: 0.25rem;
    }

    .graduate-smp-list li p {
        margin: 0;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }

    /* Media Queries */
    @media (max-width: 768px) {
        .display-4 {
            font-size: 2.2rem;
        }

        .gradient-smp {
            font-size: 1.8rem;
        }

        .section-title-smp {
            font-size: 2rem;
        }

        .vision-smp-card {
            padding: 1.5rem;
        }

        .vision-text-smp {
            font-size: 1rem;
            padding-left: 1rem;
        }

        .program-smp-title {
            font-size: 1.2rem;
        }

        .evaluation-smp-card {
            padding: 1.5rem;
        }

        .graduate-smp-card {
            padding: 1.5rem;
        }

        .graduate-smp-title {
            font-size: 1.2rem;
        }
    }
</style>