/* ---- CSS Variables ---- */
:root {
    /* Colors */
    --nav-bg: #ffffff;
    --nav-text: #1e293b;
    --nav-text-muted: #64748b;
    --nav-border: #e2e8f0;
    --nav-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    --nav-shadow-scroll: 0 4px 20px rgba(0, 0, 0, 0.08);

    /* Brand */
    --brand-primary: #1a365d;
    --brand-accent: #2d8a4e;

    /* Dropdown */
    --dropdown-bg: #ffffff;
    --dropdown-border: #e2e8f0;
    --dropdown-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
    --dropdown-link-hover: #f8fafc;
    --dropdown-text: #334155;
    --dropdown-text-hover: #2d8a4e;

    /* Mega Menu */
    --mega-bg: #ffffff;
    --mega-sidebar-bg: #f8fafc;
    --mega-content-bg: #ffffff;
    --mega-text: #475569;
    --mega-text-hover: #2d8a4e;
    --mega-heading: #1e293b;
    --mega-category-active: #2d8a4e;
    --mega-border: rgba(0, 0, 0, 0.08);
    --mega-accent-bar: linear-gradient(90deg, #EE5A36, #EE5A36, #EE5A36, #EE5A36);

    /* Theme Toggle */
    --toggle-bg: #f1f5f9;
    --toggle-hover: #e2e8f0;

    /* Body */
    --body-bg: #f8fafc;
    --body-text: #1e293b;

    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Dark Theme */
[data-theme="dark"] {
    --nav-bg: #0F1117;
    --nav-text: #ffffff;
    --nav-text-muted: #EBF3FF;
    --nav-border: #1e293b;
    --nav-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    --nav-shadow-scroll: 0 4px 20px rgba(0, 0, 0, 0.4);

    --brand-primary: #e2e8f0;

    --dropdown-bg: #141620;
    --dropdown-border: #1e293b;
    --dropdown-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
    --dropdown-link-hover: #1e293b;
    --dropdown-text: #cbd5e1;
    --dropdown-text-hover: #4ade80;

    --mega-bg: #141620;
    --mega-sidebar-bg: #141620;
    --mega-content-bg: #1e293b;
    --mega-text: #94a3b8;
    --mega-text-hover: #4ade80;
    --mega-heading: #e2e8f0;
    --mega-category-active: #4ade80;
    --mega-border: rgba(255, 255, 255, 0.06);

    --toggle-bg: #141620;
    --toggle-hover: #1e293b;

    --body-bg: #0F1117;
    --body-text: #ffffff;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--body-bg);
    color: var(--body-text);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #EE5A36; border-radius: 10px; }

/* ==============================
   NAVBAR
   ============================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
    box-shadow: var(--nav-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    box-shadow: var(--nav-shadow-scroll);
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 64px;
}

/* ---- Brand ---- */
.nav-brand {
    flex-shrink: 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #2d8a4e, #1a6b37);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--brand-primary);
    letter-spacing: 0.5px;
}

.brand-sub {
    font-size: 10px;
    font-weight: 600;
    color: var(--nav-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---- Nav Links ---- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--nav-text);
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

.nav-link:hover {
    color: var(--dropdown-text-hover);
    background: rgba(45, 138, 78, 0.06);
}

.dropdown-arrow {
    transition: transform 0.3s ease, color 0.3s ease;
    opacity: 0.6;
}

.nav-item.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--dropdown-text-hover);
}

/* ---- Right Section ---- */
.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: var(--toggle-bg);
    color: var(--nav-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.theme-toggle svg {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle:hover {
    background: var(--toggle-hover);
}

.theme-toggle:hover svg {
    color: #EE5A36; /* Orange accent color from the design */
    transform: rotate(15deg) scale(1.1);
}

.icon-moon {
    display: none;
}

[data-theme="dark"] .icon-sun {
    display: none;
}

[data-theme="dark"] .icon-moon {
    display: block;
}

/* ==============================
   DROPDOWN MENUS
   ============================== */
.dropdown-menu {
    position: absolute;
    top: calc(100%);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    background: var(--dropdown-bg);
    border: 1px solid var(--dropdown-border);
    border-radius: 14px;
    box-shadow: var(--dropdown-shadow);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 100;
}

.nav-item.has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Invisible bridge to prevent menu from closing */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
}

.dropdown-link {
    display: block;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 450;
    color: var(--dropdown-text);
    border-radius: 8px;
    transition: all 0.15s ease;
    position: relative;
}

.dropdown-link:hover {
    color: var(--dropdown-text-hover);
    background: var(--dropdown-link-hover);
    padding-left: 20px;
}

.dropdown-link:hover::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: var(--dropdown-text-hover);
    border-radius: 2px;
}

/* Dropdown with separator between columns */
.dropdown-column + .dropdown-column {
    border-top: 1px solid var(--dropdown-border);
    margin-top: 4px;
    padding-top: 4px;
}

/* ==============================
   DROPDOWN (Survey Kepuasan)
   ============================== */
.dropdown-nested {
    min-width: 220px;
}

.dropdown-item-nested {
    position: relative;
}

.dropdown-link.has-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 10px;
}

.dropdown-link.has-sub svg {
    opacity: 0.4;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.dropdown-item-nested:hover > .dropdown-link.has-sub {
    color: var(--dropdown-text-hover);
    background: var(--dropdown-link-hover);
}

.dropdown-item-nested:hover > .dropdown-link.has-sub svg {
    opacity: 1;
    color: var(--dropdown-text-hover);
    transform: translateX(2px);
}

.dropdown-link.has-sub:hover::before {
    display: none;
}

.dropdown-link.has-sub:hover {
    padding-left: 14px;
}

/* Sub-dropdown flyout */
.sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 180px;
    background: var(--dropdown-bg);
    border: 1px solid var(--dropdown-border);
    border-radius: 12px;
    box-shadow: var(--dropdown-shadow);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 110;
}

.dropdown-item-nested:hover > .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.sub-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 8px;
    height: 100%;
}

