:root {
    --primary-dark: #0a3528;
    --primary-main: #1a5c48;
    --primary-light: #2d7d65;
    --primary-lightest: #e8f5f0;
    --secondary-gold: #c5a047;
    --secondary-gold-light: #e8d9b0;
    --neutral-900: #111827;
    --neutral-800: #1f2937;
    --neutral-700: #374151;
    --neutral-600: #4b5563;
    --neutral-500: #6b7280;
    --neutral-300: #d1d5db;
    --neutral-100: #f9fafb;
    --white: #ffffff;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --box-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--neutral-800);
    background-color: var(--neutral-100);
    line-height: 1.6;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-dark);
}

/* ===== Header ===== */
.top-header {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-header a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.top-header a:hover {
    color: var(--white);
}

.main-header {
    background-color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--box-shadow);
}

.logo-text h1 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-dark);
}

.logo-text p {
    margin: 0.25rem 0 0 0;
    font-size: 0.95rem;
    color: var(--neutral-600);
    font-weight: 400;
}

/* ===== IKATANI Layout ===== */
.ikatani-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
}

.ikatani-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.ikatani-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ikatani-right-row {
    flex: 1;
}

.ikatani-right-box {
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--neutral-300);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ikatani-left,
.ikatani-right {
    min-width: 0;
}


/* ===== Slider ===== */
.ikatani-slider-row {
    width: 100%;
}

.ikatani-slider {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--neutral-300);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    height: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    height: auto;
}

.ikatani-slider-container {
    height: calc(100% - 60px);
    position: relative;
}

.ikatani-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ikatani-slide.active {
    opacity: 1;
}

.ikatani-slide-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ikatani-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 1;
}

.ikatani-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(10, 47, 35, 0.55) 70%, rgba(10, 47, 35, 0.92) 100%);
    pointer-events: none;
    z-index: 1;
}

.ikatani-slide-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 22px 26px 64px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--white);
}

.ikatani-slide-tag {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.92);
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.ikatani-slide-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.35rem, 2.4vw, 2.35rem);
    line-height: 1.14;
    margin: 0;
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}

.ikatani-slide-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ikatani-slide-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
}

.ikatani-slider-controls {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.ikatani-slider-prev,
.ikatani-slider-next {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: var(--primary-main);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    transition: var(--transition);
}

.ikatani-slider-prev:hover,
.ikatani-slider-next:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.ikatani-slider-dots {
    display: flex;
    gap: 10px;
}

.ikatani-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: var(--transition);
}

.ikatani-slider-dot.active {
    background: var(--secondary-gold);
    border-color: rgba(214, 178, 94, 0.55);
    transform: scale(1.15);
}

/* ===== News Grid ===== */
/* ===== News Grid ===== */
.ikatani-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.ikatani-news-card {
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--neutral-300);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.ikatani-news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-light);
}

.ikatani-news-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.ikatani-news-thumb {
    height: 140px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
}

