    /*
     * ===================================================================
     * GLOBAL & BASE STYLES
     * ===================================================================
     */
    * { box-sizing: border-box; scroll-behavior: smooth; margin: 0; padding: 0; }
    body {
      font-family: 'Outfit', sans-serif;
      background: #fdfdfd;
      color: #123524;
      overflow-x: hidden;
      padding-top: 85px;
    }
    

/* =====================
   OVERLAY
===================== */

     * ===================================================================
     * STYLE SECTION TITLE WITH UNDERLINE
     * ===================================================================
     *
    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.4rem);
      font-weight: 800;
      color: #123524;
      text-align: center;
      margin-bottom: 50px;
      position: relative;
    }
    
    .section-title::after {
      content: "";
      width: 80px;
      height: 4px;
      background: #3E7B27;
      display: block;
      margin: 14px auto 0;
      border-radius: 4px;
      margin-bottom: 50px;
    }

    /*
    ===================================================
    SAMBUTAN KETUA & WAKIL - CLEAN PROFESSIONAL VERSION
    ===================================================
    */
    
    .sambutan-section {
      scroll-margin-top: 90px;
      padding: 90px 7%;
      background: #EFE3C2;
      display: flex;
      flex-direction: column;
      gap: 70px;
    }
    
    /* ===== TITLE ===== */
    .sambutan-title {
      font-size: clamp(2rem, 5vw, 38px);
      font-weight: 800;
      color: #123524;
      text-align: center;
      position: relative;
    }
    
    .sambutan-title::after {
      content: "";
      width: 85px;
      height: 4px;
      background: #3E7B27;
      display: block;
      margin: 14px auto 0;
      border-radius: 3px;
    }
    
    /* ===== CARD WRAPPER ===== */
    .sambutan-item {
      display: flex;
      align-items: center;
      gap: 50px;
      background: #ffffff;
      padding: 45px;
      border-radius: 24px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
      max-width: 1200px;
      margin: auto;
      transition: 0.3s ease;
    }
    
    .sambutan-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }
    
    /* ===== POSISI LEFT / RIGHT ===== */
    .sambutan-left {
      flex-direction: row;
    }
    
    .sambutan-right {
      flex-direction: row-reverse;
    }
    
    /* ===== FOTO ===== */
    .sambutan-photo img {
      width: 320px;
      height: 400px;
      object-fit: cover;
      border-radius: 18px;
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
      transition: 0.3s ease;
    }
    
    .sambutan-photo img:hover {
      transform: scale(1.03);
    }
    
    /* ===== TEKS ===== */
    .sambutan-text {
      flex: 1;
    }
    
    .sambutan-text h3 {
      font-size: clamp(1.5rem, 3vw, 28px);
      font-weight: 700;
      margin-bottom: 8px;
      color: #123524;
    }
    
    .sambutan-text h5 {
      font-size: clamp(1rem, 2vw, 19px);
      font-weight: 600;
      color: #3E7B27;
      margin-bottom: 20px;
    }
    
    .sambutan-text p {
      font-size: clamp(0.95rem, 1.5vw, 17px);
      line-height: 1.8;
      color: #444;
      text-align: justify;
    }
    
    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
      .sambutan-item {
        gap: 35px;
        padding: 35px;
      }
    
      .sambutan-photo img {
        width: 280px;
        height: 350px;
      }
    }
    
    @media (max-width: 768px) {
      .sambutan-item {
        flex-direction: column !important;
        text-align: center;
        padding: 30px 20px;
      }
    
      .sambutan-photo img {
        width: 100%;
        max-width: 300px;
        height: 350px;
      }
    
      .sambutan-text p {
        text-align: center;
      }
    }
    
    @media (max-width: 480px) {
      .sambutan-item {
        padding: 25px 15px;
      }
    
      .sambutan-photo img {
        height: 300px;
      }
    }
    

    /*
     * =======================================================
     * PROFIL SECTION
     * =======================================================
     */
    .profile-section {
        scroll-margin-top: 90px;
        padding: 80px 0; background: linear-gradient(135deg, #F9F5E7, #E8F3D6);
    }
    .profile-wrapper {
        display: flex; justify-content: center; gap: 60px; align-items: center;
        width: 85%; margin: auto;
        max-width: 1200px;
    }
    .profile-slideshow {
        width: 55%; height: 420px; border-radius: 25px;
        overflow: hidden; position: relative;
        box-shadow: 0px 12px 25px rgba(0,0,0,0.15); background: #fff;
    }
    .profile-slides {
        display: flex; width: 100%; height: 100%;
        transition: transform 0.5s ease;
    }
    .slide-item {
        min-width: 100%; height: 100%; transition: 1s ease-in-out;
    }
    .slide-item img {
        width: 100%; height: 100%; object-fit: cover;
    }
    /* Dots */
    .dots-container {
        position: absolute; bottom: 12px; width: 100%; text-align: center;
    }
    .dot {
        display: inline-block; width: 12px; height: 12px; margin: 4px;
        border-radius: 50%; background: #ddd; transition: 0.3s; cursor: pointer;
    }
    .dot.active {
        background: #3E7B27; transform: scale(1.3);
    }
    /* ===== TEXT PROFIL ===== */
    .profile-text {
        width: 42%;
    }
    .profile-text h2 {
        font-size: clamp(1.5rem, 3vw, 32px); font-weight: 800; color: #123524; margin-bottom: 8px;
    }
    .profile-text h3 {
        font-size: clamp(1.1rem, 2vw, 22px); font-weight: 600; color: #3E7B27; margin-bottom: 20px;
    }
    .profile-text p {
        font-size: clamp(0.9rem, 1.5vw, 17px); line-height: 1.8; text-align: justify; margin-bottom: 25px;
    }
    /* CTA BUTTON */
    .profile-cta {
        display: inline-block; padding: 14px 30px; background: #3E7B27;
        color: #fff; border-radius: 12px; font-weight: 700;
        text-decoration: none; transition: .3s;
        box-shadow: 0px 5px 15px rgba(62, 123, 39, 0.4);
    }
    .profile-cta:hover {
        background: #85A947; color: #123524; transform: translateY(-4px);
    }
    @media (max-width: 900px) {
        .profile-wrapper {
            flex-direction: column; width: 90%;
            gap: 40px;
        }
        .profile-slideshow, .profile-text {
            width: 100%;
        }
        .profile-slideshow {
            height: 350px;
        }
    }

    @media (max-width: 480px) {
        .profile-section {
            padding: 60px 0;
        }
        .profile-slideshow {
            height: 250px;
        }
        .profile-cta {
            padding: 12px 25px;
            font-size: 0.9rem;
        }
    }

   /*
 * =======================================================
 * TRILOGI SECTION - IMPROVED CENTER ALIGNMENT
 * =======================================================
 */
.trilogy-section {
    scroll-margin-top: 80px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff, #f0f8f0);
    display: flex;
    justify-content: center;
    align-items: center;
}

.trilogy-section .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.motto-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.motto-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.motto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.motto-card img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    object-fit: contain;
}