/* ==============================
   MEGA MENU
   ============================== */
.mega-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--mega-bg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 99;
    border-top: 3px solid transparent;
    border-image: var(--mega-accent-bar) 1;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
}

.nav-item.has-megamenu:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    min-height: 280px;
}

/* ---- Mega Sidebar ---- */
.mega-sidebar {
    width: 220px;
    flex-shrink: 0;
    background: var(--mega-sidebar-bg);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-right: 1px solid var(--mega-border);
}

.mega-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--mega-text);
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mega-category:hover {
    color: var(--mega-category-active);
    background: rgba(45, 138, 78, 0.06);

}

.mega-category.active {
    color: var(--mega-category-active);
    background: rgba(45, 138, 78, 0.12);
    font-weight: 600;
}

.mega-category svg {
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
}

.mega-category:hover svg,
.mega-category.active svg {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Mega Content ---- */
.mega-content {
    flex: 1;
    background: var(--mega-content-bg);
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
}

.mega-panel {
    display: none;
    gap: 40px;
    animation: megaFadeIn 0.25s ease forwards;
}

.mega-panel.active {
    display: flex;
}

@keyframes megaFadeIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mega-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-heading {
    font-size: 13px;
    font-weight: 700;
    color: var(--mega-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--mega-border);
}

.mega-link {
    display: block;
    padding: 7px 0;
    font-size: 13.5px;
    font-weight: 400;
    color: var(--mega-text);
    position: relative;
    padding-left: 0;
}

.mega-link:hover {
    color: var(--mega-text-hover);
    padding-left: 10px;
}

.mega-link:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 14px;
    background: var(--mega-text-hover);
    border-radius: 2px;
}



/* ==============================
   HERO SECTION (from Figma spec)
   ============================== */
.hero {
    display: block;
    position: relative;
    width: 100%;
    height: 666px;
    margin-top: 64px;
    overflow: hidden;
    background: white;
}

[data-theme="dark"] .hero {
    background: #0f172a;
}

/* Layer 1: Background image slideshow */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    image-rendering: high-quality;
    -webkit-font-smoothing: antialiased;
    transform: translateZ(0); /* Force hardware acceleration */
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

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

/* Slideshow dot indicators */
.hero-dots {
    position: absolute;
    bottom: 24px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.15);
}

.hero-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Layer 2 */
.hero-ornament {
    position: absolute;
    width: 775px;
    height: 775px;
    border-radius: 9999px;
    /* opacity: 0.40; */
    opacity: 0.25;
    filter: blur(275px);
    z-index: 2;
    pointer-events: none;
}

/* Orange #1 — top-left */
.ornament-orange-1 {
    background: #EE5A36;
    left: -155px;
    top: -205px;
}

/* Orange #2 — right-center */
.ornament-orange-2 {
    background: #EE5A36;
    left: 69.65%;
    top: 183px;
}

/* Green #1 — center-top */
.ornament-green-1 {
    background: #338D24;
    left: 22.99%;   /* 331/1440 */
    top: -62px;
}