.ikatani-news-thumb.n1 {
    background: linear-gradient(135deg, #0d3f2e, #1b7a56);
}

.ikatani-news-thumb.n2 {
    background: linear-gradient(135deg, #124e39, #1e8c63);
}

.ikatani-news-thumb.n3 {
    background: linear-gradient(135deg, #146145, #2d9d6f);
}

.ikatani-news-body {
    padding: 1.25rem;
}

.ikatani-news-tag {
    display: inline-block;
    background: rgba(10, 47, 35, 0.1);
    color: var(--primary-main);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(10, 47, 35, 0.2);
}

.ikatani-news-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--neutral-800);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 66px;
}

.ikatani-news-meta {
    font-size: 0.85rem;
    color: var(--neutral-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==============================
   IKATANI NEWS SLIDER - STABLE
============================== */

.ikatani-news-row {
    width: 100%;
    position: relative;
}

.ikatani-news-slider {
    position: relative;
    width: 100%;
    min-width: 0;
    /* penting */
}

/* TRACK */
.ikatani-news-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 8px;

    /* prevent layout breaking */
    min-width: 0;
}

/* Hide scrollbar */
.ikatani-news-track::-webkit-scrollbar {
    display: none;
}

.ikatani-news-track {
    scrollbar-width: none;
}

/* CARD */
.ikatani-news-card {
    flex: 0 0 calc(33.333% - 0.7rem);
    min-width: 0;
    /* VERY IMPORTANT */
}

/* Tablet */
@media (max-width: 992px) {
    .ikatani-news-card {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .ikatani-news-nav {
        display: none;
    }

    @media (max-width: 992px) {

    .ikatani-layout2 {
        grid-template-columns: 1fr; /* stack */
    }

}
}

/* Mobile */
@media (max-width: 576px) {
    .ikatani-news-card {
        flex: 0 0 85%;
    }
}

/* NAV BUTTON */
.ikatani-news-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 5;
}

.ikatani-news-nav.prev {
    left: -10px;
}

.ikatani-news-nav.next {
    right: -10px;
}

/* =====================================
   RESPONSIVE IKATANI LAYOUT
===================================== */

/* Tablet */
@media (max-width: 992px) {

    .ikatani-layout {
        grid-template-columns: 1.5fr 1fr;
        padding: 1.25rem;
    }

}

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

    .ikatani-layout {
        grid-template-columns: 1fr;
        /* stack */
        padding: 1rem;
    }

    .ikatani-left,
    .ikatani-right {
        width: 100%;
    }

    .ikatani-right {
        order: 2;
        /* supaya sidebar turun ke bawah */
    }

}

/* Tablet */
@media (max-width: 992px) {
    .ikatani-slider-row {
        min-height: 300px;
    }
}

/* ==========================
   MOBILE FIX
========================== */

@media (max-width: 768px) {

    .ikatani-slider {
        border-radius: 14px;
        aspect-ratio: 4/3;
    }

    .ikatani-slide-content {
        padding: 16px 16px 55px;
        gap: 8px;
    }

    .ikatani-slide-title {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .ikatani-slide-meta span {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }

    .ikatani-slide-tag {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .ikatani-slider-prev,
    .ikatani-slider-next {
        width: 32px;
        height: 32px;
    }

}

/* ======================================
   MOBILE NEWS STYLE LIKE PORTAL
====================================== */

@media (max-width: 768px) {

    .ikatani-news-track {
        gap: 0.75rem;
    }


    .ikatani-news-tag {
        font-size: 0.6rem;
        padding: 3px 6px;
        border-radius: 999px;
        margin-bottom: 0.4rem;
        letter-spacing: 0.3px;
        font-weight: 200;
    }

    .ikatani-news-card {
        flex: 0 0 45%;
    }

    .ikatani-news-thumb {
        height: 120px;
        border-radius: 10px 10px 0 0;
    }

    .ikatani-news-body {
        padding: 0.8rem;
    }

    .ikatani-news-title {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }

    .ikatani-news-meta {
        font-size: 0.75rem;
    }

    .ikatani-news-nav {
        display: none;
        /* swipe saja */
    }

        .ikatani-layout {
        background: transparent;
        padding: 0.8rem;
    }

    .ikatani-news-card {
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        border: none;
    }

}


@media (max-width: 480px) {

    .ikatani-slider {
        aspect-ratio: 4 / 3;
        /* sedikit lebih tinggi biar teks nyaman */
    }

    .ikatani-slide-title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .ikatani-slide-content {
        padding: 14px 14px 50px;
    }

}

/* Tablet */
@media (max-width: 992px) {
    .ikatani-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .ikatani-news-grid {
        grid-template-columns: 1fr;
    }
}

.ikatani-layout,
.ikatani-left,
.ikatani-right {
    min-width: 0;
}




/* ===== Box Components ===== */
.ikatani-box-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--neutral-300);
    background: var(--neutral-100);
}

.ikatani-box-label {
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(10, 47, 35, 0.1);
    border: 1px solid rgba(10, 47, 35, 0.2);
    color: var(--primary-main);
    letter-spacing: 0.5px;
}

.ikatani-box-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ikatani-box-title {
    font-weight: 800;
    line-height: 1.3;
    font-size: 1.1rem;
    color: var(--neutral-800);
    margin-bottom: 0.5rem;
}

.ikatani-box-subtitle {
    color: var(--neutral-700);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.ikatani-box-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 800;
    border-radius: 8px;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-main), var(--primary-light));
    color: var(--white);
    border: 1px solid var(--primary-main);
    box-shadow: 0 4px 12px rgba(15, 74, 53, 0.2);
    font-size: 0.95rem;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.ikatani-box-btn:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-main));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 74, 53, 0.3);
    color: var(--white);
}

