/* SECTION PROFIL PEMIMPIN */
.leader-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #f4f8f9, #e6f0f2);
}

/* BOX UTAMA */
.leader-rectangle {
    position: relative;
    width: 100%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 50px;
    overflow: hidden;

    border: 4px solid #f2c94c;

    /* EFFECT */
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.2),
        0 0 30px rgba(79,163,184,0.2);

    animation: fadeSlideUp 1s ease-out;
}

/* GARIS ANIMASI HALUS */
.leader-rectangle::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: -50%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -50%; }
    100% { left: 150%; }
}

/* KONTEN */
.leader-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* FOTO */
.leader-photo img {
    width: 280px;
    border-radius: 20px;

    /* EFFECT FOTO */
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.3),
        0 0 20px rgba(0,0,0,0.2);

    transition: 0.4s;
}

/* FOTO HOVER */
.leader-photo img:hover {
    transform: scale(1.05) rotate(1deg);
}

/* TEKS */
.leader-title {
    color: #F8DA1E;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Namdhinggo', serif;
    font-size: 28px;

    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.leader-name {
    font-size: 40px;
    color: #2f6673;
    font-weight: bold;
    margin: 20px 0;

    font-family: 'Namdhinggo', serif;

    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* DESKRIPSI */
.leader-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* VISI MISI */
.visi-misi-section {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 20px;
}

/* BOX */
.vm-box {
    margin-bottom: 80px;
    text-align: center;
}

/* JUDUL */
.vm-title {
    display: inline-block;
    background: linear-gradient(135deg, #2f5f6f, #3c8c9e);
    color: #f1c40f;
    padding: 12px 60px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 2px;

    font-family: 'Namdhinggo', serif;
    font-size: 28px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* CARD */
.vm-card {
    background: #fff;
    padding: 60px 50px;
    border-radius: 20px;

    border: 4px solid #f2c94c;

    /* EFFECT */
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.15),
        0 0 25px rgba(79,163,184,0.15);

    transition: 0.4s;
}

/* HOVER CARD */
.vm-card:hover {
    transform: translateY(-10px) scale(1.01);
}

/* VISI */
.vm-card p {
    font-size: 20px;
    line-height: 1.8;
    font-family: 'Namdhinggo', serif;
}

/* MISI */
.vm-card ol {
    text-align: left;
    padding-left: 20px;
    font-family: 'Namdhinggo', serif;
}

.vm-card ol li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* input profil */
.card-modern {
    border: none;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.input-modern {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 10px;
}

.btn-modern {
    background-color: #1abc9c;
    color: white;
    border-radius: 10px;
    padding: 8px 20px;
}

.btn-modern:hover {
    background-color: #16a085;
}

.profile-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #1abc9c;
}

/* VISI MISI */
.visimisi-box {
    background: #fff7e6;
    padding: 20px;
    border-left: 5px solid #ffc107;
    border-radius: 12px;
}

.visimisi-box h5 {
    font-weight: bold;
    color: #333;
}

.nav-link.active {
    color: #1c2b5a !important;
    font-weight: 700;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: #1c2b5a;
    border-radius: 10px;
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {

    .leader-section {
        padding: 60px 15px;
    }

    .leader-rectangle {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .leader-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .leader-photo img {
        width: 180px;
        max-width: 100%;
    }

    .leader-title {
        font-size: 20px;
        line-height: 1.5;
    }

    .leader-name {
        font-size: 28px;
        line-height: 1.4;
        margin: 10px 0;
        word-break: break-word;
    }

    .leader-desc {
        font-size: 14px;
        line-height: 1.7;
    }

    /* VISI MISI */
    .visi-misi-section {
        margin: 70px auto;
    }

    .vm-title {
        font-size: 22px;
        padding: 10px 35px;
    }

    .vm-card {
        padding: 35px 20px;
    }

    .vm-card p {
        font-size: 16px;
    }

    .vm-card ol li {
        font-size: 15px;
        line-height: 1.6;
    }
}