/* Green #2 — bottom-left */
.ornament-green-2 {
    background: #338D24;
    left: -388px;
    top: 326px;
}

/* Green #3 — top-right */
.ornament-green-3 {
    background: #338D24;
    left: 69.65%;   /* 1003/1440 */
    top: -397px;
}

/* Layer */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: linear-gradient(
        155deg,
        rgba(255, 255, 255, 0.55) 15%,
        rgba(255, 255, 255, 0) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    overflow: hidden;
}

[data-theme="dark"] .hero-overlay {
    background: linear-gradient(
        155deg,
        rgba(15, 23, 42, 0.65) 15%,
        rgba(15, 23, 42, 0) 70%,
        rgba(15, 23, 42, 0) 100%
    );
}

.hero-circle {
    position: absolute;
    border-radius: 9999px;
    background: white;
    opacity: 0.10;
    pointer-events: none;
}

[data-theme="dark"] .hero-circle {
    background: #94a3b8;
    opacity: 0.06;
}

/* ---- Theme Transition Overlay ---- */
.theme-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
}

.theme-transition-overlay.active {
    opacity: 1;
}

.hero-circle-1 {
    width: 615px;
    height: 615px;
    left: 69.72%;
    top: -196px;
}

.hero-circle-2 {
    width: 474px;
    height: 474px;
    left: -154px;
    top: 450px;
}

/* Hero Text Content — bottom-left */
.hero-content {
    position: absolute;
    left: 83px;
    bottom: 55px;
    z-index: 4;
    max-width: 881px;
}

