/* ===== Recent News (Enhanced) ===== */
.recent-news {
    --rn-gap: 1.75rem;
    --rn-radius: 18px;
    --rn-accent: #ff9a1e;
    --rn-accent-grad: linear-gradient(135deg, #ffb347, #ff7a18 55%);
    padding: 70px 0 60px;
}

.recent-news-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.2rem;
}

.recent-news-grid {
    display: grid;
    gap: var(--rn-gap);
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.recent-news article {
    position: relative;
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: var(--rn-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 4px 18px -6px rgba(0, 0, 0, 0.08);
    transition: 0.55s cubic-bezier(0.19, 1, 0.22, 1);
    isolation: isolate;
}

.recent-news article::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(255, 154, 30, 0.08),
        rgba(255, 154, 30, 0)
    );
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
}

.recent-news article:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 42px -14px rgba(0, 0, 0, 0.25);
    border-color: #ffe2c3;
}

.recent-news article:hover::before {
    opacity: 1;
}

.recent-news .post-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f5f5f5;
}

@supports not (aspect-ratio: 16 / 10) {
    .recent-news .post-img {
        padding-top: 62.5%;
    }
    .recent-news .post-img img {
        position: absolute;
        inset: 0;
    }
}

.recent-news .post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.9s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(1.05);
}

.recent-news article:hover .post-img img {
    transform: scale(1.16) rotate(0.5deg);
    filter: saturate(1.12) contrast(1.05);
}

.recent-news .post-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0) 55%
    );
    opacity: 0.55;
    mix-blend-mode: multiply;
    pointer-events: none;
    transition: 0.5s;
}

.recent-news article:hover .post-img::after {
    opacity: 0.68;
}

.recent-news .post-category {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    font-size: 0.675rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 14px 5px;
    border-radius: 30px;
    background: var(--rn-accent-grad);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 14px -4px rgba(255, 122, 24, 0.55);
}

.recent-news .post-category i {
    font-size: 0.85rem;
    opacity: 0.9;
}

.recent-news .content-wrap {
    padding: 1.15rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.recent-news .title {
    margin: 0 0 0.65rem;
}

.recent-news .title a {
    color: #1c2733;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    display: inline-block;
    background: linear-gradient(currentColor 0 0) 0 100% / 0 2px no-repeat;
    transition: 0.5s;
}

.recent-news article:hover .title a {
    color: #ff7a18;
    background-size: 100% 2px;
}

.recent-news .excerpt {
    font-size: 0.82rem;
    line-height: 1.55;
    color: #4d5760;
    margin: 0 0 1rem;
    flex: 1;
}

.recent-news .meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.1rem;
    align-items: center;
    font-size: 0.68rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: #7a8592;
    margin-bottom: 0.9rem;
}

.recent-news .meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.recent-news .meta-row i {
    font-size: 0.85rem;
    color: #ff9a1e;
}

.recent-news .post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed #ece7e1;
    padding: 0.85rem 1.25rem;
    margin: 0 -1.25rem -1.35rem;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.6));
}

.recent-news .post-author {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #334252;
}

.recent-news .post-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow:
        0 0 0 2px #fff,
        0 0 0 4px #ffe8d3;
}

.recent-news .read-more-btn {
    --btn-bg: #fff4ec;
    border: 0;
    background: var(--btn-bg);
    color: #d85e00;
    padding: 0.55rem 0.95rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    position: relative;
    cursor: pointer;
    transition: 0.45s;
}

.recent-news .read-more-btn i {
    font-size: 0.85rem;
    transition: transform 0.45s;
}

.recent-news .read-more-btn:hover {
    background: var(--rn-accent-grad);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -8px rgba(255, 122, 24, 0.6);
}

.recent-news .read-more-btn:hover i {
    transform: translateX(4px);
}

.recent-news .no-posts {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px dashed #d9d9d9;
    padding: 3rem 1.5rem;
    border-radius: var(--rn-radius);
    color: #6b737c;
}