.ikatani-instagram-preview {
    height: 120px;
    border-radius: 8px;
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    border: 1px solid #e0e0e0;
}

.ikatani-instagram-text {
    color: var(--neutral-700);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
}

.ikatani-instagram-btn {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    border: 1px solid #E1306C;
}

.ikatani-instagram-btn:hover {
    background: linear-gradient(45deg, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040);
}

/* =====================================
   IKATANI LAYOUT 2 (AGENDA + LATEST)
===================================== */

.ikatani-layout2 {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: start;
}


/* =====================================
   AGENDA 2 - IKATANI LAYOUT VARIANT2
===================================== */
.ikatani-layout2 {
    display: grid;
    grid-template-columns: 1fr 2fr; /* kiri kecil, kanan besar */
    gap: 2rem;
    align-items: start;
}

/* =====================================
   AGENDA 2 - ISOLATED WIDGET
===================================== */

.agenda2-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.agenda2-header {
    margin-bottom: 1rem;
}

.agenda2-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
}

.agenda2-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Item */
.agenda2-item {
    display: flex;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--neutral-200);
}

.agenda2-item:last-child {
    border-bottom: none;
}

/* Icon */
.agenda2-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(10,47,35,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-main);
    font-size: 1rem;
}

/* Content */
.agenda2-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.agenda2-item-title a {
    text-decoration: none;
    color: var(--primary-dark);
}

.agenda2-item-title a:hover {
    color: var(--primary-main);
}

.agenda2-meta {
    font-size: 0.75rem;
    color: var(--neutral-600);
}

/* Button */
.agenda2-button {
    margin-top: 1rem;
    display: block;
    text-align: center;
    padding: 0.6rem;
    border-radius: 10px;
    border: 1px solid var(--primary-main);
    color: var(--primary-main);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.agenda2-button:hover {
    background: var(--primary-main);
    color: #fff;
}

/* =====================================
   LATEST NEWS 2 - ISOLATED COMPONENT
===================================== */

.latest-news2 {
    width: 100%;
    min-width: 0;
}

.latest-news2-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.latest-news2-col {
    width: 100%;
}



/* ================= TITLE ================= */

.latest-news2-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    position: relative;
    padding-left: 16px;
    color: var(--neutral-900);
}

.latest-news2-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 24px;
    background: var(--primary-main);
    border-radius: 4px;
}

/* ================= CARD ================= */

.latest-news2-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.latest-news2-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* ================= IMAGE ================= */

.latest-news2-img {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* ================= BADGE ================= */

.latest-news2-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--secondary-gold);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

/* ================= BODY ================= */

.latest-news2-body {
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ================= TITLE CARD ================= */

.latest-news2-title-card {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.latest-news2-title-card a {
    text-decoration: none;
    color: var(--primary-dark);
    transition: 0.2s ease;
}

.latest-news2-title-card a:hover {
    color: var(--primary-main);
}

/* ================= TEXT ================= */

.latest-news2-text {
    font-size: 0.85rem;
    color: var(--neutral-600);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* ================= META ================= */

.latest-news2-meta {
    margin-top: auto;
    font-size: 0.75rem;
    color: var(--neutral-500);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {

    .latest-news2-img {
        height: 160px;
    }


    .ikatani-layout2 {
        grid-template-columns: 1fr;
    }

    .latest-news2-row {
        grid-template-columns: 1fr;
    }

}

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

    .latest-news2-title {
        font-size: 1.3rem;
    }

    .latest-news2-img {
        height: 140px;
    }

    .latest-news2-title-card {
        font-size: 0.95rem;
    }

    .latest-news2-text {
        display: none; /* lebih portal style */
    }

}


/* Display */
.display-font {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

/* ===== Header ===== */
.top-header {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-header a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.top-header a:hover {
    color: var(--white);
}

.main-header {
    background-color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-main), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--box-shadow);
}

.logo-text h1 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-dark);
}

.logo-text p {
    margin: 0.25rem 0 0 0;
    font-size: 0.95rem;
    color: var(--neutral-600);
    font-weight: 400;
}

/* ===== Navigation ===== */
.navbar-main {
    background-color: var(--primary-dark);
    padding: 0;
}

.navbar-main .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.navbar-main .navbar-nav .nav-link:hover,
.navbar-main .navbar-nav .nav-link.active {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
}

.navbar-main .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background-color: var(--secondary-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-main .navbar-nav .nav-link:hover::after,
.navbar-main .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-menu {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    color: var(--neutral-700);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--primary-lightest);
    color: var(--primary-main);
}

.nav-cta {
    background-color: var(--secondary-gold);
    color: var(--primary-dark) !important;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.75rem 1.5rem !important;
    transition: var(--transition);
}

.nav-cta:hover {
    background-color: var(--secondary-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 71, 0.2);
}

/* ===== Hero Section ===== */
.hero-section {
    padding: 4rem 0 3rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.7)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0 V100 Q500,50 1000,100 V0Z" fill="%23e8f5f0"/></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 150px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-700);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-hover);
    color: var(--white);
    height: 100%;
}