.hero-title {
    color: white;
    font-size: 36px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 50px;
    word-wrap: break-word;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    color: white;
    font-size: 48px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 50px;
    word-wrap: break-word;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

/* ==============================
   FEATURE CARDS SECTION
   ============================== */
.features-section {
    position: relative;
    background: var(--body-bg);
    padding: 60px 0;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: stretch;
}

/* Header Styles */
.features-header {
    margin-bottom: 10px;
}

.features-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.badge-square {
    width: 12px;
    height: 12px;
    background: #EE5A36;
    border-radius: 2px;
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    color: #EE5A36;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-main-heading {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    color: #0f172a;
    max-width: 95%;
}

[data-theme="dark"] .features-main-heading {
    color: #f8fafc;
}

/* Feature Cards (Horizontal) */
.features-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card.horizontal {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .feature-card.horizontal {
    background: #1c1f2b;
    border-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.feature-card.horizontal:hover {
    background: #ffffff;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: #EE5A36;
}

[data-theme="dark"] .feature-card.horizontal:hover {
    background: #252936;
    border-color: #EE5A36;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.4);
}

.feature-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #338D24;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(51, 141, 36, 0.2);
    transition: transform 0.3s ease;
}

.feature-card.horizontal:hover .feature-icon-circle {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon-circle.accent-1 {
    background: #EE5A36;
    box-shadow: 0 8px 16px rgba(238, 90, 54, 0.2);
}

.feature-icon-circle.accent-2 {
    background: #338D24;
    box-shadow: 0 8px 16px rgba(51, 141, 36, 0.2);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

[data-theme="dark"] .feature-title {
    color: #f1f5f9;
}

.feature-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

[data-theme="dark"] .feature-desc {
    color: #94a3b8;
}

/* ---- Page Spacer ---- */
.page-spacer {
    min-height: 40vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==============================
   NEWS SECTION
   ============================== */
.news-section {
    padding: 80px 0;
    background-color: #f1f5f9;
}

[data-theme="dark"] .news-section {
    background-color: #141620;
}

.news-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.news-heading {
    font-size: 38px;
    font-weight: 800;
    color: #2b2b2b;
    border-left: 4px solid #DF5A39;
    padding-left: 20px;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
}

[data-theme="dark"] .news-heading {
    color: #f1f5f9;
}

.news-subheading {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.4;
    margin: 0;
}

[data-theme="dark"] .news-subheading {
    color: #9ca3af;
}

.news-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 40px;
}

/* Featured News (Left) */
.news-card.featured-news {
    display: flex;
    flex-direction: column;
}

.news-img-wrapper {
    width: 100%;
    height: 380px;
    border-radius: 15px 0px 15px 0px;
    overflow: hidden;
    margin-bottom: 24px;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card.featured-news:hover .news-img {
    transform: scale(1.03);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.news-badge {
    background-color: #FBDDD7;
    color: #DF5A39;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 20px;
    border-radius: 20px;
    display: inline-block;
}

[data-theme="dark"] .news-badge {
    background-color: rgba(223, 90, 57, 0.2);
    color: #ff8e75;
}

.news-date {
    font-size: 13px;
    color: #888;
}

[data-theme="dark"] .news-date {
    color: #9ca3af;
}

.news-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.4;
}

[data-theme="dark"] .news-title {
    color: #f8fafc;
}

.news-card.featured-news:hover .news-title {
    color: #DF5A39;
}

.news-excerpt {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

[data-theme="dark"] .news-excerpt {
    color: #d1d5db;
}

/* News List (Right) */
.news-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    max-height: 535px;
    overflow-y: auto;
    padding-right: 12px;
}


.news-list::-webkit-scrollbar {
    width: 6px;
}

.news-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

[data-theme="dark"] .news-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.news-list::-webkit-scrollbar-thumb {
    background: #DF5A39;
    border-radius: 10px;
}

.news-item {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.news-item-img-wrapper {
    width: 160px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 15px 0px 15px 0px;
    overflow: hidden;
}

.news-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.news-item-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.news-item-content .news-badge {
    align-self: flex-start;
    margin-bottom: 12px;
}

.news-item-title {
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.4;
}

[data-theme="dark"] .news-item-title {
    color: #f8fafc;
}

.news-item:hover .news-item-title {
    color: #DF5A39;
}

.news-item-date {
    font-size: 13px;
    color: #888;
    margin-top: auto;
}

[data-theme="dark"] .news-item-date {
    color: #9ca3af;
}

/* News Action / Button */
.news-action {
    text-align: center;
    margin-top: 50px;
}

.btn-outline-orange {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid #DF5A39;
    color: #DF5A39;
    background-color: transparent;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #DF5A39;
    z-index: -1;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-orange:hover {
    color: white;
}

.btn-outline-orange:hover::before {
    width: 100%;
}

.btn-outline-orange svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-orange:hover svg {
    transform: translateX(4px);
}

/* ==============================
   AGENDA SECTION
   ============================== */
.agenda-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Base background fill */
.agenda-bg-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f1f5f9;
    z-index: 1;
}

.agenda-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 2;
}

.agenda-overlay-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(244, 245, 239, 0.85); /* Increased opacity to match light reference image */
    z-index: 3;
}

[data-theme="dark"] .agenda-bg-fill {
    background-color: #141620;
}

[data-theme="dark"] .agenda-overlay-color {
    background-color: rgba(20, 22, 32, 0.90);
}

.agenda-container {
    position: relative;
    z-index: 4;
}

.agenda-heading {
    border-left-color: #DF5A39; /* Same style as news */
    margin-bottom: 50px;
}

.agenda-grid {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 24px;
}

.agenda-grid::-webkit-scrollbar {
    height: 8px;
}
.agenda-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}
[data-theme="dark"] .agenda-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}
.agenda-grid::-webkit-scrollbar-thumb {
    background: #DF5A39;
    border-radius: 4px;
}

/* Agenda Cards */
.agenda-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    scroll-snap-align: start;
    border-radius: 15px 0px 15px 0px;
    padding: 32px 28px;
    color: white;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Card Colors */
.agenda-card.orange {
    background-color: #E65A37;
}

.agenda-card.green {
    background-color: #318728;
}

/* Date Formatting */
.agenda-date-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    line-height: 1.1;
}

.agenda-month {
    font-size: 24px;
    font-weight: 400;
}

.agenda-day {
    font-size: 46px;
    font-weight: 600;
    margin-top: 4px;
}

.agenda-year {
    font-size: 24px;
    font-weight: 400;
    margin-top: 4px;
}

/* Title */
.agenda-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Divider */
.agenda-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

/* Details Section (Time & Location) */
.agenda-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.agenda-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.95;
}

.agenda-detail-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Show More Link */
.agenda-link {
    align-self: flex-end;
    color: white;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.agenda-link:hover {
    opacity: 0.8;
}

/* ==============================
   ARTICLE SECTION
   ============================== */
.article-section {
    padding: 80px 0;
    background-color: #f1f5f9; /* Same background as news */
}

[data-theme="dark"] .article-section {
    background-color: #141620;
}

.article-grid {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 24px;
}

.article-grid::-webkit-scrollbar {
    height: 8px;
}
.article-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}
[data-theme="dark"] .article-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}
.article-grid::-webkit-scrollbar-thumb {
    background: #DF5A39;
    border-radius: 4px;
}