/* Reveal animation */
@keyframes rnFadeUp {
    0% {
        opacity: 0;
        transform: translateY(22px) scale(0.96);
    }
    60% {
        opacity: 1;
        transform: translateY(-2px) scale(1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.recent-news article {
    animation: rnFadeUp 0.85s cubic-bezier(0.19, 1, 0.22, 1) both;
}
.recent-news article:nth-child(1) {
    animation-delay: 0.05s;
}
.recent-news article:nth-child(2) {
    animation-delay: 0.12s;
}
.recent-news article:nth-child(3) {
    animation-delay: 0.18s;
}
.recent-news article:nth-child(4) {
    animation-delay: 0.24s;
}
.recent-news article:nth-child(5) {
    animation-delay: 0.3s;
}

/* Skeleton state */
.recent-news .skeleton {
    position: relative;
    overflow: hidden;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: rnShimmer 1.4s linear infinite;
    border-radius: 10px;
}
@keyframes rnShimmer {
    to {
        background-position: -200% 0;
    }
}
.recent-news .skeleton-text {
    height: 12px;
    margin: 6px 0;
    border-radius: 4px;
}
.recent-news .skeleton-text.short {
    width: 40%;
}
.recent-news .skeleton-text.mid {
    width: 65%;
}
.recent-news .skeleton-text.long {
    width: 90%;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .recent-news article {
        background: #162028;
        border-color: #1f2b35;
        box-shadow: 0 6px 26px -10px rgba(0, 0, 0, 0.55);
    }
    .recent-news article:hover {
        border-color: #3a4e5e;
    }
    .recent-news .title a {
        color: #f4f7fa;
    }
    .recent-news .excerpt {
        color: #b1c0cc;
    }
    .recent-news .post-footer {
        background: linear-gradient(to right, #18222b, #162028);
    }
    .recent-news .read-more-btn {
        --btn-bg: #243340;
        color: #ff9a1e;
    }
    .recent-news .read-more-btn:hover {
        box-shadow: 0 10px 28px -10px rgba(255, 122, 24, 0.7);
    }
    .recent-news .no-posts {
        background: #1b2731;
        border-color: #2e3c48;
        color: #95a4b0;
    }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .recent-news {
        padding: 55px 0 45px;
    }
    .recent-news .title a {
        font-size: 1rem;
    }
    .recent-news .excerpt {
        display: none;
    }
    .recent-news .post-footer {
        padding: 0.75rem 1rem;
        margin: 0 -1.15rem -1.15rem;
    }
}

/* Utility class if you need manual spacing after section */
.recent-news + .section-spacer {
    margin-top: 60px;
}

/* ===== End Recent News Enhancement ===== */

.partnerships {
    padding: 100px 0;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.partnerships::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==");
    z-index: 0;
}

.partnerships-container {
    position: relative;
    z-index: 1;
}

.partner-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

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

.partner-logo-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(20%) contrast(1.1);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.05);
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 26, 123, 0.6);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.partner-card:hover .partner-overlay {
    opacity: 1;
}

.partner-info {
    text-align: center;
    padding: 20px;
    color: white;
}

.partner-info h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.partner-link {
    color: white;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.partner-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
}

.empty-content {
    text-align: center;
}

.empty-content i {
    font-size: 2.5rem;
    color: #adb5bd;
    margin-bottom: 10px;
}

.empty-content p {
    color: #6c757d;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .partner-card {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .partnerships {
        padding: 80px 0;
    }

    .partner-card {
        height: 120px;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .partner-card {
        height: 100px;
    }
}
/* Styling untuk halaman PDF viewer */
/* Styling untuk section agar ada kontras */
.starter-section {
    background-color: #f8f9fa;
    /* Warna latar belakang abu-abu muda */
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Kontainer PDF dengan shadow dan border yang lebih halus */
#pdf-container {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    /* Border radius lebih besar */
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    /* Lebar maksimum kontainer */
    margin: 0 auto;
    /* Pusatkan kontainer */
}

/* Canvas dibuat responsif dan tajam */
#pdf-render {
    width: 100%;
    height: auto;
    border-radius: 0.375rem;
    border: 1px solid #e9ecef;
}

/* Tombol navigasi yang lebih menarik */
.pdf-nav-controls {
    display: flex;
    flex-wrap: wrap;
    /* Agar responsif di layar kecil */
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    /* Jarak antar elemen */
    /* Jarak antar elemen */
    margin-top: 1.5rem;
}

.pdf-nav-controls .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease-in-out;
}