.hero-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.hero-card-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-card-text {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}


/* ===== Cards ===== */
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-gold);
    border-radius: 2px;
}

.card-elegant {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.card-elegant-register {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.card-elegant:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.card-header-elegant {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.25rem 1.5rem;
}

.card-header-elegant .title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--primary-dark);
}

.card-body-elegant {
    padding: 1.5rem;
}

.news-card {
    height: 100%;
}

.news-card-img {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.news-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--secondary-gold);
    color: var(--primary-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.news-card-title a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

.news-card-title a:hover {
    color: var(--primary-main);
}

.news-card-meta {
    font-size: 0.85rem;
    color: var(--neutral-600);
    display: flex;
    gap: 1rem;
}

/* ===== Buttons ===== */
.btn-primary-elegant {
    background-color: var(--primary-main);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary-elegant:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 92, 72, 0.2);
}

.btn-secondary-elegant {
    background-color: transparent;
    color: var(--primary-main);
    border: 2px solid var(--primary-main);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary-elegant:hover {
    background-color: var(--primary-main);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--secondary-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-gold:hover {
    background-color: var(--secondary-gold-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 71, 0.2);
}

/* ===== Sidebar Widgets ===== */
.widget {
    margin-bottom: 2rem;
}

.list-item-elegant {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.list-item-elegant:last-child {
    border-bottom: none;
}

.list-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-lightest);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-main);
    margin-right: 1rem;
    flex-shrink: 0;
}

.list-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.list-content h5 a {
    color: var(--primary-dark);
    text-decoration: none;
}

.list-content h5 a:hover {
    color: var(--primary-main);
}

.list-meta {
    font-size: 0.8rem;
    color: var(--neutral-600);
}

/* ===== Carousel ===== */
.carousel-elegant {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.carousel-elegant .carousel-item {
    height: 350px;
}

.carousel-elegant .carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem;
    text-align: left;
    bottom: 0;
    left: 0;
    right: 0;
}

.carousel-elegant .carousel-caption h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.carousel-elegant .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

/* ===== Footer ===== */
.main-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.footer-logo-text h4 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--white);
}

.footer-logo-text p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0.25rem 0 0 0;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact-icon {
    width: 20px;
    margin-right: 0.75rem;
    color: var(--secondary-gold);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }

    .navbar-main .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }
}

/* ===== Utilities ===== */
.text-gold {
    color: var(--secondary-gold);
}

.bg-lightest-primary {
    background-color: var(--primary-lightest);
}

.border-radius-lg {
    border-radius: var(--border-radius);
}

.transition-all {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* HERO */
.post-hero {
    position: relative;
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
}

.post-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

.post-hero-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: white;
    z-index: 2;
}

.post-hero-content h1 {
    font-weight: 700;
}

/* CONTENT */
.post-content {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

.post-content p {
    line-height: 1.9;
    color: #444;
}

.post-content h3 {
    margin-top: 30px;
    font-weight: 700;
    color: #145c3f;
}

.post-meta {
    font-size: 0.9rem;
    color: #ddd;
}

.btn-back {
    border-radius: 50px;
}

@media (max-width: 768px) {
    .post-content {
        padding: 30px;
        margin-top: -40px;
    }

    .post-hero {
        height: 300px;
    }
}

/* ===== CLEAN HERO ===== */
.post-hero-clean {
    position: relative;
    height: 380px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.15));
}

.post-hero-inner {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 2;
    color: white;
}

.post-title-clean {
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 10px;
    line-height: 1.2;
}