.article-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="dark"] .article-card {
    background: #1c1f2b;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

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

.article-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-img {
    transform: scale(1.03);
}

.article-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.news-badge {
    background-color: #C0DEB8;
    color: #318728;
}

[data-theme="dark"] .article-content .news-badge {
    background-color: rgba(49, 135, 40, 0.2);
    color: #4ade80;
}

.article-meta-bottom {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888;
}

[data-theme="dark"] .article-meta-bottom {
    color: #9ca3af;
}

/* ==============================
   LINK SECTION
   ============================== */
.link-section {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
}

[data-theme="dark"] .link-section {
    background-color: #0F1117;
}

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

.link-heading {
    font-size: 32px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 20px;
}

[data-theme="dark"] .link-heading {
    color: #f8fafc;
}

.link-divider {
    width: 250px;
    height: 4px;
    background-color: #DF5A39;
    margin: 0 auto 50px auto;
}

/* Marquee Animation */
.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 40px;
    margin-bottom: 25px;
    padding: 10px 0;
}

.marquee-wrapper.reverse .marquee-group {
    animation-direction: reverse;
}

.marquee-group {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    min-width: 100%;
    animation: scroll-x 20s linear infinite;
}

.marquee-group:hover,
.marquee-wrapper:hover .marquee-group {
    animation-play-state: paused;
}

.marquee-item {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    min-width: 180px;
    height: 90px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="dark"] .marquee-item {
    background-color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-item img {
    max-height: 100%;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s;
}

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

@keyframes scroll-x {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100% - 40px)); }
}

/* ==============================
   GALERI SECTION
   ============================== */
.galeri-section {
    padding: 80px 0;
    background-color: #f1f5f9; /* Same as Agenda */
}