.pdf-nav-controls .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#page-indicator {
    font-size: 0.9rem;
    color: #6c757d;
    background-color: #e9ecef;
    padding: 0.375rem 0.75rem;
    border-radius: 50rem;
    /* Pill shape */
}

/* Styling untuk halaman survei evaluasi monitoring */
.survey-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.survey-frame {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.survey-info {
    background: #f8f9fa;
    border-left: 4px solid #0ea2bd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.survey-info i {
    color: #0ea2bd;
    margin-right: 10px;
}

.direct-link-btn {
    display: inline-block;
    background: #0ea2bd;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.direct-link-btn:hover {
    background: #0b8a9f;
    transform: translateY(-2px);
    color: #fff;
}

/* Pengumuman Section */
.pengumuman {
    background-color: var(--background-color);
    padding: 80px 0;
}

.pengumuman-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pengumuman-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pengumuman-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.pengumuman-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pengumuman-card:hover .pengumuman-image img {
    transform: scale(1.05);
}

.pengumuman-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.pengumuman-badge.ujian {
    background-color: #4e73df;
}

.pengumuman-badge.beasiswa {
    background-color: #1cc88a;
}

.pengumuman-badge.acara {
    background-color: #f6c23e;
}

.pengumuman-badge.umum {
    background-color: #e74a3b;
}

.pengumuman-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pengumuman-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #6c757d;
}

.pengumuman-meta i {
    margin-right: 5px;
}

.pengumuman-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.pengumuman-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.pengumuman-title a:hover {
    color: var(--accent-color);
}

.pengumuman-excerpt {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 15px;
    flex: 1;
}