.post-meta-clean {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== CLEAN CONTENT ===== */
.post-title-outside {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

.post-meta-clean {
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.post-hero-image {
    height: 380px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--box-shadow);
}

@media (max-width: 768px) {
    .post-title-outside {
        font-size: 1.6rem;
    }

    .post-hero-image {
        height: 240px;
    }
}

/* ===== EXCERPT CARD CLEAN ===== */
.post-excerpt-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 30px 35px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.post-excerpt-card::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    width: 5px;
    height: 50%;
    background: var(--secondary-gold);
    border-radius: 4px;
}

.post-excerpt-header {
    margin-bottom: 12px;
}

.post-excerpt-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary-gold);
}

.post-excerpt-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--neutral-700);
}


/* ===== HERO MODERN ===== */
.about-hero-modern {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
    padding: 120px 0 100px;
    color: white;
}

.about-title-modern {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
}

.about-subtitle {
    margin-top: 15px;
    opacity: 0.85;
    font-size: 1rem;
    color: white;
}

/* ===== WRAPPER ===== */
.about-wrapper {
    background: linear-gradient(to bottom, #ffffff, var(--neutral-100));
}

/* ===== HISTORY BLOCK ===== */
.history-block {
    display: flex;
    position: relative;
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--box-shadow-hover);
}

.history-left-line {
    width: 6px;
    background: linear-gradient(to bottom, var(--primary-main), var(--secondary-gold));
    border-radius: 4px;
    margin-right: 30px;
}

.history-content {
    flex: 1;
}

.section-heading-modern {
    font-size: 1.9rem;
    font-weight: 700;
}

.section-divider-modern {
    width: 70px;
    height: 4px;
    background: var(--secondary-gold);
    margin: 15px 0 30px;
    border-radius: 3px;
}

.history-text p {
    line-height: 1.9;
    font-size: 1.05rem;
}

/* ===== VISI MISI CARD ===== */
.vision-card,
.mission-card {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-8px);
}

.vision-card {
    border-bottom: 5px solid var(--primary-main);
}

.mission-card {
    border-bottom: 5px solid var(--secondary-gold);
}

.mini-divider-modern {
    width: 45px;
    height: 3px;
    background: var(--primary-main);
    margin: 15px 0 25px;
}

.mini-divider-modern.gold {
    background: var(--secondary-gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-title-modern {
        font-size: 2rem;
    }

    .history-block {
        flex-direction: column;
        padding: 30px;
    }

    .history-left-line {
        height: 6px;
        width: 60px;
        margin-bottom: 20px;
    }

    .vision-card,
    .mission-card {
        padding: 30px;
    }
}

/* HERO */
.org-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
    padding: 110px 0 90px;
    color: white;
}

.org-title {
    font-size: 2.6rem;
    font-weight: 700;
}

.org-divider {
    width: 80px;
    height: 4px;
    background: var(--secondary-gold);
    margin: 20px auto 0;
    border-radius: 3px;
}

/* WRAPPER */
.org-wrapper {
    background: var(--neutral-100);
}

/* CARD */
.org-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.org-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

.org-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-lightest);
    margin-bottom: 20px;
}

.org-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.org-role {
    font-size: 0.9rem;
    color: var(--neutral-600);
}

/* HERO */
.org-hero-modern {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
    padding: 110px 0 90px;
    color: white;
}

.org-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
}

.org-divider-modern {
    width: 70px;
    height: 4px;
    background: var(--secondary-gold);
    margin: 20px auto 0;
    border-radius: 3px;
}

/* WRAPPER */
.org-wrapper-modern {
    background: linear-gradient(to bottom, #ffffff, var(--neutral-100));
}

/* AUTO STRUCTURE STYLE */
.org-dynamic-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Jabatan (h3 dari CKEditor) */
.org-dynamic-content h3 {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    font-weight: 700;
    text-align: center;
    margin: 0;
    border-top: 5px solid var(--primary-main);
    transition: var(--transition);
}

/* Hover effect */
.org-dynamic-content h3:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow-hover);
}

/* Nama (p setelah h3) */
.org-dynamic-content h3+p {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--neutral-700);
}

/* Responsive */
@media (max-width: 768px) {
    .org-title-modern {
        font-size: 2rem;
    }
}

/* HERO ORGANISASI*/
/* WRAPPER */
.org-wrapper-pro {
    background: var(--neutral-100);
}

/* ================= LEADER ================= */