[data-theme="dark"] .galeri-section {
    background-color: #141620;
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.galeri-item {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="dark"] .galeri-item {
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Interactive Animation / Focus Effect */
.galeri-grid:hover .galeri-item {
    opacity: 0.6;
    filter: blur(2px) grayscale(50%);
    transform: scale(0.98);
}

.galeri-grid .galeri-item:hover {
    opacity: 1;
    filter: blur(0) grayscale(0);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

[data-theme="dark"] .galeri-grid .galeri-item:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.galeri-item:hover img {
    transform: scale(1.1);
}

.galeri-item.large {
    grid-column: span 2;
}

.galeri-item.medium {
    grid-column: span 1;
}

/* ==============================
   VIDEO SECTION
   ============================== */
.video-section {
    padding: 80px 0;
    background-color: #f1f5f9;
}

[data-theme="dark"] .video-section {
    background-color: #141620;
}

.video-header-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.video-wrapper {
    width: 100%;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    background-color: #000;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
    background: var(--nav-bg);
    padding: 60px 32px 30px;
    border-top: 1px solid var(--nav-border);
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}
.f-brand-box {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.f-logo-square {
    width: 40px;
    height: 40px;
    background: var(--body-text);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--nav-bg);
    font-weight: 800;
    font-size: .8rem;
}

.f-logo-square.has-image {
    background: transparent;
}

.f-logo-square img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.f-brand-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.f-name {
    font-weight: 800;
    font-size: .95rem;
    color: var(--body-text);
    line-height: 1.2;
}
.f-sub {
    font-weight: 500;
    font-size: .75rem;
    color: var(--nav-text-muted);
}
.f-desc {
    font-size: .85rem;
    color: var(--nav-text-muted);
    line-height: 1.6;
    max-width: 320px;
}

.f-col h4 {
    font-size: .95rem;
    font-weight: 800;
    color: var(--body-text);
    margin-bottom: 16px;
}
.f-col p {
    font-size: .85rem;
    color: var(--nav-text-muted);
    line-height: 1.6;
}
.f-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.f-soc {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--body-text);
    color: var(--nav-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}
.f-soc:hover {
    background: var(--brand-accent);
    transform: translateY(-3px);
}

.f-bottom {
    max-width: 1280px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--nav-border);
    display: flex;
    justify-content: space-between;
    font-size: .78rem;
    color: var(--nav-text-muted);
}

.mobile-nav-icon {
    display: none;
    font-size: 18px;
    line-height: 1;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (min-width: 1025px) {
    .mobile-menu-btn {
        display: none;
    }
}

@media (max-width: 1024px) {
    body { padding-bottom: 110px; }

    .mobile-menu-btn {
        display: none;
    }

    .mobile-nav-icon {
        display: block;
        margin-bottom: 4px;
        transition: color 0.3s;
    }

    .navbar {
        top: 0;
        bottom: auto;
        box-shadow: none;
        border-bottom: 1px solid var(--nav-border);
    }

    .navbar.scrolled {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    /* Floating Bottom Nav Pill */
    .nav-links {
        position: fixed;
        bottom: 24px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 32px);
        max-width: 500px;
        background: var(--nav-bg);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        gap: 4px;
        height: auto;
        border-radius: 40px;
        border: 1px solid var(--nav-border);
        z-index: 1000;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-item {
        width: auto;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        border-bottom: none;
        position: static;
    }
    [data-theme="dark"] .nav-item {
        border-bottom: none;
    }

    .nav-link {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4px 0;
        font-size: 11px;
        font-weight: 600;
        border-radius: 12px;
        color: var(--nav-text-muted);
        text-align: center;
        gap: 3px;
        line-height: 1.1;
    }

    .mobile-nav-icon {
        width: 22px;
        height: 22px;
        display: block;
        margin-bottom: 2px;
    }

    .nav-link .dropdown-arrow {
        display: none;
    }

    .hide-mobile {
        display: none;
    }

    .nav-link:hover, .nav-item.mobile-open .nav-link {
        color: var(--brand-accent);
        background: transparent;
    }

    .dropdown-menu, .mega-menu {
        position: fixed !important;
        top: auto !important;
        bottom: 90px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100vw - 32px) !important;
        max-width: 480px !important;
        max-height: calc(100vh - 150px) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: none;
        border: 1px solid var(--nav-border);
        border-radius: 20px;
        background: var(--nav-bg);
        padding: 16px;
        margin: 0;
        z-index: 1050;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .sub-dropdown {
        position: static;
        width: 100%;
        display: none;
        border: none;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.04);
        padding: 8px;
        margin-top: 8px;
        margin-bottom: 12px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    [data-theme="dark"] .sub-dropdown {
        background: var(--dropdown-link-hover);
    }

    .dropdown-item-nested.mobile-open > .sub-dropdown {
        display: block !important;
        animation: slideDownFade 0.3s ease forwards;
    }

    @keyframes slideDownFade {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    [data-theme="dark"] .dropdown-menu,
    [data-theme="dark"] .mega-menu {
        background: var(--dropdown-bg) !important;
    }

    [data-theme="dark"] .sub-dropdown {
        background: var(--dropdown-link-hover);
    }

    .nav-item.has-dropdown:hover:not(.mobile-open) > .dropdown-menu,
    .nav-item.has-megamenu:hover:not(.mobile-open) > .mega-menu,
    .dropdown-item-nested:hover:not(.mobile-open) > .sub-dropdown {
        display: none;
    }
    .nav-item.mobile-open > .dropdown-menu,
    .nav-item.mobile-open > .mega-menu,
    .dropdown-item-nested.mobile-open > .sub-dropdown {
        display: block !important;
        animation: popUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes popUp {
        from { opacity: 0; transform: translateY(20px) scale(0.95); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .dropdown-link {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 6px;
    }
    /* Increase specificity on mega-links inside mobile view to fix padding block */
    .mega-menu .mega-link {
        padding: 12px 16px;
        margin-bottom: 4px;
        border-radius: 6px;
    }
    .mega-menu .mega-link:hover {
        padding-left: 20px;
    }

    .mega-menu {
        border-top: none;
    }
    .mega-menu-inner {
        flex-direction: column;
        min-height: auto;
        max-height: none !important;
        overflow: visible !important;
        padding: 8px 0;
    }
    .mega-sidebar {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 2px;
    }
    .mega-category {
        padding: 14px 16px;
        width: 100%;
        border-radius: 12px;
        justify-content: space-between;
        font-weight: 600;
        font-size: 15px;
        color: var(--nav-text);
        transition: all 0.2s ease;
        background: transparent;
    }
    .mega-category:hover, .mega-category.active {
        background: rgba(45, 138, 78, 0.08);
        color: var(--brand-accent);
    }
    .mega-category svg {
        transition: transform 0.3s ease;
        opacity: 0.6;
    }
    .mega-category.mobile-active svg {
        transform: rotate(90deg);
        opacity: 1;
    }

    .mega-content {
        padding: 0;
        background: transparent;
        width: 100%;
    }
    .mega-panel {
        display: none !important;
        flex-direction: column;
        gap: 12px;
        opacity: 1;
        transform: none;
        animation: slideDownFade 0.3s ease forwards;
        margin: 4px 12px 16px 32px;
        padding: 12px 16px;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.02);
        border: none;
    }
    [data-theme="dark"] .mega-panel {
        background: rgba(255, 255, 255, 0.03);
    }

    .mega-panel.mobile-active {
        display: flex !important;
    }

    .mega-panel:last-child {
        margin-bottom: 24px;
    }
    .mega-heading {
        margin-top: 8px;
        margin-bottom: 8px;
        padding-bottom: 4px;
        padding-left: 0;
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    /* Tablet Adjustments */
    .hero {
        height: 360px;
        margin-top: 0;
    }
    .hero-title {
        font-size: 30px;
        line-height: 1.3;
    }
    .hero-subtitle {
        font-size: 36px;
        line-height: 1.3;
    }
    .hero-circle-1, .hero-circle-2 {
        transform: scale(0.6);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .agenda-card, .article-card {
        flex: 0 0 calc(50% - 15px);
    }
    .galeri-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 200px;
    }
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Mobile landscape / small tablet */
    .logo-wrapper { gap: 8px; }
    .brand-title { font-size: 12px; }
    .brand-sub { font-size: 8px; }

    .hero {
        height: 400px;
    }
    .hero-content {
        left: 20px;
        right: 20px;
        bottom: 30px;
    }
    .hero-title {
        font-size: 22px;
    }
    .hero-subtitle {
        font-size: 26px;
    }
    .hero-dots {
        right: 20px;
        bottom: 16px;
    }

    .features-section, .news-section, .agenda-section,
    .article-section, .link-section, .galeri-section, .video-section {
        padding: 40px 0;
    }

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

    /* Feature Card Mobile Styling */
    .features-main-heading {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    .feature-card {
        padding: 14px 16px;
        border-radius: 12px 0 12px 0;
        gap: 12px;
    }
    .feature-icon-circle {
        width: 36px;
        height: 36px;
    }
    .feature-icon-circle svg {
        width: 18px;
        height: 18px;
    }
    .feature-title {
        font-size: 14px;
        margin-bottom: 4px;
    }
    .feature-desc {
        font-size: 12px;
        line-height: 1.4;
    }

    /* Splash Announcement Mobile Styling */
    .splash-container.inline-mode {
        min-height: 250px;
    }
    .poster-badge {
        top: 10px;
        left: 10px;
        font-size: 7px;
        padding: 2px 6px;
    }
    .poster-overlay {
        padding: 40px 12px 32px;
        bottom: 0;
    }
    .poster-overlay h3 {
        font-size: 13px;
        margin-bottom: 2px;
        line-height: 1.25;
    }
    .poster-overlay p {
        font-size: 11px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .splash-dots {
        bottom: 6px;
        padding: 4px 10px;
    }
    .splash-dot {
        width: 5px;
        height: 5px;
    }
    .splash-dot.active {
        width: 12px;
    }

    .news-header {
        margin-bottom: 24px;
    }
    .news-heading {
        font-size: 28px;
    }
    .news-img-wrapper {
        height: 200px;
        margin-bottom: 16px;
    }
    .news-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .news-excerpt {
        font-size: 14px;
    }

    .agenda-grid, .article-grid {
        gap: 16px;
    }
    .agenda-card {
        flex: 0 0 calc(65vw - 20px);
        padding: 12px;
        min-width: 220px;
        border-radius: 12px 0 12px 0;
    }
    .article-card {
        flex: 0 0 calc(70vw - 20px);
        min-width: 220px;
    }
    .agenda-title {
        font-size: 14px;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    .agenda-month { font-size: 14px; }
    .agenda-day { font-size: 24px; }
    .agenda-year { font-size: 14px; }
    .agenda-details { gap: 4px; margin-bottom: 8px; }
    .agenda-detail-item { font-size: 10px; }

    .article-card .article-img-wrapper {
        height: 140px;
    }
    .article-card .article-content {
        padding: 16px;
    }
    .article-card .article-meta-top {
        margin-bottom: 12px;
    }
    .article-card .article-meta-bottom {
        padding-top: 12px;
        font-size: 11px;
    }
    .article-card .news-excerpt {
        display: none !important;
    }
    .article-card .news-title {
        font-size: 14px !important;
        line-height: 1.3 !important;
        margin-bottom: 0 !important;
    }

    .galeri-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        gap: 12px;
    }
    .galeri-item.large {
        grid-column: span 2;
    }

    .footer { padding: 40px 24px 100px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .f-brand-box { justify-content: center; }
    .f-desc { margin: 0 auto; }
    .f-socials { justify-content: center; }
    .f-bottom { flex-direction: column; gap: 12px; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
    /* Mobile portrait */
    .nav-right {
        gap: 4px;
    }

    .hero {
        height: 280px;
    }
    .hero-content {
        left: 16px;
        right: 16px;
        bottom: 24px;
        max-width: calc(100% - 32px);
    }
    .hero-title {
        font-size: 18px;
        line-height: 1.4;
    }
    .hero-subtitle {
        font-size: 20px;
        line-height: 1.3;
    }
    .hero-dots {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 12px;
    }

    /* Splash Overlay - Extra Compact on Mobile Portrait */
    .splash-container.inline-mode {
        min-height: 200px;
    }
    .poster-badge {
        top: 8px;
        left: 8px;
        font-size: 6px;
        padding: 2px 5px;
    }
    .poster-overlay {
        padding: 32px 10px 24px;
        bottom: 0;
    }
    .poster-overlay h3 {
        font-size: 12px;
        margin-bottom: 0;
        line-height: 1.15;
    }
    .poster-overlay p {
        font-size: 10px;
        line-height: 1.1;
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }
    .splash-dots {
        bottom: 4px;
        padding: 3px 8px;
    }
    .splash-dot {
        width: 4px;
        height: 4px;
    }
    .splash-dot.active {
        width: 10px;
    }

    .news-heading {
        font-size: 24px;
        padding-left: 12px;
    }
    .news-subheading {
        font-size: 13px;
    }

    .news-item {
        /* Keep side-by-side but compact */
        flex-direction: row;
        gap: 12px;
        align-items: stretch;
    }
    .news-item-img-wrapper {
        width: 100px;
        height: 90px;
        border-radius: 8px;
        flex-shrink: 0;
    }
    .news-item-title {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 6px;
    }
    .news-item-date {
        font-size: 11px;
    }
    .news-badge {
        font-size: 10px;
        padding: 2px 10px;
        margin-bottom: 6px;
    }

    .marquee-wrapper {
        gap: 16px;
        padding: 5px 0;
    }
    .marquee-item img {
        max-width: 100px;
        max-height: 45px;
    }

    .footer { padding: 32px 16px 32px; }
    .f-name { font-size: 0.85rem; }
    .f-desc { font-size: 0.78rem; }
}

/* ==============================
   WEEKLY SPLASH ANNOUNCEMENT (SLIDER)
   ============================== */

.splash-container {
    background: var(--nav-bg);
    width: 90%;
    max-width: 600px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--nav-border);
}

.splash-container.inline-mode {
    width: 100%;
    max-width: none;
    border-radius: 15px 0px 15px 0px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: none;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.splash-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 17, 23, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.splash-close:hover {
    background: #ef4444;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

/* Navigation Buttons */
.splash-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 95;
    opacity: 0;
}

.splash-container:hover .splash-nav {
    opacity: 1;
}

.splash-nav:hover {
    background: #EE5A36;
    border-color: #EE5A36;
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(238, 90, 54, 0.5);
}

.splash-nav.prev {
    left: 20px;
    transform: translateX(-15px);
}

.splash-nav.next {
    right: 20px;
    transform: translateX(15px);
}

.splash-container:hover .splash-nav.prev,
.splash-container:hover .splash-nav.next {
    transform: translateX(0);
}

/* Slider Engine */
.splash-slider-viewport {
    width: 100%;
    flex: 1; /* Fill the card */
    overflow: hidden;
    position: relative;
    background: #0F1117;
}

.splash-slider-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.splash-slide {
    width: calc(100% / 3);
    height: 100%;
    position: relative;
}

.splash-poster {
    width: 100%;
    height: 100%;
    position: relative;
}

.splash-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease-out;
}

.splash-slide:hover .splash-poster img {
    transform: scale(1.05);
}

/* Badge floats at top-left of the image */
.poster-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    background: #EE5A36;
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(238, 90, 54, 0.4);
}

/* Slim bottom gradient strip — minimal photo coverage */
.poster-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 48px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 65%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
}

.poster-overlay h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.poster-overlay p {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.85;
    color: #e2e8f0;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Navigation Dots Overlay */
.splash-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 96;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.splash-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.splash-dot.active {
    width: 24px;
    background: #EE5A36;
    box-shadow: 0 0 15px rgba(238, 90, 54, 0.6);
}