.pengumuman-target {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pengumuman-target i {
    margin-right: 8px;
    font-size: 16px;
    color: var(--accent-color);
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.btn-read-more:hover {
    color: #2c3e50;
}

.btn-read-more:hover i {
    transform: translateX(3px);
}

.empty-pengumuman {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.empty-pengumuman i {
    font-size: 50px;
    color: #d1d3e2;
    margin-bottom: 15px;
}

.empty-pengumuman h4 {
    color: #5a5c69;
    margin-bottom: 10px;
}

.empty-pengumuman p {
    color: #858796;
    margin-bottom: 0;
}

.btn-view-all {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--accent-color);
}

.btn-view-all i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.btn-view-all:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* Logo Styles */
/* Logo Styles */
.logo {
    text-decoration: none;
    transition: all 0.3s ease;
    align-items: center;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .sitename {
    color: var(--accent-color);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }

    .sitename {
        font-size: 1.1rem;
    }
}

/* FAQ Styles Start */
.faq {
    background-color: var(--background-color);
    padding: 80px 0;
}

.faq-list,
.faq-grid {
    list-style: none;
    margin: 0;
    padding: 0;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* Make the opened card span full width on >=992px */
@media (min-width: 992px) {
    .faq-grid .faq-card.open {
        grid-column: 1 / -1;
    }
}
.faq-card {
    background: #fff;
    border: 1px solid #e9e3dc;
    border-radius: 0.85rem;
    overflow: hidden;
    transition:
        0.3s box-shadow,
        0.3s border-color;
}
.faq-card.open {
    box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.12);
    border-color: #f3cdae;
}
.faq-btn {
    all: unset;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 1.15rem;
    width: 100%;
}
.faq-btn:focus-visible {
    outline: 2px solid #ff9f57;
    outline-offset: 2px;
    border-radius: 0.5rem;
}
.faq-icon {
    background: #ffe9db;
    color: #a35300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.05rem;
    height: 2.05rem;
    border-radius: 0.65rem;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.faq-btn .q-text {
    font-weight: 500;
    color: #2e2e2e;
    line-height: 1.3;
    font-size: 0.95rem;
}
.faq-btn .chevron {
    margin-left: auto;
    transition: 0.35s transform;
    color: #a35300;
    font-size: 1rem;
}
.faq-card.open .chevron {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.45s cubic-bezier(0.19, 1, 0.22, 1),
        padding 0.3s;
}
.faq-card.open .faq-answer {
    padding: 0 1.15rem 1.05rem;
}
.faq-answer .answer-body {
    color: #564335;
    font-size: 0.9rem;
    line-height: 1.55;
}
.faq-empty {
    background: #fff;
    border: 1px dashed #e0c2af;
    border-radius: 0.9rem;
    padding: 2rem;
}
@media (min-width: 768px) {
    .faq-btn .q-text {
        font-size: 0.95rem;
    }
}
/* FAQ Styles End */

/* Enhanced Akreditasi Section Styles */
.akreditasi.section {
    padding: 100px 0;
    position: relative;
}

/* Enhanced Section Title */
.akreditasi .section-title {
    text-align: center;
    margin-bottom: 0 !important;
}

.akreditasi .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff9a1e, #ff7518);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(255, 154, 30, 0.4);
    position: relative;
}

.akreditasi .section-badge::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #ff9a1e, #ff7518);
    border-radius: 50px;
    opacity: 0.2;
    z-index: -1;
}

.akreditasi .section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.akreditasi .highlight-text {
    background: linear-gradient(135deg, #ff9a1e, #ff7518);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.akreditasi .section-subtitle {
    font-size: 1.15rem;
    color: #6c757d;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Enhanced Akreditasi Card */
.akreditasi-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 154, 30, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Decorative Background Elements */
.decorative-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(255, 154, 30, 0.08),
        rgba(255, 117, 24, 0.04)
    );
}

.circle-1 {
    width: 250px;
    height: 250px;
    top: -125px;
    right: -125px;
    animation-delay: 0s;
}

.circle-2 {
    width: 180px;
    height: 180px;
    bottom: -90px;
    left: -90px;
    animation-delay: 2s;
}

.circle-3 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 8%;
    animation-delay: 4s;
}

/* Enhanced Header */
.akreditasi-header {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.header-text {
    flex: 1;
    text-align: center;
}

.akreditasi-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.akreditasi-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

/* Main Certificate Showcase */
.certificate-main-showcase {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
    text-align: center;
}

.certificate-link {
    position: relative;
    display: block;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: white;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.certificate-link:hover .overlay-content {
    transform: translateY(0);
}

.certificate-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.certificate-frame {
    position: relative;
    display: inline-block;
    background: linear-gradient(145deg, #fafbfc, #ffffff);
    padding: 40px;
    border-radius: 30px;
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: 100%;
    border: 2px solid rgba(255, 154, 30, 0.1);
}

.certificate-frame:hover {
    transform: scale(1.03) rotateY(2deg);
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 154, 30, 0.3);
}

.frame-decoration {
    position: absolute;
    inset: 20px;
    pointer-events: none;
}

.decoration-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 4px solid #ff9a1e;
    transition: all 0.3s ease;
}

.certificate-frame:hover .decoration-corner {
    border-color: #ff7518;
    width: 35px;
    height: 35px;
}

.corner-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 8px;
}

.corner-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 8px;
}

.corner-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 8px;
}

.corner-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 8px;
}

.certificate-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 25px;
    transition: all 0.5s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.certificate-frame:hover .certificate-image {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 1);
}

.certificate-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4), transparent);
    filter: blur(20px);
    z-index: -1;
    transition: all 0.5s ease;
}

.certificate-frame:hover .certificate-shadow {
    width: 90%;
    height: 35px;
    bottom: -25px;
}