.org-leader-highlight {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.leader-photo img {
    width: 260px;
    border-radius: 20px;
    object-fit: cover;
}

.leader-badge {
    background: var(--secondary-gold);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
}

.leader-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.leader-desc {
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ================= CARD ================= */

.org-card-clean {
    background: white;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: 0.25s ease;
}

.org-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.org-card-clean h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.org-card-clean p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-600);
}

.org-section-title h3 {
    font-weight: 700;
    color: var(--primary-dark);
}

.org-section-divider {
    width: 60px;
    height: 3px;
    background: var(--secondary-gold);
    margin: 12px auto 0;
    border-radius: 3px;
}

/* Agenda */
.agenda-section {
    margin-top: 60px;
}

.agenda-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.25s ease;
    height: 100%;
}

.agenda-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.agenda-date {
    font-size: 0.9rem;
    color: var(--primary-main);
    font-weight: 600;
    margin-bottom: 10px;
}

.agenda-title {
    font-weight: 700;
    color: var(--primary-dark);
}

.agenda-location {
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.agenda-desc {
    font-size: 0.95rem;
    color: var(--neutral-700);
    line-height: 1.7;
}


/* ===============================
   CONTACT PAGE
================================= */
/* ===============================
   CONTACT CLEAN VERSION
================================= */

.contact-clean-section {
    padding: 90px 0;
    background: #ffffff;
}

/* TITLE */
.contact-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 40px;
    position: relative;
}

.contact-section-title::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-gold);
    border-radius: 2px;
}

/* ITEM */
.contact-clean-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-clean-item i {
    font-size: 1.2rem;
    color: var(--primary-main);
    margin-top: 6px;
}

/* LABEL */
.contact-clean-item span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neutral-500);
    margin-bottom: 6px;
}

/* TEXT */
.contact-clean-item p {
    margin: 0;
    font-weight: 500;
    color: var(--neutral-800);
    line-height: 1.6;
}

.contact-clean-item a {
    text-decoration: none;
    color: var(--primary-main);
}

.contact-clean-item a:hover {
    color: var(--primary-dark);
}

/* MAP */
.contact-clean-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.contact-clean-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-clean-map iframe {
        height: 320px;
    }
}

/* REGISTER ALUMNI WRAPPER */
/* ===============================
/* HERO */
/* Hero Section */
.register-hero-clean {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-main)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0 V100 Q500,50 1000,100 V0Z" fill="%23e8f5f0"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
}

.register-title-clean {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    color: white;
}

.register-subtitle-clean {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Card & Section */
.register-section-clean {
    margin-top: -50px;
    padding-bottom: 80px;
}

.register-card-clean {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Info List (Sisi Kiri) */
.benefit-list-clean {
    list-style: none;
    padding: 0;
}

.benefit-list-clean li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--dark-text);
    font-weight: 500;
}

.benefit-list-clean li i {
    width: 40px;
    height: 40px;
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Form Styling */
.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.form-control-clean {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control-clean:focus {
    border-color: var(--secondary-green);
    box-shadow: none;
    background-color: #fff;
}

/* Button */
/* Update Button - Agar Muncul & Jelas */
.btn-register-clean {
    background-color: var(--primary-main) !important;
    /* Gunakan hijau utama */
    color: var(--white) !important;
    /* Teks harus putih */
    padding: 16px;
    border-radius: var(--border-radius);
    font-weight: 700;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    width: 100%;
    box-shadow: 0 4px 15px rgba(26, 92, 72, 0.2);
}

.btn-register-clean:hover {
    background-color: var(--primary-dark) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

/* Tambahan: Pastikan icon di list juga pakai variabel Anda */
.benefit-list-clean li i {
    background: var(--primary-lightest);
    color: var(--primary-main);
    border-radius: 8px;
}

.form-control-clean:focus {
    border-color: var(--primary-main);
    box-shadow: 0 0 0 3px var(--primary-lightest);
}

/* Responsive */
/* Responsive */
@media (max-width: 991.98px) {
    .border-end {
        border-right: none !important;
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 30px;
        margin-bottom: 10px;
    }

    .register-title-clean {
        font-size: 2rem;
    }
}

/* ===== SUCCESS BOX CLEAN ===== */
.register-success-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 18px 20px;
    border-radius: 12px;
}

.success-icon {
    width: 40px;
    height: 40px;
    background: #16a34a;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* KTA - Kartu Tanda Anggota */

/* Footer */
/* ============================= */
/* FOOTER IMPROVEMENT */
/* ============================= */

.main-footer {
    background: #0f3d2e;
    /* hijau lebih solid */
    color: #ffffff;
    padding-top: 60px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* Contact Item */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-icon {
    font-size: 18px;
    color: #ffc107;
    /* warna icon lebih hidup */
    margin-top: 3px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: 0.3s;
    word-break: break-word;
}

.footer-contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 14px;
}


/* =========================
   DONASI PAGE
========================= */

.donasi-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
    padding: 70px 0;
    color: white;
}

.donasi-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
}

.donasi-subtitle {
    opacity: 0.85;
}

.donasi-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.section-heading {
    font-weight: 700;
    margin-bottom: 1rem;
}

.donasi-list {
    list-style: none;
    padding: 0;
}

.donasi-list li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    color: var(--neutral-700);
}