.motto-card h2 {
    font-size: 1.5rem;
    color: #123524;
    margin-bottom: 15px;
    font-weight: 700;
}

.motto-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Tablet */
@media (max-width: 1024px) {
    .motto-row {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .motto-card img {
        width: 180px;
        height: 180px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .motto-row {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 25px;
    }
    
    .motto-card {
        padding: 25px 20px;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .motto-card img {
        width: 160px;
        height: 160px;
    }
    
    .motto-card h2 {
        font-size: 1.4rem;
    }
    
    .motto-card p {
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .trilogy-section {
        padding: 60px 15px;
    }
    
    .motto-card {
        padding: 20px 15px;
        max-width: 100%;
    }
    
    .motto-card img {
        width: 140px;
        height: 140px;
    }
    
    .motto-card h2 {
        font-size: 1.3rem;
    }
    
    .motto-card p {
        font-size: 0.85rem;
    }
}

    /*
     * =======================================================
     * GALLERY SECTION
     * =======================================================
     */
    .gallery-section {
        scroll-margin-top: 90px;
        padding: 60px 20px; 
        background: linear-gradient(135deg, #ffffff, #e8ffe8);
        text-align: center;
    }
    /* ====== GRID ====== */
    .gallery-grid {
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px; 
        max-width: 1200px; 
        margin: auto;
        padding: 0 10px;
    }
    /* ====== ITEM ====== */
    .gallery-item {
        width: 100%; 
        border-radius: 16px; 
        overflow: hidden; 
        position: relative;
        box-shadow: 0 6px 18px rgba(0,0,0,0.12); 
        transition: 0.3s ease;
        aspect-ratio: 4/3;
    }
    .gallery-item img {
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
        cursor: pointer;
        transition: 0.3s ease;
    }
    /* Hover efek lembut */
    .gallery-item:hover img {
        transform: scale(1.08); 
        filter: brightness(0.85);
    }
    /* ====== LIGHTBOX ====== */
    .lightbox {
        position: fixed; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%;
        background: rgba(0,0,0,0.9); 
        display: flex; 
        align-items: center;
        justify-content: center; 
        visibility: hidden; 
        opacity: 0;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 9999;
        padding: 20px;
    }
    .lightbox.show {
        visibility: visible; 
        opacity: 1;
    }
    .lightbox img {
        max-width: 100%; 
        max-height: 100%; 
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.25s ease;
        object-fit: contain;
    }
    @keyframes zoomIn {
        from { transform: scale(0.7); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }

    @media (max-width: 768px) {
        .gallery-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
    }

    @media (max-width: 480px) {
        .gallery-section {
            padding: 40px 15px;
        }
        .gallery-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
    }

    /*
     * =======================================================
     * TESTIMONI SECTION - IMPROVED
     * =======================================================
     */
    .testimony-section {
        scroll-margin-top: 90px;
        padding: 80px 20px;
        background: linear-gradient(135deg, #e0f7e9, #ffffff);
        text-align: center;
    }

    /* Slider Container */
    .slider-container {
        max-width: 900px;
        margin: auto;
        overflow: hidden;
        position: relative;
        height: 250px;
    }

    /* Slider Flex */
    #testimoni-slider {
        display: flex;
        transition: transform 0.6s ease;
        height: 100%;
    }

    /* Card Testimoni */
    .testimonial-card {
        min-width: 100%;
        background: rgba(255, 255, 255, 0.95);
        padding: 40px 30px;
        border-radius: 20px;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
        border: 1px solid #d6f5d6;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 35px rgba(0,0,0,0.15);
    }

    .testimonial-card p {
        font-size: clamp(1rem, 2vw, 1.3rem);
        font-style: italic;
        line-height: 1.6;
        color: #333;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .testimonial-card h4 {
        font-size: clamp(0.9rem, 1.5vw, 1.1rem);
        font-weight: 700;
        color: #2f6b2f;
        margin-top: auto;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .slider-container {
            height: 300px;
        }
        .testimonial-card { 
            padding: 30px 20px; 
        }
    }

    @media (max-width: 480px) {
        .testimony-section {
            padding: 60px 15px;
        }
        .testimonial-card { 
            padding: 25px 15px; 
        }
        .slider-container {
            margin: 0 10px;
            height: 280px;
        }
    }