/* Enhanced Features */
.akreditasi-features {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 25px;
    background: rgba(255, 154, 30, 0.06);
    border-radius: 20px;
    border: 1px solid rgba(255, 154, 30, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #ff9a1e, #ff7518);
    transition: width 0.4s ease;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff9a1e, #ff7518);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 154, 30, 0.3);
}

.feature-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #ff9a1e, #ff7518);
    border-radius: 22px;
    opacity: 0.2;
    z-index: -1;
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-weight: 700;
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-desc {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .akreditasi-card {
        padding: 50px 40px;
    }

    .certificate-image {
        max-width: 700px;
    }

    .certificate-frame {
        padding: 35px;
    }
}

@media (max-width: 992px) {
    .akreditasi-card {
        padding: 40px 30px;
    }

    .certificate-image {
        max-width: 600px;
    }

    .certificate-frame {
        padding: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .akreditasi.section {
        padding: 80px 0;
    }

    .akreditasi .section-title h2 {
        font-size: 2.2rem;
    }

    .akreditasi-card {
        padding: 30px 20px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .akreditasi-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .akreditasi-title {
        font-size: 1.8rem;
    }

    .certificate-frame {
        padding: 25px;
    }

    .certificate-image {
        max-width: 100%;
    }

    .decoration-corner {
        width: 25px;
        height: 25px;
        border-width: 3px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .certificate-frame {
        padding: 20px;
    }

    .decoration-corner {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }

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

    .btn-view-certificate {
        padding: 15px 30px;
        font-size: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Enhanced Korprodi Greeting Section - Premium Style */
.korprodi-greeting {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.korprodi-greeting::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 40%;
    height: 80%;
    background: radial-gradient(
        circle,
        rgba(255, 193, 7, 0.06) 0%,
        transparent 60%
    );
    z-index: 1;
}

.korprodi-greeting .container::after {
    content: "";
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: linear-gradient(
        135deg,
        rgba(255, 193, 7, 0.08),
        rgba(255, 140, 0, 0.12)
    );
    border-radius: 50%;
    filter: blur(25px);
    z-index: 1;
}

.korprodi-greeting .container {
    position: relative;
    z-index: 3;
}

/* Enhanced Photo Container */
.korprodi-photo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.photo-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

/* Premium Photo Styling */
.korprodi-photo {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    border: 6px solid #fff;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 15px 35px rgba(255, 140, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.photo-frame::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(
        135deg,
        rgba(255, 140, 0, 0.2) 0%,
        rgba(255, 165, 0, 0.25) 25%,
        rgba(255, 193, 7, 0.15) 50%,
        rgba(255, 140, 0, 0.2) 75%,
        rgba(255, 165, 0, 0.25) 100%
    );
    border-radius: 35px;
    z-index: 1;
    filter: blur(15px);
}

/* Enhanced Decoration Circles */
.photo-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

/* Premium Info Card */
.korprodi-info-card {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 35px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 10px 25px rgba(255, 140, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 165, 0, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.korprodi-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        #ff8c00 0%,
        #ffa500 50%,
        #ff8c00 100%
    );
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.4);
}

.korprodi-info-card::after {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), transparent);
    border-radius: 0 20px 0 20px;
}

/* Enhanced Role Badge */
.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 50%, #ff8c00 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow:
        0 8px 20px rgba(255, 140, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.role-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.role-badge:hover::before {
    left: 100%;
}

.role-badge i {
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Enhanced Typography */
.korprodi-name {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.korprodi-position {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 500;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #777;
    font-size: 0.95rem;
    padding: 12px 16px;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.contact-info i {
    color: #ff8c00;
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(255, 140, 0, 0.3));
}

/* Enhanced Greeting Content */
.greeting-content {
    padding-left: 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(
        135deg,
        rgba(255, 140, 0, 0.1) 0%,
        rgba(255, 165, 0, 0.15) 100%
    );
    color: #ff8c00;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 140, 0, 0.2);
    box-shadow:
        0 8px 25px rgba(255, 140, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s;
}

.section-badge:hover::before {
    left: 100%;
}

.greeting-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.greeting-text {
    position: relative;
    z-index: 2;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    padding: 30px 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Premium Buttons */
.btn-read-more,
.btn-read-less {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 50%, #ff8c00 100%);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow:
        0 10px 30px rgba(255, 140, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-read-more::before,
.btn-read-less::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.btn-read-more:hover,
.btn-read-less:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(255, 140, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: #fff;
}

.btn-read-more:hover::before,
.btn-read-less:hover::before {
    left: 100%;
}

.btn-read-less {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 50%, #6c757d 100%);
    box-shadow:
        0 10px 30px rgba(108, 117, 125, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-read-less:hover {
    box-shadow:
        0 15px 40px rgba(108, 117, 125, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Enhanced Video Section */
.greeting-video {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 3px solid transparent;
    border-image: linear-gradient(
            90deg,
            transparent,
            rgba(255, 140, 0, 0.3),
            transparent
        )
        1;
}

.video-container {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(255, 140, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 140, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.video-container::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1), transparent);
    border-radius: 50%;
}

.video-thumbnail {
    position: relative;
    width: 140px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.play-btn {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.7)
    );
    border: none;
    color: #ff8c00;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.play-btn:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, #fff, #f8f9fa);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.video-info h5 {
    color: #2c3e50;
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.video-info p {
    color: #666;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Enhanced Meta Section */
.greeting-meta {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid transparent;
    border-image: linear-gradient(
            90deg,
            transparent,
            rgba(255, 140, 0, 0.2),
            transparent
        )
        1;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #777;
    font-size: 1rem;
    padding: 10px 16px;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    display: inline-flex;
}

.meta-item i {
    color: #ff8c00;
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(255, 140, 0, 0.3));
}

/* Enhanced Responsive Design */
@media (max-width: 991.98px) {
    .greeting-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .greeting-title {
        font-size: 2.2rem;
    }

    .korprodi-photo {
        height: 380px;
    }
}

@media (max-width: 767.98px) {
    .korprodi-greeting {
        padding: 80px 0;
    }

    .greeting-title {
        font-size: 1.9rem;
    }

    .korprodi-photo {
        height: 320px;
    }

    .quote-mark {
        font-size: 4rem;
        top: -15px;
        left: -20px;
    }

    .section-badge {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .korprodi-info-card {
        padding: 25px;
    }

    .greeting-title {
        font-size: 1.6rem;
    }

    .greeting-text {
        font-size: 1.05rem;
    }

    .video-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

.language-switcher-container {
    position: relative;
    z-index: 1000;
}

.language-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.language-btn:hover,
.language-btn:focus,
.language-btn.show {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.language-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.language-dropdown {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin-top: 8px;
    min-width: 180px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.language-dropdown::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.language-item {
    padding: 12px 20px;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border: none;
}

.language-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(3px);
}

.language-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
}

.language-item.active:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .language-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .flag-icon {
        width: 18px;
        height: 13px;
    }

    .language-text {
        display: none;
    }

    .language-dropdown {
        min-width: 160px;
        right: 0;
    }

    .language-item {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .language-dropdown {
        background: rgba(30, 30, 30, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .language-item {
        color: #e0e0e0;
    }

    .language-dropdown::before {
        border-bottom-color: rgba(30, 30, 30, 0.95);
    }
}

/* Animation for dropdown */
.language-dropdown {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown.show .language-dropdown {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth language transition effect */
.language-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.language-transition.active {
    opacity: 1;
    visibility: visible;
}

/* ===== OVERRIDE NAVMENU DENGAN TEMA ORANGE - TAMBAHKAN DI AKHIR FILE ===== */

/* Desktop Navigation - Orange Theme Override */
@media (min-width: 1200px) {
    /* Navmenu Links - Orange Theme */
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color) !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        border-radius: 10px !important;
        transition: all 0.3s ease !important;
        position: relative;
    }

    /* Orange Underline Effect */
    .navmenu a::after {
        content: "" !important;
        position: absolute !important;
        bottom: 8px !important;
        left: 50% !important;
        transform: translateX(-50%) scaleX(0) !important;
        width: 60% !important;
        height: 3px !important;
        background: linear-gradient(90deg, #ff9a1e 0%, #ff7b25 100%) !important;
        border-radius: 2px !important;
        transition: transform 0.3s ease !important;
    }

    .navmenu li:hover > a::after,
    .navmenu .active::after {
        transform: translateX(-50%) scaleX(1) !important;
    }

    /* Hover State - Orange */
    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: #ff9a1e !important;
        background: linear-gradient(
            135deg,
            rgba(255, 154, 30, 0.08) 0%,
            rgba(255, 123, 37, 0.05) 100%
        ) !important;
    }

    /* Remove active underline for cleaner look */
    .navmenu .active::after {
        display: none !important;
    }

    /* Active State with Orange Gradient */
    .navmenu .active {
        background: linear-gradient(
            135deg,
            #ff9a1e 0%,
            #ff7b25 100%
        ) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 15px rgba(255, 154, 30, 0.3) !important;
    }

    /* Dropdown Icon Animation */
    .navmenu .toggle-dropdown {
        transition: transform 0.3s ease !important;
    }

    .navmenu .dropdown:hover > a .toggle-dropdown {
        transform: rotate(180deg) !important;
    }

    /* Dropdown Menu - Orange Theme */
    .navmenu .dropdown ul {
        background: #ffffff !important;
        border-radius: 10px !important;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1) !important;
        margin-left : 6px !important;
        padding: 6px 0 !important;
        border: 1px solid rgba(0, 0, 0, 0.06) !important;
        top: calc(100% + 5px) !important;
    }

    /* Dropdown Arrow */
    .navmenu .dropdown ul::before {
        content: "" !important;
        position: absolute !important;
        top: -5px !important;
        left: 24px !important;
        width: 10px !important;
        height: 10px !important;
        background: #ffffff !important;
        border-left: 1px solid rgba(0, 0, 0, 0.06) !important;
        border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
        transform: rotate(45deg) !important;
        z-index: 1 !important;
    }

    /* Dropdown Links - Orange Accent */
    .navmenu .dropdown ul a {
        padding: 7px 16px !important;
        font-size: 13.5px !important;
        font-weight: 500 !important;
        color: #334155 !important;
        border-radius: 0 !important;
        margin: 0 !important;
        position: relative;
        line-height: 1.5 !important;
    }

    .navmenu .dropdown ul a::before {
        content: "" !important;
        position: absolute !important;
        left: 0 !important;
        top: 15% !important;
        transform: none !important;
        width: 0 !important;
        height: 70% !important;
        background: #ff9a1e !important;
        border-radius: 0 3px 3px 0 !important;
        transition: width 0.2s ease !important;
    }

    .navmenu .dropdown ul a::after {
        display: none !important;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: #ff9a1e !important;
        background: rgba(255, 154, 30, 0.06) !important;
        transform: none !important;
    }

    .navmenu .dropdown ul a:hover::before {
        width: 3px !important;
    }

    /* Active Dropdown Item */
    .navmenu .dropdown ul .active {
        background: rgba(255, 154, 30, 0.08) !important;
        color: #ff9a1e !important;
        box-shadow: none !important;
    }

    .navmenu .dropdown ul .active::before {
        width: 3px !important;
    }

    /* Nested Dropdown */
    .navmenu .dropdown .dropdown ul {
        border-radius: 10px !important;
        left: 100% !important;
        top: 0 !important;
    }

    .navmenu .dropdown .dropdown ul::before {
        top: 12px !important;
        left: -5px !important;
        border-left: 1px solid rgba(0, 0, 0, 0.06) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
        border-top: none !important;
        border-right: none !important;
        transform: rotate(45deg) !important;
    }

    /* Dropdown Divider - Orange */
    .navmenu ul hr.dropdown-divider {
        margin: 4px 12px !important;
        border: none !important;
        height: 1px !important;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(0, 0, 0, 0.08),
            transparent
        ) !important;
        opacity: 1 !important;
    }

    /* Dropdown li - compact */
    .navmenu .dropdown ul li {
        min-width: 200px !important;
    }
}

/* Mobile Navigation - Orange Theme Override */
@media (max-width: 1199px) {
    /* Mobile Toggle - Orange */
    .mobile-nav-toggle {
        padding: 10px !important;
        border-radius: 10px !important;
        transition: all 0.3s ease !important;
    }

    .mobile-nav-toggle:hover {
        background: linear-gradient(
            135deg,
            rgba(255, 154, 30, 0.15) 0%,
            rgba(255, 123, 37, 0.12) 100%
        ) !important;
        border-color: rgba(255, 154, 30, 0.3) !important;
        transform: scale(1.05) !important;
    }

    /* Mobile Menu Active State */
    .mobile-nav-active .mobile-nav-toggle {
        color: #ffffff !important;
        background: linear-gradient(
            135deg,
            #ff9a1e 0%,
            #ff7b25 100%
        ) !important;
        border-color: transparent !important;
    }

    /* Mobile Nav Links */
    .navmenu a,
    .navmenu a:focus {
        padding: 14px 20px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        border-radius: 10px !important;
        margin: 0 6px !important;
    }

    .navmenu a::after {
        display: none !important;
    }

    /* Mobile Chevron Icon - Orange Circle */
    .navmenu a i,
    .navmenu a:focus i {
        width: 36px !important;
        height: 36px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        background: linear-gradient(
            135deg,
            rgba(255, 154, 30, 0.1) 0%,
            rgba(255, 123, 37, 0.08) 100%
        ) !important;
        color: #ff9a1e !important;
        transition: all 0.3s ease !important;
    }

    .navmenu a:hover i,
    .navmenu .active i {
        background: linear-gradient(
            135deg,
            #ff9a1e 0%,
            #ff7b25 100%
        ) !important;
        color: #ffffff !important;
        transform: scale(1.1) !important;
    }

    /* Mobile Hover State */
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: #ff9a1e !important;
        background: linear-gradient(
            135deg,
            rgba(255, 154, 30, 0.08) 0%,
            rgba(255, 123, 37, 0.05) 100%
        ) !important;
    }

    /* Mobile Dropdown */
    .navmenu .dropdown ul {
        background: linear-gradient(
            135deg,
            rgba(255, 154, 30, 0.03) 0%,
            rgba(255, 123, 37, 0.02) 100%
        ) !important;
        border-left: 3px solid rgba(255, 154, 30, 0.3) !important;
        border-radius: 8px !important;
        margin: 8px 12px 8px 24px !important;
        box-shadow: none !important;
    }

    .navmenu .dropdown ul ul {
        background: rgba(255, 154, 30, 0.02) !important;
        margin-left: 32px !important;
        border-left-color: rgba(255, 154, 30, 0.2) !important;
    }

    /* Mobile Dropdown Links */
    .navmenu .dropdown ul a {
        padding: 12px 16px 12px 28px !important;
    }

    .navmenu .dropdown ul ul a {
        padding-left: 36px !important;
    }
}

/* Custom Scrollbar untuk Mobile Menu */
@media (max-width: 1199px) {
    .navmenu ul::-webkit-scrollbar {
        width: 6px;
    }

    .navmenu ul::-webkit-scrollbar-track {
        background: rgba(255, 154, 30, 0.05);
        border-radius: 10px;
    }

    .navmenu ul::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #ff9a1e 0%, #ff7b25 100%);
        border-radius: 10px;
    }

    .navmenu ul::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #ff7b25 0%, #ff5722 100%);
    }
}

/* Accessibility */
.navmenu a:focus-visible {
    outline: 2px solid #ff9a1e !important;
    outline-offset: 2px !important;
}

/* Performance Optimization */
.navmenu .dropdown ul {
    will-change: opacity, visibility, transform;
}

/* ===== END NAVMENU ORANGE THEME OVERRIDE ===== */