.donasi-list i {
    color: var(--primary-main);
}

.donasi-rekening-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* RIGHT SIDE */

.donasi-action {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.nominal-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.nominal-buttons button {
    border: 1px solid var(--primary-main);
    background: white;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.nominal-buttons button:hover {
    background: var(--primary-main);
    color: white;
}

.qris-placeholder {
    border: 2px dashed var(--primary-main);
    padding: 30px;
    border-radius: 12px;
    color: var(--primary-main);
}

.qris-placeholder i {
    font-size: 40px;
}

.btn-donasi {
    width: 100%;
    padding: 12px;
    background: var(--secondary-gold);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-donasi:hover {
    background: #b88a2d;
    color: white;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .donasi-wrapper {
        grid-template-columns: 1fr;
    }
}

/* =========================
   QRIS IMAGE
========================= */
/* QRIS Section */
.donasi-qris {
    text-align: center;
}

.qris-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.qris-image {
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: 0.3s ease;
    cursor: pointer;
}

.qris-image:hover {
    transform: scale(1.03);
}

.qris-hint {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #6c757d;
}


.qris-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qris-image {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: 0.3s ease;
    cursor: pointer;
}

.qris-image:hover {
    transform: scale(1.04);
}

/* =========================
   MODAL
========================= */

.qris-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}

.qris-modal-content {
    display: block;
    margin: 60px auto;
    max-width: 92%;
    max-height: 85vh;
    border-radius: 16px;
    animation: zoomIn 0.25s ease;
}

.qris-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 42px;
    cursor: pointer;
    transition: 0.2s;
}

.qris-close:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes zoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* HERO */
.prestasi-hero-detail {
    background-size: cover;
    background-position: center;
    position: relative;
}

.prestasi-hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.65),
        rgba(0,0,0,.75)
    );
}

/* Info Card */
.prestasi-info-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
}

/* Content */
.prestasi-content {
    font-size: 16px;
}

/* Hover Card */
.news-card {
    transition: all .3s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

/* Prestasi */
.prestasi-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    color: #212529;
}

.prestasi-meta {
    font-size: 14px;
    color: #6c757d;
}

.prestasi-category {
    display: inline-block;
    background: #f1f3f5;
    color: #198754;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
}

.news-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    color: #212529;
}

.news-meta {
    font-size: 14px;
    color: #6c757d;
}

.news-category {
    display: inline-block;
    background: #f1f3f5;
    color: #198754;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
}

.news-image {
    max-height: 450px;
    object-fit: cover;
}

.news-content {
    font-size: 17px;
    line-height: 1.8;
    color: #343a40;
}

/* Title */
.modern-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
    color: #111;
}

/* Category */
.modern-category {
    background: #198754;
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
}

/* Meta */
.modern-meta {
    font-size: 14px;
    color: #6c757d;
}

/* Image */
.modern-image {
    border-radius: 20px;
    max-height: 480px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

/* Content */
.modern-content {
    font-size: 18px;
    line-height: 1.9;
    color: #343a40;
}

/* Share */
.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #495057;
    transition: all .2s ease;
}

.share-btn:hover {
    background: #198754;
    color: white;
}

/* Dropdown */
.dropdown-item.active {
    background-color: #f1f3f5;
    color: #198754;
    font-weight: 600;
}

.nav-link.active {
    font-weight: 600;
}

/* Post */
/* ===============================
   NEWS DETAIL – PROFESSIONAL
================================= */

