 /* ===== HERO ===== */
        .hero {
            margin-top: 68px;
            background: linear-gradient(135deg, var(--navy) 0%, #2a3d8f 50%, #1e2d6b 100%);
            padding: 90px 40px 80px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -80px; right: -80px;
            width: 380px; height: 380px;
            background: radial-gradient(circle, rgba(243,190,122,0.12) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -60px; left: -60px;
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(94,122,196,0.18) 0%, transparent 70%);
            border-radius: 50%;
        }

     

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(243,190,122,0.15);
            border: 1px solid rgba(243,190,122,0.35);
            color: var(--yellow);
            font-size: 13px;
            font-weight: 600;
            padding: 7px 18px;
            border-radius: 100px;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .hero-badge::before {
            content: '';
            width: 7px; height: 7px;
            background: var(--yellow);
            border-radius: 50%;
            animation: pulse-dot 1.6s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.7); }
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 5vw, 60px);
            color: white;
            line-height: 1.15;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .hero h1 span {
            color: var(--yellow);
        }

        .hero p {
            font-size: 16px;
            color: rgba(255,255,255,0.75);
            max-width: 580px;
            margin: 0 auto;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .hero-shapes {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.06;
        }

        .shape-1 { width: 500px; height: 500px; background: var(--blue); top: -200px; right: -100px; }
        .shape-2 { width: 300px; height: 300px; background: var(--yellow); bottom: -100px; left: -50px; }
        .shape-3 { width: 150px; height: 150px; background: var(--orange); top: 30px; left: 10%; }

        /* ===== BREADCRUMB ===== */
        .breadcrumb-bar {
            background: white;
            border-bottom: 1px solid rgba(56,82,180,0.1);
            padding: 12px 40px;
        }

        .breadcrumb {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--gray);
        }

        .breadcrumb a { color: var(--navy); text-decoration: none; font-weight: 500; }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb .sep { color: #d1d5db; }
        .breadcrumb .current { color: var(--orange); font-weight: 600; }

        /* ===== LAYOUT ===== */
        .page-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 70px 40px 90px;
        }

        /* ===== SECTION TITLE ===== */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(56,82,180,0.07);
            color: var(--navy);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 100px;
            border-left: 3px solid var(--orange);
            margin-bottom: 14px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(28px, 3.5vw, 42px);
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .section-title span { color: var(--navy); }
        .section-desc {
            font-size: 15.5px;
            color: var(--gray);
            line-height: 1.8;
            max-width: 600px;
        }

        .divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--orange), var(--yellow));
            border-radius: 4px;
            margin: 18px 0;
        }

        /* ===== VISI MISI ===== */
        .visi-misi-section {
            margin-bottom: 90px;
        }

        .visi-misi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 44px;
    
}

        .vm-card {
            border-radius: 20px;
            padding: 36px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .vm-card:hover { transform: translateY(-4px); }

        .vm-card.visi {
            background: linear-gradient(135deg, var(--navy), #2a3d8f);
            color: white;
        }

        .vm-card.misi {
            background: white;
            border: 2px solid rgba(56,82,180,0.12);
            box-shadow: 0 8px 32px rgba(56,82,180,0.08);
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: -40px; right: -40px;
            width: 150px; height: 150px;
            border-radius: 50%;
            opacity: 0.1;
        }

        .vm-card.visi::before { background: var(--yellow); }
        .vm-card.misi::before { background: var(--navy); }

        .vm-icon {
            width: 54px; height: 54px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .vm-card.visi .vm-icon {
            background: rgba(243,190,122,0.2);
        }

        .vm-card.misi .vm-icon {
            background: rgba(56,82,180,0.1);
        }

        .vm-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            margin-bottom: 14px;
        }

        .vm-card.visi h3 { color: var(--yellow); }
        .vm-card.misi h3 { color: var(--navy); }

        .vm-card p {
            font-size: 15px;
            line-height: 1.8;
        }

        .vm-card.visi p { color: rgba(255,255,255,0.85); }
        .vm-card.misi p { color: var(--gray); }

        .misi-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 14px;
        }

        .misi-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14.5px;
            color: var(--gray);
            line-height: 1.6;
        }

        .misi-bullet {
            width: 22px; height: 22px;
            min-width: 22px;
            background: linear-gradient(135deg, var(--orange), var(--yellow));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            color: white;
            font-weight: 700;
            margin-top: 1px;
        }

        /* ===== SEJARAH TIMELINE ===== */
        .sejarah-section {
            margin-bottom: 90px;
        }

        .timeline {
            position: relative;
            margin-top: 50px;
            padding-left: 40px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0; bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--navy), var(--blue), var(--yellow), var(--orange));
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 44px;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInLeft 0.5s forwards;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.1s; }
        .timeline-item:nth-child(2) { animation-delay: 0.2s; }
        .timeline-item:nth-child(3) { animation-delay: 0.3s; }
        .timeline-item:nth-child(4) { animation-delay: 0.4s; }
        .timeline-item:nth-child(5) { animation-delay: 0.5s; }

        @keyframes slideInLeft {
            to { opacity: 1; transform: translateX(0); }
        }

        .timeline-dot {
            position: absolute;
            left: -48px;
            top: 14px;
            width: 18px; height: 18px;
            border-radius: 50%;
            background: var(--navy);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--navy);
        }

        .timeline-card {
            background: white;
            border-radius: 16px;
            padding: 26px 28px;
            box-shadow: 0 4px 20px rgba(56,82,180,0.08);
            border-left: 4px solid var(--navy);
            transition: all 0.3s;
        }

        .timeline-card:hover {
            box-shadow: 0 8px 32px rgba(56,82,180,0.14);
            transform: translateX(4px);
        }

        .timeline-year {
            display: inline-block;
            background: linear-gradient(135deg, var(--navy), var(--blue));
            color: white;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 100px;
            margin-bottom: 10px;
        }

        .timeline-card h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .timeline-card p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.7;
        }

        /* ===== NILAI-NILAI ===== */
        .nilai-section {
            margin-bottom: 90px;
        }

        .nilai-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 44px;
        }

        .nilai-card {
            background: white;
            border-radius: 20px;
            padding: 32px 26px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(56,82,180,0.07);
            border-top: 4px solid transparent;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .nilai-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 0;
            background: linear-gradient(135deg, rgba(56,82,180,0.04), rgba(94,122,196,0.04));
            transition: height 0.3s;
        }

        .nilai-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(56,82,180,0.13); }
        .nilai-card:hover::after { height: 100%; }

        .nilai-card:nth-child(1) { border-top-color: var(--navy); }
        .nilai-card:nth-child(2) { border-top-color: var(--orange); }
        .nilai-card:nth-child(3) { border-top-color: var(--blue); }
        .nilai-card:nth-child(4) { border-top-color: var(--yellow); }
        .nilai-card:nth-child(5) { border-top-color: var(--navy); }
        .nilai-card:nth-child(6) { border-top-color: var(--orange); }

        .nilai-icon {
            width: 68px; height: 68px;
            margin: 0 auto 18px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            position: relative;
            z-index: 1;
        }

        .nilai-card:nth-child(1) .nilai-icon { background: rgba(56,82,180,0.1); }
        .nilai-card:nth-child(2) .nilai-icon { background: rgba(240,141,57,0.1); }
        .nilai-card:nth-child(3) .nilai-icon { background: rgba(94,122,196,0.1); }
        .nilai-card:nth-child(4) .nilai-icon { background: rgba(243,190,122,0.2); }
        .nilai-card:nth-child(5) .nilai-icon { background: rgba(56,82,180,0.1); }
        .nilai-card:nth-child(6) .nilai-icon { background: rgba(240,141,57,0.1); }

        .nilai-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .nilai-card p {
            font-size: 13.5px;
            color: var(--gray);
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        /* ===== TIM ===== */
        .tim-section {
            margin-bottom: 90px;
        }

        .tim-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 44px;
        }

        .tim-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(56,82,180,0.08);
            transition: all 0.3s;
            text-align: center;
        }

        .tim-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(56,82,180,0.14); }

        .tim-avatar {
            width: 100%;
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 56px;
            position: relative;
        }

        .tim-card:nth-child(1) .tim-avatar { background: linear-gradient(135deg, rgba(56,82,180,0.15), rgba(94,122,196,0.2)); }
        .tim-card:nth-child(2) .tim-avatar { background: linear-gradient(135deg, rgba(240,141,57,0.12), rgba(243,190,122,0.2)); }
        .tim-card:nth-child(3) .tim-avatar { background: linear-gradient(135deg, rgba(56,82,180,0.12), rgba(94,122,196,0.18)); }
        .tim-card:nth-child(4) .tim-avatar { background: linear-gradient(135deg, rgba(240,141,57,0.12), rgba(243,190,122,0.18)); }

        .tim-badge {
            position: absolute;
            bottom: 10px; right: 10px;
            background: var(--navy);
            color: white;
            font-size: 10px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 100px;
        }

        .tim-info {
            padding: 20px 18px 24px;
        }

        .tim-info h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .tim-role {
            font-size: 12px;
            color: var(--orange);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .tim-desc {
            font-size: 12.5px;
            color: var(--gray);
            line-height: 1.6;
        }

        /* ===== STATS BANNER ===== */
        .stats-banner {
            background: linear-gradient(135deg, var(--navy), #2a3d8f);
            border-radius: 24px;
            padding: 56px 48px;
            margin-bottom: 90px;
            position: relative;
            overflow: hidden;
        }

        .stats-banner::before {
            content: '';
            position: absolute;
            top: -80px; right: -80px;
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(243,190,122,0.12) 0%, transparent 70%);
            border-radius: 50%;
        }

        .stats-banner-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .stats-banner-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: white;
            margin-bottom: 10px;
        }

        .stats-banner-header p {
            color: rgba(255,255,255,0.7);
            font-size: 15px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            border-right: 1px solid rgba(255,255,255,0.1);
            position: relative;
            z-index: 1;
        }

        .stat-item:last-child { border-right: none; }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 44px;
            font-weight: 800;
            color: var(--yellow);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 13px;
            color: rgba(255,255,255,0.75);
            font-weight: 500;
        }

        .stat-icon {
            font-size: 22px;
            margin-bottom: 10px;
        }

        /* ===== MITRA ===== */
        .mitra-section {
            margin-bottom: 90px;
        }

        .mitra-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 44px;
        }

        .mitra-card {
            background: white;
            border-radius: 16px;
            padding: 24px 16px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(56,82,180,0.07);
            border: 2px solid transparent;
            transition: all 0.3s;
        }

        .mitra-card:hover {
            border-color: var(--blue);
            transform: translateY(-4px);
            box-shadow: 0 10px 28px rgba(56,82,180,0.14);
        }

        .mitra-icon {
            font-size: 34px;
            margin-bottom: 12px;
        }

        .mitra-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--dark);
        }

        .mitra-type {
            font-size: 11px;
            color: var(--gray);
            margin-top: 4px;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--orange), #e07020);
            border-radius: 24px;
            padding: 60px 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 90px;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px; left: -60px;
            width: 250px; height: 250px;
            background: rgba(255,255,255,0.06);
            border-radius: 50%;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -80px; right: -60px;
            width: 320px; height: 320px;
            background: rgba(255,255,255,0.06);
            border-radius: 50%;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            color: white;
            margin-bottom: 14px;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 15px;
            color: rgba(255,255,255,0.88);
            max-width: 520px;
            margin: 0 auto 32px;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .btn-white {
            background: white;
            color: var(--orange);
            font-size: 15px;
            font-weight: 700;
            padding: 14px 30px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        .btn-outline-white {
            background: transparent;
            color: white;
            font-size: 15px;
            font-weight: 600;
            padding: 14px 30px;
            border-radius: 12px;
            border: 2px solid rgba(255,255,255,0.6);
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .btn-outline-white:hover {
            background: rgba(255,255,255,0.15);
            border-color: white;
        }

        /* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .visi-misi-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .vm-card{
        width:100%;
        padding:24px;
        height:auto;
    }

}