/* Back Link */
.news-back-link {
    font-size: 14px;
    color: #6c757d;
    text-decoration: none;
    transition: all .2s ease;
}

.news-back-link:hover {
    color: #198754;
}

/* Meta Section */
.news-meta-modern {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #6c757d;
}

/* Category Badge */
.news-category-modern {
    background: #198754;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* Date */
.news-date-modern {
    font-size: 14px;
    color: #6c757d;
}

/* Title */
.news-title-modern {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
    color: #212529;
}

/* Hero Image */
.news-hero-modern img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
}

/* Excerpt */
.news-excerpt-modern {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
    color: #495057;
    background: #f8f9fa;
    padding: 22px;
    border-radius: 16px;
}

/* Content */
.news-content-modern {
    font-size: 17px;
    line-height: 1.9;
    color: #343a40;
}

.news-content-modern p {
    margin-bottom: 1.4rem;
}

.news-content-modern h2,
.news-content-modern h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Share Button */
.share-modern {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #495057;
    transition: all .2s ease;
}

.share-modern:hover {
    background: #198754;
    color: white;
}

/* ===============================
   PROGRAM DETAIL (NEWS STYLE)
================================= */

.agenda-card-modern {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 18px;
    transition: all .2s ease;
}

.agenda-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
}

.agenda-date-modern {
    font-size: 13px;
    color: #6c757d;
}

.agenda-title-modern {
    font-weight: 700;
    color: #212529;
}

.agenda-location-modern {
    font-size: 14px;
    color: #495057;
}

.agenda-desc-modern {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}


/* ===============================
   CORPORATE GALLERY CARD
================================= */

.gallery-card-corporate {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: #f8f9fa;
    transition: all .3s ease;
}

.gallery-card-corporate img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-card-corporate:hover img {
    transform: scale(1.05);
}

.gallery-overlay-corporate {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.05));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity .3s ease;
}

.gallery-card-corporate:hover .gallery-overlay-corporate {
    opacity: 1;
}

.gallery-overlay-corporate h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-overlay-corporate small {
    color: rgba(255,255,255,.85);
}

/* ===============================
   CORPORATE GALLERY HEADER
================================= */

.gallery-header-corporate {
    background: #ffffff;
    padding-top: 80px;
    padding-bottom: 60px;
}

.gallery-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #198754;
    text-transform: uppercase;
}

.gallery-title-corporate {
    font-size: 44px;
    font-weight: 800;
    color: #212529;
    margin-bottom: 16px;
}

.gallery-subtitle-corporate {
    font-size: 16px;
    color: #6c757d;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.gallery-divider-corporate {
    width: 70px;
    height: 3px;
    background: #198754;
    margin: 30px auto 0;
    border-radius: 4px;
}
/* ===============================
   NAVBAR MAIN – SMOOTH CORPORATE
================================= */

.navbar-main {
    background: linear-gradient(135deg, #0e2c22, #134f3a);
    padding: 16px 0;
    transition: all .4s cubic-bezier(.4,0,.2,1);
}

.navbar-main .nav-link {
    position: relative;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    padding: 10px 16px;
    transition: color .3s ease;
}

/* Smooth underline animation */
.navbar-main .nav-link::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 16px;
    width: 0%;
    height: 2px;
    background: #ffffff;
    transition: width .3s ease;
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
    width: 40%;
}

.navbar-main .nav-link:hover {
    color: #ffffff;
}

.navbar-main .nav-link.active {
    color: #ffffff;
    font-weight: 600;
}

/* ===============================
   CUSTOM NAVBAR TOGGLER – BRAND
================================= */

.custom-toggler {
    border: none;
    background: transparent;
    padding: 6px;
}

.custom-toggler:focus {
    box-shadow: none;
}

/* Wrapper */
.toggler-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);

    transition: all .3s ease;
}

/* Icon */
.toggler-icon i {
    font-size: 24px;
    color: #ffffff;
    transition: all .3s ease;
}

/* Hover */
.custom-toggler:hover .toggler-icon {
    background: rgba(255,255,255,0.18);
    transform: scale(1.05);
}

/* Saat terbuka */
.custom-toggler[aria-expanded="true"] .toggler-icon {
    background: #198754;
    border-color: #198754;
}

.custom-toggler[aria-expanded="true"] .toggler-icon i {
    transform: rotate(90deg);
}

/* Logo */
.logo-icon {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 46px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

