﻿        /* Color Variables sudah di /theme.css — tidak perlu di sini agar ikut tema */
        
        * { 
            font-family: 'Inter', sans-serif; 
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            line-height: 1.6;
            color: var(--gray-700);
        }
        
        /* Header & Navigation */
        .navbar-modern {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(14, 165, 233, 0.1);
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }
        .navbar-modern.scrolled {
            background: rgba(255, 255, 255, 0.98) !important;
            box-shadow: 0 4px 30px rgba(14, 165, 233, 0.15);
        }
        .navbar-brand { 
            font-weight: 700; 
            color: var(--primary-blue) !important; 
            font-size: 1.5rem;
            text-decoration: none;
        }
        .navbar-brand:hover {
            color: var(--primary-blue-dark) !important;
            text-decoration: none;
        }
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        .navbar-nav {
            align-items: center;
        }
        .nav-item {
            margin: 0 0.25rem;
        }
        .nav-link { 
            font-weight: 500; 
            color: var(--gray-600) !important; 
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            text-decoration: none;
        }
        .nav-link:hover { 
            color: var(--primary-blue) !important;
            background-color: var(--light-blue);
            text-decoration: none;
        }
        .nav-link.active {
            color: var(--primary-blue) !important;
            background-color: var(--light-blue);
        }
        
        /* Hero Section with Slider */
        .hero-section {
            position: relative;
            overflow: hidden;
            padding-top: 56px; /* tinggi navbar yang sudah dikurangi */
        }
        .hero-slider {
            position: relative;
            width: 100%;
            /* Sisakan 44px untuk ticker agar selalu terlihat tanpa scroll */
            height: calc(100vh - 56px - 44px);
            min-height: 350px;
            max-height: 860px;
        }
        @supports (height: 100dvh) {
            .hero-slider {
                height: calc(100dvh - 56px - 44px);
            }
        }
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            display: flex;
            align-items: center;
        }
        .hero-slide.active {
            opacity: 1;
        }
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 600px;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 8px rgba(0,0,0,0.6), 0 2px 4px rgba(0,0,0,0.4);
        }
        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            opacity: 0.95;
            text-shadow: 0 3px 6px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4);
        }
        .hero-description {
            font-size: 1.1rem;
            font-weight: 400;
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.6;
            text-shadow: 0 2px 4px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.4);
        }
        .btn-hero {
            background: white;
            color: var(--primary-blue);
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .btn-hero:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
            color: var(--primary-blue);
            text-decoration: none;
            background: rgba(255, 255, 255, 0.95);
        }

        /* Slider text alignment & entry animations */
        .hero-content-row {
            display: flex;
            width: 100%;
            position: relative;
            z-index: 2;
        }
        .hero-content-row.hero-align-kiri { justify-content: flex-start; }
        .hero-content-row.hero-align-tengah { justify-content: center; }
        .hero-content-row.hero-align-kanan { justify-content: flex-end; }
        .hero-align-tengah .hero-content { text-align: center; max-width: 780px; }
        .hero-align-kiri .hero-content { text-align: left; }
        .hero-align-kanan .hero-content { text-align: right; margin-left: auto; }
        .hero-slide .hero-anim-item {
            opacity: 0;
            will-change: transform, opacity, filter;
        }
        @keyframes heroSlideUp {
            from { opacity: 0; transform: translateY(42px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes heroSlideUpBounce {
            0%   { opacity: 0; transform: translateY(50px); }
            70%  { opacity: 1; transform: translateY(-10px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes heroZoomUp {
            from { opacity: 0; transform: translateY(40px) scale(0.86); }
            to   { opacity: 1; transform: translateY(0) scale(1); }
        }
        @keyframes heroBlurUp {
            from { opacity: 0; transform: translateY(36px); filter: blur(10px); }
            to   { opacity: 1; transform: translateY(0); filter: blur(0); }
        }
        @keyframes heroElasticUp {
            0%   { opacity: 0; transform: translateY(65px); }
            55%  { opacity: 1; transform: translateY(-14px); }
            75%  { transform: translateY(7px); }
            90%  { transform: translateY(-4px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes heroFadeUpFast {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes heroFlipUp {
            from { opacity: 0; transform: perspective(700px) rotateX(40deg) translateY(45px); }
            to   { opacity: 1; transform: perspective(700px) rotateX(0) translateY(0); }
        }
        @keyframes heroSlideUpLong {
            from { opacity: 0; transform: translateY(90px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .hero-slide.active .hero-anim-slide-up .hero-anim-item:nth-child(1) { animation: heroSlideUp .85s ease .08s both; }
        .hero-slide.active .hero-anim-slide-up .hero-anim-item:nth-child(2) { animation: heroSlideUp .85s ease .18s both; }
        .hero-slide.active .hero-anim-slide-up .hero-anim-item:nth-child(3) { animation: heroSlideUp .85s ease .28s both; }
        .hero-slide.active .hero-anim-slide-up .hero-anim-item:nth-child(4) { animation: heroSlideUp .85s ease .38s both; }
        .hero-slide.active .hero-anim-slide-up-bounce .hero-anim-item:nth-child(1) { animation: heroSlideUpBounce .95s cubic-bezier(.34,1.4,.64,1) .08s both; }
        .hero-slide.active .hero-anim-slide-up-bounce .hero-anim-item:nth-child(2) { animation: heroSlideUpBounce .95s cubic-bezier(.34,1.4,.64,1) .18s both; }
        .hero-slide.active .hero-anim-slide-up-bounce .hero-anim-item:nth-child(3) { animation: heroSlideUpBounce .95s cubic-bezier(.34,1.4,.64,1) .28s both; }
        .hero-slide.active .hero-anim-slide-up-bounce .hero-anim-item:nth-child(4) { animation: heroSlideUpBounce .95s cubic-bezier(.34,1.4,.64,1) .38s both; }
        .hero-slide.active .hero-anim-zoom-up .hero-anim-item:nth-child(1) { animation: heroZoomUp .9s cubic-bezier(.16,1,.3,1) .08s both; }
        .hero-slide.active .hero-anim-zoom-up .hero-anim-item:nth-child(2) { animation: heroZoomUp .9s cubic-bezier(.16,1,.3,1) .18s both; }
        .hero-slide.active .hero-anim-zoom-up .hero-anim-item:nth-child(3) { animation: heroZoomUp .9s cubic-bezier(.16,1,.3,1) .28s both; }
        .hero-slide.active .hero-anim-zoom-up .hero-anim-item:nth-child(4) { animation: heroZoomUp .9s cubic-bezier(.16,1,.3,1) .38s both; }
        .hero-slide.active .hero-anim-blur-up .hero-anim-item:nth-child(1) { animation: heroBlurUp .9s ease .08s both; }
        .hero-slide.active .hero-anim-blur-up .hero-anim-item:nth-child(2) { animation: heroBlurUp .9s ease .18s both; }
        .hero-slide.active .hero-anim-blur-up .hero-anim-item:nth-child(3) { animation: heroBlurUp .9s ease .28s both; }
        .hero-slide.active .hero-anim-blur-up .hero-anim-item:nth-child(4) { animation: heroBlurUp .9s ease .38s both; }
        .hero-slide.active .hero-anim-elastic-up .hero-anim-item:nth-child(1) { animation: heroElasticUp 1.1s ease .08s both; }
        .hero-slide.active .hero-anim-elastic-up .hero-anim-item:nth-child(2) { animation: heroElasticUp 1.1s ease .18s both; }
        .hero-slide.active .hero-anim-elastic-up .hero-anim-item:nth-child(3) { animation: heroElasticUp 1.1s ease .28s both; }
        .hero-slide.active .hero-anim-elastic-up .hero-anim-item:nth-child(4) { animation: heroElasticUp 1.1s ease .38s both; }
        .hero-slide.active .hero-anim-fade-up-fast .hero-anim-item:nth-child(1) { animation: heroFadeUpFast .55s ease .04s both; }
        .hero-slide.active .hero-anim-fade-up-fast .hero-anim-item:nth-child(2) { animation: heroFadeUpFast .55s ease .1s both; }
        .hero-slide.active .hero-anim-fade-up-fast .hero-anim-item:nth-child(3) { animation: heroFadeUpFast .55s ease .16s both; }
        .hero-slide.active .hero-anim-fade-up-fast .hero-anim-item:nth-child(4) { animation: heroFadeUpFast .55s ease .22s both; }
        .hero-slide.active .hero-anim-flip-up .hero-anim-item:nth-child(1) { animation: heroFlipUp .95s cubic-bezier(.16,1,.3,1) .08s both; }
        .hero-slide.active .hero-anim-flip-up .hero-anim-item:nth-child(2) { animation: heroFlipUp .95s cubic-bezier(.16,1,.3,1) .18s both; }
        .hero-slide.active .hero-anim-flip-up .hero-anim-item:nth-child(3) { animation: heroFlipUp .95s cubic-bezier(.16,1,.3,1) .28s both; }
        .hero-slide.active .hero-anim-flip-up .hero-anim-item:nth-child(4) { animation: heroFlipUp .95s cubic-bezier(.16,1,.3,1) .38s both; }
        .hero-slide.active .hero-anim-slide-up-long .hero-anim-item:nth-child(1) { animation: heroSlideUpLong 1s ease .1s both; }
        .hero-slide.active .hero-anim-slide-up-long .hero-anim-item:nth-child(2) { animation: heroSlideUpLong 1s ease .22s both; }
        .hero-slide.active .hero-anim-slide-up-long .hero-anim-item:nth-child(3) { animation: heroSlideUpLong 1s ease .34s both; }
        .hero-slide.active .hero-anim-slide-up-long .hero-anim-item:nth-child(4) { animation: heroSlideUpLong 1s ease .46s both; }
        .hero-slide.active .hero-anim-stagger-up .hero-anim-item:nth-child(1) { animation: heroSlideUp .85s ease .1s both; }
        .hero-slide.active .hero-anim-stagger-up .hero-anim-item:nth-child(2) { animation: heroSlideUp .85s ease .35s both; }
        .hero-slide.active .hero-anim-stagger-up .hero-anim-item:nth-child(3) { animation: heroSlideUp .85s ease .6s both; }
        .hero-slide.active .hero-anim-stagger-up .hero-anim-item:nth-child(4) { animation: heroSlideUp .85s ease .85s both; }
        
        /* Slider Controls */
        .slider-scroll-nav {
            position: absolute;
            bottom: 22px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 0.65rem 1.5rem;
            color: rgba(255, 255, 255, 0.95);
            transition: color 0.3s ease;
            animation: sliderNavFadeIn 1s ease 0.8s both;
        }
        .slider-scroll-nav:hover {
            color: #fff;
        }
        .slider-scroll-nav:focus {
            outline: none;
            color: #fff;
        }
        .slider-chevrons {
            position: relative;
            width: 30px;
            height: 28px;
            animation: sliderArrowBounce 1.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
        }
        .slider-chevron {
            position: absolute;
            left: 50%;
            width: 14px;
            height: 14px;
            margin-left: -7px;
            border-right: 2.5px solid currentColor;
            border-bottom: 2.5px solid currentColor;
            transform: rotate(45deg);
            border-radius: 1px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
        }
        .slider-chevron:nth-child(1) {
            top: 0;
            opacity: 0.5;
            animation: sliderChevronPulse 1.5s ease-in-out infinite;
        }
        .slider-chevron:nth-child(2) {
            top: 9px;
            opacity: 1;
            animation: sliderChevronPulse 1.5s ease-in-out 0.2s infinite;
        }
        .slider-scroll-nav::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 48px;
            height: 48px;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, 0.35);
            animation: sliderRingPulse 1.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
            pointer-events: none;
        }
        @keyframes sliderNavFadeIn {
            from { opacity: 0; transform: translateX(-50%) translateY(12px); }
            to   { opacity: 1; transform: translateX(-50%) translateY(0); }
        }
        @keyframes sliderArrowBounce {
            0%, 100% { transform: translateY(0); }
            50%      { transform: translateY(16px); }
        }
        @keyframes sliderChevronPulse {
            0%, 100% { opacity: 0.45; }
            50%      { opacity: 1; }
        }
        @keyframes sliderRingPulse {
            0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.9); }
            50%      { opacity: 0.7; transform: translate(-50%, -50%) scale(1.08); }
        }
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 3;
            backdrop-filter: blur(5px);
        }
        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.5);
            transform: translateY(-50%) scale(1.1);
        }
        .slider-arrow.prev {
            left: 30px;
        }
        .slider-arrow.next {
            right: 30px;
        }
        
        /* Default Hero (fallback) — Colorful Animated */
        .hero-default {
            height: calc(100vh - 56px - 44px);
            min-height: 350px;
            max-height: 860px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 0;
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 40%, #24243e 100%);
        }
        @supports (height: 100dvh) {
            .hero-default {
                height: calc(100dvh - 56px - 44px);
            }
        }

        /* Animated gradient mesh */
        .hero-default::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 60% at 20% 30%, rgba(99,102,241,.45) 0%, transparent 60%),
                radial-gradient(ellipse 60% 80% at 80% 70%, rgba(14,165,233,.4) 0%, transparent 60%),
                radial-gradient(ellipse 50% 50% at 50% 10%, rgba(236,72,153,.3) 0%, transparent 55%),
                radial-gradient(ellipse 40% 60% at 90% 20%, rgba(16,185,129,.25) 0%, transparent 50%);
            animation: meshShift 12s ease-in-out infinite alternate;
        }
        @keyframes meshShift {
            0%   { opacity: 1; transform: scale(1) rotate(0deg); }
            50%  { opacity: .85; transform: scale(1.05) rotate(1deg); }
            100% { opacity: 1; transform: scale(1.02) rotate(-1deg); }
        }

        /* Floating orbs */
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
            animation: orbFloat linear infinite;
        }
        .hero-orb-1 { width:420px;height:420px;background:rgba(99,102,241,.35);top:-80px;left:-100px;animation-duration:18s; }
        .hero-orb-2 { width:320px;height:320px;background:rgba(14,165,233,.3);bottom:-60px;right:-80px;animation-duration:14s;animation-delay:-5s; }
        .hero-orb-3 { width:240px;height:240px;background:rgba(236,72,153,.25);top:40%;left:60%;animation-duration:20s;animation-delay:-9s; }
        .hero-orb-4 { width:180px;height:180px;background:rgba(16,185,129,.2);top:20%;right:15%;animation-duration:16s;animation-delay:-3s; }
        @keyframes orbFloat {
            0%,100% { transform: translateY(0) scale(1); }
            33%      { transform: translateY(-30px) scale(1.05); }
            66%      { transform: translateY(20px) scale(.95); }
        }

        /* Particle canvas */
        #heroCanvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        /* Grid overlay */
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: 1;
        }

        .hero-default .container { position: relative; z-index: 3; }

        /* Hero text animations */
        .hero-eyebrow {
            display: inline-flex; align-items: center; gap: .5rem;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.2);
            color: rgba(255,255,255,.9);
            padding: .45rem 1.1rem;
            border-radius: 50px;
            font-size: .82rem;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(8px);
            animation: fadeSlideDown .8s ease both;
        }
        .hero-eyebrow .dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: #10b981;
            animation: pulse 2s ease infinite;
        }
        @keyframes pulse {
            0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,.6); }
            50%      { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
        }

        .hero-title-main {
            font-size: clamp(2.4rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.08;
            color: white;
            margin-bottom: 1.5rem;
            animation: fadeSlideUp .9s ease .15s both;
        }
        .hero-title-main .gradient-text {
            background: linear-gradient(135deg, #38bdf8, #818cf8, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease infinite;
        }
        @keyframes gradientShift {
            0%,100% { background-position: 0% 50%; }
            50%      { background-position: 100% 50%; }
        }

        .hero-desc-main {
            font-size: 1.1rem;
            color: rgba(255,255,255,.78);
            line-height: 1.75;
            max-width: 520px;
            margin-bottom: 2.5rem;
            animation: fadeSlideUp .9s ease .3s both;
        }

        .hero-cta-group {
            display: flex; flex-wrap: wrap; gap: 1rem;
            animation: fadeSlideUp .9s ease .45s both;
        }
        .btn-hero-primary {
            background: linear-gradient(135deg, #6366f1, #0ea5e9);
            color: white;
            font-weight: 700;
            padding: .9rem 2.2rem;
            border-radius: 50px;
            border: none;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex; align-items: center; gap: .5rem;
            box-shadow: 0 8px 30px rgba(99,102,241,.45);
            transition: all .3s ease;
            position: relative; overflow: hidden;
        }
        .btn-hero-primary::before {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(135deg, #818cf8, #38bdf8);
            opacity: 0; transition: opacity .3s;
        }
        .btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(99,102,241,.55); color: white; text-decoration: none; }
        .btn-hero-primary:hover::before { opacity: 1; }
        .btn-hero-primary span { position: relative; z-index: 1; }

        .btn-hero-outline {
            background: rgba(255,255,255,.1);
            color: white;
            font-weight: 600;
            padding: .9rem 2.2rem;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,.3);
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex; align-items: center; gap: .5rem;
            backdrop-filter: blur(8px);
            transition: all .3s ease;
        }
        .btn-hero-outline:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); color: white; text-decoration: none; transform: translateY(-3px); }

        /* Hero right visual */
        .hero-visual {
            animation: fadeSlideLeft .9s ease .2s both;
        }
        .hero-card-float {
            background: rgba(255,255,255,.1);
            border: 1px solid rgba(255,255,255,.2);
            border-radius: 20px;
            padding: 1.25rem 1.5rem;
            backdrop-filter: blur(12px);
            color: white;
            display: flex; align-items: center; gap: 1rem;
            margin-bottom: 1rem;
            transition: transform .3s;
        }
        .hero-card-float:hover { transform: translateX(6px); }
        .hero-card-float:nth-child(1) { animation: floatCard 6s ease-in-out infinite; }
        .hero-card-float:nth-child(2) { animation: floatCard 6s ease-in-out 2s infinite; }
        .hero-card-float:nth-child(3) { animation: floatCard 6s ease-in-out 4s infinite; }
        @keyframes floatCard {
            0%,100% { transform: translateY(0); }
            50%      { transform: translateY(-8px); }
        }
        .hero-card-icon {
            width: 48px; height: 48px; border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; flex-shrink: 0;
        }
        .hero-card-label { font-size: .75rem; color: rgba(255,255,255,.65); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
        .hero-card-value { font-size: 1.1rem; font-weight: 800; color: white; }

        /* Scroll indicator */
        .hero-scroll-hint {
            position: absolute;
            bottom: 2rem; left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex; flex-direction: column; align-items: center; gap: .4rem;
            color: rgba(255,255,255,.5);
            font-size: .75rem; font-weight: 600; letter-spacing: .08em;
            text-transform: uppercase;
            animation: fadeIn 1s ease 1.5s both;
        }
        .scroll-mouse {
            width: 24px; height: 38px;
            border: 2px solid rgba(255,255,255,.35);
            border-radius: 12px;
            display: flex; justify-content: center; padding-top: 6px;
        }
        .scroll-wheel {
            width: 4px; height: 8px;
            background: rgba(255,255,255,.6);
            border-radius: 2px;
            animation: scrollWheel 2s ease infinite;
        }
        @keyframes scrollWheel {
            0%   { transform: translateY(0); opacity: 1; }
            100% { transform: translateY(12px); opacity: 0; }
        }

        /* Keyframes shared */
        @keyframes fadeSlideDown {
            from { opacity: 0; transform: translateY(-20px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeSlideUp {
            from { opacity: 0; transform: translateY(30px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeSlideLeft {
            from { opacity: 0; transform: translateX(40px); }
            to   { opacity: 1; transform: translateX(0); }
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

        /* -- Section Reveal Animations -- */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
        }
        .reveal.reveal-left  { transform: translateX(-40px); }
        .reveal.reveal-right { transform: translateX(40px); }
        .reveal.reveal-scale { transform: scale(.92); }
        .reveal.visible {
            opacity: 1;
            transform: none;
        }
        .reveal-delay-1 { transition-delay: .1s; }
        .reveal-delay-2 { transition-delay: .2s; }
        .reveal-delay-3 { transition-delay: .3s; }
        .reveal-delay-4 { transition-delay: .4s; }
        .reveal-delay-5 { transition-delay: .5s; }

        /* -- Section Dividers -- */
        .section-wave {
            line-height: 0;
            overflow: hidden;
        }
        .section-wave svg { display: block; width: 100%; }

        /* -- Jurusan Section � colorful gradient bg -- */
        .jurusan-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #1a1a3e 100%);
            position: relative;
            overflow: hidden;
        }
        .jurusan-section::before {
            content: '';
            position: absolute; inset: 0;
            background:
                radial-gradient(ellipse 60% 50% at 10% 50%, rgba(99,102,241,.3) 0%, transparent 60%),
                radial-gradient(ellipse 50% 60% at 90% 50%, rgba(14,165,233,.25) 0%, transparent 60%);
        }
        .jurusan-section .container { position: relative; z-index: 1; }
        .jurusan-section .section-title { color: white; }
        .jurusan-section .section-subtitle { color: rgba(255,255,255,.7); }

        /* -- News Section � clean white -- */
        .news-section {
            background: white;
            padding: 6rem 0;
            position: relative;
        }
        .news-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, #6366f1, #0ea5e9, #10b981, #f59e0b, #ec4899);
        }

        /* -- Animated section label -- */
        .section-eyebrow {
            display: inline-flex; align-items: center; gap: .5rem;
            padding: .4rem 1.1rem;
            border-radius: 50px;
            font-size: .78rem;
            font-weight: 800;
            letter-spacing: .07em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        .eyebrow-blue  { background: #e0f2fe; color: #0369a1; }
        .eyebrow-indigo{ background: #ede9fe; color: #4f46e5; }
        .eyebrow-green { background: #d1fae5; color: #065f46; }
        .eyebrow-pink  { background: #fce7f3; color: #9d174d; }
        .eyebrow-amber { background: #fef3c7; color: #92400e; }

        /* -- Ticker / marquee strip -- */
        .ticker-section {
            background: linear-gradient(90deg, #6366f1, #0ea5e9, #10b981, #f59e0b, #ec4899, #6366f1);
            background-size: 300% 100%;
            animation: tickerBg 8s linear infinite;
            padding: .75rem 0;
            overflow: hidden;
        }
        @keyframes tickerBg {
            0%   { background-position: 0% 50%; }
            100% { background-position: 300% 50%; }
        }
        .ticker-track {
            display: flex; gap: 3rem;
            animation: tickerScroll 25s linear infinite;
            width: max-content;
        }
        .ticker-track:hover { animation-play-state: paused; }
        @keyframes tickerScroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .ticker-item {
            color: white;
            font-weight: 700;
            font-size: .85rem;
            letter-spacing: .05em;
            white-space: nowrap;
            display: flex; align-items: center; gap: .6rem;
        }
        .ticker-item::before {
            content: '\2756';
            opacity: .7;
        }
        
        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0ea5e9 100%) !important;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        .stats-section::before {
            content: '';
            position: absolute;
            top: -80px; right: -80px;
            width: 400px; height: 400px;
            border-radius: 50%;
            background: rgba(255,255,255,.04);
            pointer-events: none;
        }
        .stats-section::after {
            content: '';
            position: absolute;
            bottom: -60px; left: -60px;
            width: 300px; height: 300px;
            border-radius: 50%;
            background: rgba(255,255,255,.03);
            pointer-events: none;
        }
        .stats-section .container { position: relative; z-index: 1; }
        .stat-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: rgba(255,255,255,.12) !important;
            border-radius: 24px;
            border: 1px solid rgba(255,255,255,.25);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, rgba(255,255,255,.3), rgba(255,255,255,.8), rgba(255,255,255,.3));
            border-radius: 24px 24px 0 0;
        }
        .stat-card:hover {
            transform: translateY(-8px);
            background: rgba(255,255,255,.18);
            border-color: rgba(255,255,255,.4);
            box-shadow: 0 20px 40px rgba(0,0,0,.2);
        }
        .stat-icon {
            width: 56px; height: 56px;
            border-radius: 16px;
            background: rgba(255,255,255,.15);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1.25rem;
            font-size: 1.4rem;
            color: white;
            border: 1px solid rgba(255,255,255,.25);
        }
        .stat-number {
            font-size: 3.25rem;
            font-weight: 900;
            color: white !important;
            margin-bottom: 0.4rem;
            line-height: 1;
            letter-spacing: -1px;
        }
        .stat-label {
            font-size: .95rem;
            color: rgba(255,255,255,.9) !important;
            font-weight: 600;
            margin-top: .3rem;
            text-shadow: 0 1px 3px rgba(0,0,0,.3);
        }
        
        /* Features Section */
        .features-section {
            padding: 5rem 0;
            background: #f8fafc;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--gray-800);
        }
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--gray-600);
            margin-bottom: 4rem;
        }
        .feature-card {
            padding: 2.5rem 2rem 2rem;
            border-radius: 28px;
            height: 100%;
            transition: all .35s cubic-bezier(.22,.68,0,1.2);
            border: 1.5px solid transparent;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        /* Semua card pakai warna tema utama — ikut berubah jika :root diubah */
        .feature-card-blue,
        .feature-card-indigo,
        .feature-card-amber {
            background: var(--primary-blue) !important;
            box-shadow: 0 8px 32px rgba(14,165,233,.35);
            border: none;
        }
        .feature-card-blue:hover,
        .feature-card-indigo:hover,
        .feature-card-amber:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 24px 52px rgba(14,165,233,.5);
            background: var(--primary-blue-dark) !important;
        }
        .feature-card-blue .feature-title,
        .feature-card-indigo .feature-title,
        .feature-card-amber .feature-title { color: #fff !important; }
        .feature-card-blue .feature-desc,
        .feature-card-indigo .feature-desc,
        .feature-card-amber .feature-desc  { color: rgba(255,255,255,.88) !important; }
        /* Garis warna bawah card */
        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 5px;
            border-radius: 0 0 28px 28px;
            transition: opacity 0.3s;
            opacity: 0;
        }
        .feature-card:hover::after { opacity: 1; }
        .feature-card-blue::after  { background: linear-gradient(90deg,#0ea5e9,#38bdf8); }
        .feature-card-indigo::after{ background: linear-gradient(90deg,#6366f1,#a78bfa); }
        .feature-card-amber::after { background: linear-gradient(90deg,#f59e0b,#fb923c); }

        .feature-icon {
            width: 90px; height: 90px;
            border-radius: 26px;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1.75rem;
            font-size: 2.2rem;
            position: relative;
        }
        /* Halo glow di belakang icon */
        .feature-icon::before {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 34px;
            opacity: .18;
            transition: opacity .3s;
        }
        .feature-card:hover .feature-icon::before { opacity: .32; }
        .feature-card-blue  .feature-icon::before { background: radial-gradient(circle, #38bdf8, transparent 70%); }
        .feature-card-indigo .feature-icon::before{ background: radial-gradient(circle, #818cf8, transparent 70%); }
        .feature-card-amber .feature-icon::before { background: radial-gradient(circle, #fbbf24, transparent 70%); }

        .feature-title {
            font-size: 1.3rem; font-weight: 800;
            margin-bottom: .75rem; color: #0f172a;
            letter-spacing: -.02em;
        }
        .feature-desc {
            color: #64748b; line-height: 1.75;
            font-size: .92rem; margin: 0;
        }
        
        /* News Section */
        .news-section {
            background: white;
            padding: 6rem 0;
        }
        a:has(.news-card) { display: block; height: 100%; text-decoration: none; color: inherit; }
        .news-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 2px 20px rgba(14, 165, 233, 0.07);
            transition: all 0.35s ease;
            height: 100%;
            border: 1px solid var(--gray-100);
        }
        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 48px rgba(14, 165, 233, 0.16);
            border-color: var(--accent-blue);
        }
        .news-image {
            height: 210px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        .news-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 60%);
            transition: opacity .3s;
        }
        .news-card:hover .news-image::after { opacity: .6; }
        .news-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--primary-blue);
            color: white;
            padding: 0.35rem 0.9rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: capitalize;
            z-index: 1;
            letter-spacing: .03em;
        }
        .news-content {
            padding: 1.75rem;
        }
        .news-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: .75rem;
            color: var(--gray-800);
            line-height: 1.45;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-excerpt {
            color: var(--gray-500);
            line-height: 1.65;
            margin-bottom: 1.25rem;
            font-size: .9rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.82rem;
            color: var(--gray-400);
            padding-top: 1rem;
            border-top: 1px solid var(--gray-100);
        }
        .news-meta a {
            color: var(--primary-blue);
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: .3rem;
            transition: gap .2s;
        }
        .news-meta a:hover { gap: .6rem; color: var(--primary-blue-dark); }
        
        /* Gallery Section - Modern Clean */
        .gallery-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, #f8fafc 0%, #f0f9ff 100%);
            position: relative;
        }
        .gallery-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, #10b981, #0ea5e9, #6366f1, #ec4899);
        }
        .gallery-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
        .gallery-masonry .g-item { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; background: #e2e8f0; }
        .gallery-masonry .g-item:nth-child(1) { grid-column: span 2; }
        .gallery-masonry .g-item img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.4s ease; }
        .gallery-masonry .g-item:nth-child(1) img,
        .gallery-masonry .g-item:nth-child(2) img { height: 320px; }
        .gallery-masonry .g-item:hover img { transform: scale(1.05); }
        .g-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,165,233,0.85) 0%, transparent 55%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 1.25rem; }
        .g-item:hover .g-overlay { opacity: 1; }
        .g-overlay-title { color: white; font-weight: 700; font-size: 0.95rem; line-height: 1.3; }
        .g-overlay-count { color: rgba(255,255,255,0.85); font-size: 0.78rem; margin-top: 0.2rem; }
        .g-count-badge { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); color: white; border-radius: 20px; padding: 3px 10px; font-size: 0.75rem; font-weight: 600; }
        @media(max-width:768px) { .gallery-masonry { grid-template-columns: repeat(2,1fr); } .gallery-masonry .g-item:nth-child(1) { grid-column: span 2; } .gallery-masonry .g-item img { height: 200px; } .gallery-masonry .g-item:nth-child(1) img { height: 240px; } }
        @media(max-width:480px) { .gallery-masonry { grid-template-columns: 1fr; } .gallery-masonry .g-item:nth-child(1) { grid-column: span 1; } }

        /* BKK Home Section */
        .bkk-home-section { padding: 5rem 0; background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%); position: relative; overflow: hidden; }
        .bkk-home-section::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(16,185,129,0.08); }
        .bkk-home-section::after { content: ''; position: absolute; bottom: -40px; left: -40px; width: 200px; height: 200px; border-radius: 50%; background: rgba(16,185,129,0.06); }
        .bkk-home-section .container { position: relative; z-index: 1; }
        .bkk-scroll-track { display: flex; gap: 1.25rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
        .bkk-scroll-track::-webkit-scrollbar { display: none; }
        .bkk-home-card { flex: 0 0 300px; background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(16,185,129,0.1); border: 1px solid #d1fae5; transition: all 0.3s; scroll-snap-align: start; display: flex; flex-direction: column; }
        .bkk-home-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(16,185,129,0.2); }
        .bkk-home-img { height: 160px; object-fit: cover; width: 100%; }
        .bkk-home-placeholder { height: 160px; background: linear-gradient(135deg, #064e3b, #10b981); display: flex; align-items: center; justify-content: center; color: white; font-size: 2.5rem; }
        .bkk-home-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
        .bkk-home-kat { font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.7rem; border-radius: 20px; display: inline-block; margin-bottom: 0.6rem; }
        .bkk-home-kat.kerja { background: #d1fae5; color: #065f46; }
        .bkk-home-kat.magang { background: #dbeafe; color: #1e40af; }
        .bkk-home-kat.beasiswa { background: #fef3c7; color: #92400e; }
        .bkk-home-kat.lainnya { background: #f1f5f9; color: #475569; }
        .bkk-home-title { font-size: 0.95rem; font-weight: 700; color: #1e293b; margin-bottom: 0.3rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .bkk-home-co { font-size: 0.8rem; color: #10b981; font-weight: 600; margin-bottom: 0.25rem; }
        .bkk-home-loc { font-size: 0.75rem; color: #64748b; margin-bottom: 0.75rem; }
        .bkk-home-actions { display: flex; gap: 0.5rem; margin-top: auto; }
        .bkk-home-btn-det { flex: 1; background: #f0fdf4; color: #065f46; padding: 0.5rem; border-radius: 50px; text-decoration: none; font-size: 0.78rem; font-weight: 600; text-align: center; transition: all 0.2s; }
        .bkk-home-btn-det:hover { background: #d1fae5; color: #064e3b; text-decoration: none; }
        .bkk-home-btn-daf { flex: 1; background: #10b981; color: white; padding: 0.5rem; border-radius: 50px; text-decoration: none; font-size: 0.78rem; font-weight: 600; text-align: center; transition: all 0.2s; }
        .bkk-home-btn-daf:hover { background: #059669; color: white; text-decoration: none; }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 40%, #1a1a3e 100%);
            padding: 7rem 0;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute; inset: 0;
            background:
                radial-gradient(ellipse 70% 60% at 20% 50%, rgba(99,102,241,.4) 0%, transparent 60%),
                radial-gradient(ellipse 60% 70% at 80% 50%, rgba(14,165,233,.35) 0%, transparent 60%),
                radial-gradient(ellipse 40% 40% at 50% 0%, rgba(236,72,153,.25) 0%, transparent 55%);
            animation: meshShift 10s ease-in-out infinite alternate;
        }
        .cta-section .container { position: relative; z-index: 1; }
            color: white;
            text-align: center;
        }
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .cta-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 3rem;
        }
        
        /* Buttons */
        .btn-primary {
            background: var(--primary-blue);
            border-color: var(--primary-blue);
            color: white;
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background: var(--primary-blue-dark);
            border-color: var(--primary-blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
        }
        .btn-outline-primary {
            color: var(--primary-blue);
            border-color: var(--primary-blue);
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-outline-primary:hover {
            background: var(--primary-blue);
            border-color: var(--primary-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
        }
        
        /* Footer */
        .footer {
            background: var(--gray-900);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
        }
        .footer-link {
            color: var(--gray-300);
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: block;
            transition: color 0.3s ease;
        }
        .footer-link:hover {
            color: var(--accent-blue);
            text-decoration: none;
        }
        .footer-bottom {
            border-top: 1px solid var(--gray-700);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
            color: var(--gray-400);
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: white;
                border-radius: 15px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                margin-top: 1rem;
                padding: 1rem;
            }
            .nav-item {
                margin: 0.25rem 0;
            }
            .nav-link {
                padding: 0.75rem 1rem !important;
                border-radius: 8px;
            }
            .hero-title { font-size: 2.5rem; }
            .section-title { font-size: 2rem; }
            .stat-number { font-size: 2rem; }
        }
        
        @media (max-width: 768px) {
            .hero-title { font-size: 2rem; }
            .hero-subtitle { font-size: 1rem; }
            .section-title { font-size: 1.8rem; }
        }
        @media (max-width: 480px) {
            .hero-title { font-size: 1.5rem; }
        }

        /* ── Mobile Hero Slider Fix ── */
        @media (max-width: 768px) {
            .hero-section { padding-top: 56px; }

            /* Slider tinggi otomatis ikut lebar layar × rasio gambar 2.23:1 */
            .hero-slider {
                height: auto !important;
                min-height: unset !important;
                max-height: unset !important;
                /* lebar layar 390px ÷ 2.23 ≈ 175px — pakai padding-bottom trick */
                padding-bottom: 56.25%; /* fallback 16:9 */
                aspect-ratio: unset;
            }
            @supports (aspect-ratio: 16/9) {
                .hero-slider {
                    padding-bottom: 0;
                    aspect-ratio: 16 / 9;
                }
            }

            /* Gambar full width tanpa terpotong */
            .hero-slide {
                background-size: 100% auto !important;
                background-position: center top !important;
                background-repeat: no-repeat !important;
                /* Background biru gelap agar bawah tidak kosong */
                background-color: #0c4a6e !important;
                align-items: flex-end;
            }

            /* Overlay dari bawah agar teks terbaca */
            .hero-slide::before {
                background: linear-gradient(to top,
                    rgba(0,0,0,0.85) 0%,
                    rgba(0,0,0,0.4) 40%,
                    rgba(0,0,0,0) 70%) !important;
            }

            /* Teks di bawah */
            .hero-content {
                max-width: 100%;
                padding: 0.5rem 1rem 2.5rem;
            }
            .hero-content-row.hero-align-tengah { justify-content: center; }
            .hero-align-tengah .hero-content { text-align: center; }
            .hero-title { font-size: 1.1rem !important; margin-bottom: 0.25rem; line-height: 1.3; }
            .hero-subtitle { font-size: 0.75rem !important; margin-bottom: 0.25rem; }
            .hero-description { display: none !important; } /* sembunyikan deskripsi di mobile */
            .btn-hero { padding: 0.35rem 0.9rem; font-size: 0.78rem; }

            /* Arrow navigasi */
            .slider-arrow { width: 28px; height: 28px; font-size: 0.7rem; }
            .slider-arrow.prev { left: 5px; }
            .slider-arrow.next { right: 5px; }

            /* Panah bawah slider */
            .slider-scroll-nav { bottom: 8px; padding: 0.4rem 1rem; }
            .slider-chevrons { width: 24px; height: 24px; }
            .slider-chevron { width: 11px; height: 11px; margin-left: -5.5px; }
            .slider-chevron:nth-child(2) { top: 7px; }
            .slider-scroll-nav::after { width: 40px; height: 40px; }
            @keyframes sliderArrowBounce {
                0%, 100% { transform: translateY(0); }
                50%      { transform: translateY(12px); }
            }

            /* Hero default (fallback tanpa slider) */
            .hero-default {
                height: auto !important;
                min-height: unset !important;
                padding-top: 3rem;
                padding-bottom: 3rem;
                aspect-ratio: unset;
            }
        }

        /* -- Media Sosial Section -- */
        .medsos-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--secondary-blue) 50%, var(--primary-blue) 100%);
            position: relative;
            overflow: hidden;
        }
        .medsos-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(255,255,255,.04);
            pointer-events: none;
        }
        .medsos-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: rgba(255,255,255,.03);
            pointer-events: none;
        }
        .medsos-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .medsos-platforms { display: flex; gap: .6rem; flex-wrap: wrap; }
        .medsos-platform-btn {
            width: 40px; height: 40px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            color: white; font-size: 1.1rem; text-decoration: none;
            transition: transform .2s, box-shadow .2s;
            box-shadow: 0 2px 8px rgba(0,0,0,.3);
        }
        .medsos-platform-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.4); color: white; }

        /* Featured post */
        .medsos-featured {
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.15);
            border-radius: 24px;
            padding: 1.5rem;
            backdrop-filter: blur(10px);
            height: 100%;
        }
        .medsos-featured-badge {
            display: inline-flex; align-items: center;
            background: rgba(255,255,255,.15); color: white;
            padding: .3rem .9rem; border-radius: 50px;
            font-size: .8rem; font-weight: 600;
            margin-bottom: 1rem;
        }
        .medsos-featured-title {
            font-size: 1.1rem; font-weight: 700; color: white;
            margin-bottom: 1rem; line-height: 1.4;
        }
        .medsos-embed-wrap { border-radius: 16px; overflow: hidden; margin-bottom: 1rem; }
        .medsos-featured-link {
            display: inline-flex; align-items: center;
            color: rgba(255,255,255,.8); font-size: .85rem;
            text-decoration: none; transition: color .2s;
        }
        .medsos-featured-link:hover { color: white; text-decoration: none; }

        /* List items */
        .medsos-list { display: flex; flex-direction: column; gap: .75rem; }
        .medsos-list-item {
            display: flex; align-items: center; gap: 1rem;
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 14px; padding: 1rem 1.25rem;
            text-decoration: none; transition: all .25s;
            backdrop-filter: blur(5px);
        }
        .medsos-list-item:hover {
            background: rgba(255,255,255,.15);
            border-color: rgba(255,255,255,.3);
            transform: translateX(4px);
            text-decoration: none;
        }
        .medsos-list-icon {
            width: 44px; height: 44px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            color: white; font-size: 1.2rem; flex-shrink: 0;
        }
        .medsos-list-content { flex: 1; min-width: 0; }
        .medsos-list-platform { font-size: .72rem; color: rgba(255,255,255,.6); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
        .medsos-list-title { font-size: .9rem; font-weight: 600; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .medsos-list-arrow { color: rgba(255,255,255,.4); font-size: .85rem; flex-shrink: 0; }
        .medsos-list-item:hover .medsos-list-arrow { color: white; }

        .medsos-follow-cta {
            background: rgba(255,255,255,.06);
            border: 1px dashed rgba(255,255,255,.2);
            border-radius: 14px; padding: 1.25rem 1.5rem;
            margin-top: .25rem;
        }

        /* -- Link Terkait Slider -- */
        .link-terkait-section {
            background: var(--gray-50);
            padding: 0;
            overflow: hidden;
            border-top: 1px solid var(--gray-100);
            border-bottom: 1px solid var(--gray-100);
        }
        .link-terkait-wrapper {
            display: flex;
            align-items: stretch;
        }
        .link-terkait-header {
            background: var(--primary-blue);
            color: white;
            font-weight: 700;
            font-size: .9rem;
            padding: 1.25rem 1.5rem;
            white-space: nowrap;
            display: flex;
            align-items: center;
            min-width: 130px;
            justify-content: center;
        }
        .link-terkait-track-container {
            flex: 1;
            overflow: hidden;
            position: relative;
            padding: 0.75rem 0;
        }
        .link-terkait-track-container::before,
        .link-terkait-track-container::after {
            content: '';
            position: absolute;
            top: 0; bottom: 0;
            width: 40px;
            z-index: 2;
            pointer-events: none;
        }
        .link-terkait-track-container::before {
            left: 0;
            background: linear-gradient(to right, var(--gray-50), transparent);
        }
        .link-terkait-track-container::after {
            right: 0;
            background: linear-gradient(to left, var(--gray-50), transparent);
        }
        .link-terkait-track {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            animation: scrollLinks 20s linear infinite;
            width: max-content;
            padding: 0 1rem;
        }
        .link-terkait-track:hover { animation-play-state: paused; }
        @keyframes scrollLinks {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .link-terkait-item {
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 10px;
            padding: 0.5rem 1.25rem;
            min-width: 110px;
            height: 52px;
            text-decoration: none;
            box-shadow: 0 2px 8px rgba(14,165,233,.08);
            border: 1px solid var(--gray-100);
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
            flex-shrink: 0;
        }
        .link-terkait-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(14,165,233,.15);
            border-color: var(--accent-blue);
            text-decoration: none;
        }
        .link-terkait-item img {
            max-height: 36px;
            max-width: 100px;
            object-fit: contain;
        }
        .link-terkait-text {
            font-weight: 600;
            font-size: 0.82rem;
            color: var(--gray-700);
            text-align: center;
            line-height: 1.3;
        }

        /* -- Mobile Bottom Navigation -- */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
            z-index: 1050;
            padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
            border-top: 1px solid #f1f5f9;
        }
        .mobile-bottom-nav .nav-items {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }
        .mobile-bottom-nav .nav-item-mob {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
            text-decoration: none;
            color: #94a3b8;
            font-size: 0.65rem;
            font-weight: 500;
            padding: 0.25rem 0.5rem;
            border-radius: 12px;
            transition: all 0.2s;
            min-width: 52px;
        }
        .mobile-bottom-nav .nav-item-mob.center-btn {
            background: var(--primary-blue, #0ea5e9);
            color: white;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            font-size: 1.3rem;
            padding: 0;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(14,165,233,0.4);
            margin-top: -12px;
        }
        .mobile-bottom-nav .nav-item-mob.center-btn:hover,
        .mobile-bottom-nav .nav-item-mob.center-btn.active {
            background: var(--primary-blue-dark, #0284c7);
            color: white;
        }
        .mobile-bottom-nav .nav-item-mob i {
            font-size: 1.2rem;
        }
        .mobile-bottom-nav .nav-item-mob:hover,
        .mobile-bottom-nav .nav-item-mob.active {
            color: var(--primary-blue, #0ea5e9);
        }
        .mobile-bottom-nav .nav-item-mob .icon-wrap {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f1f5f9;
            transition: background 0.2s;
        }
        .mobile-bottom-nav .nav-item-mob.active .icon-wrap,
        .mobile-bottom-nav .nav-item-mob:hover .icon-wrap {
            background: #e0f2fe;
        }
        @media (max-width: 991px) {
            .mobile-bottom-nav { display: block; }
            body { padding-bottom: 70px; }
        }

        /* -- Fasilitas Home Section -- */
        .fasilitas-home-section {
            padding: 6rem 0;
            background: white;
            position: relative;
            overflow: hidden;
        }
        .fasilitas-bg-decor {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }
        .fasilitas-decor-1 {
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(14,165,233,.06) 0%, transparent 70%);
            top: -100px; right: -100px;
        }
        .fasilitas-decor-2 {
            width: 350px; height: 350px;
            background: radial-gradient(circle, rgba(139,92,246,.05) 0%, transparent 70%);
            bottom: -80px; left: -80px;
        }
        .fasilitas-eyebrow {
            display: inline-flex; align-items: center;
            background: var(--light-blue); color: var(--primary-blue);
            font-size: .8rem; font-weight: 700; letter-spacing: .08em;
            text-transform: uppercase; padding: .4rem 1rem;
            border-radius: 50px; margin-bottom: 1rem;
        }
        .fasilitas-section-title {
            font-size: 2.5rem; font-weight: 800;
            color: var(--gray-800); line-height: 1.2; margin-bottom: .75rem;
        }
        .fasilitas-highlight {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .fasilitas-section-sub {
            font-size: 1.05rem; color: var(--gray-600); max-width: 520px;
        }
        .btn-fasilitas-all {
            display: inline-flex; align-items: center;
            background: var(--primary-blue); color: white;
            font-weight: 600; font-size: .95rem;
            padding: .75rem 1.75rem; border-radius: 50px;
            text-decoration: none; transition: all .3s;
            box-shadow: 0 4px 15px rgba(14,165,233,.3);
        }
        .btn-fasilitas-all:hover {
            background: var(--primary-blue-dark); color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(14,165,233,.4);
            text-decoration: none;
        }

        /* Grid layout */
        .fasilitas-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }
        @media (max-width: 1199px) { .fasilitas-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 767px)  { .fasilitas-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 480px)  { .fasilitas-grid { grid-template-columns: 1fr; } }

        /* Featured item spans 2 cols */
        .fasilitas-item--featured {
            grid-column: span 2;
        }
        @media (max-width: 767px) { .fasilitas-item--featured { grid-column: span 2; } }
        @media (max-width: 480px) { .fasilitas-item--featured { grid-column: span 1; } }

        .fasilitas-item {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--gray-100);
            box-shadow: 0 4px 20px rgba(14,165,233,.06);
            transition: all .3s ease;
            display: flex; flex-direction: column;
        }
        .fasilitas-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(14,165,233,.14);
            border-color: var(--accent-blue);
        }

        /* Image */
        .fasilitas-item-img-wrap {
            position: relative; overflow: hidden;
        }
        .fasilitas-item-img {
            width: 100%; object-fit: cover;
            transition: transform .4s ease;
            display: block;
        }
        .fasilitas-item { } /* height auto */
        .fasilitas-item--featured .fasilitas-item-img { height: 240px; }
        .fasilitas-item:not(.fasilitas-item--featured) .fasilitas-item-img { height: 160px; }
        .fasilitas-item:hover .fasilitas-item-img { transform: scale(1.06); }
        .fasilitas-item-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 60%);
        }
        .fasilitas-item-badge {
            position: absolute; bottom: .75rem; left: .75rem;
            color: white; font-size: .72rem; font-weight: 700;
            padding: .3rem .75rem; border-radius: 50px;
            text-transform: capitalize; letter-spacing: .03em;
        }

        /* Placeholder (no image) */
        .fasilitas-item-placeholder {
            display: flex; align-items: center; justify-content: center;
            font-size: 2.5rem; color: white; position: relative;
        }
        .fasilitas-item--featured .fasilitas-item-placeholder { height: 240px; }
        .fasilitas-item:not(.fasilitas-item--featured) .fasilitas-item-placeholder { height: 160px; }

        /* Body */
        .fasilitas-item-body {
            padding: 1.1rem 1.25rem;
            display: flex; align-items: flex-start; gap: .85rem;
            flex: 1;
        }
        .fasilitas-item-icon-wrap {
            width: 40px; height: 40px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem;
        }
        .fasilitas-item-info { flex: 1; min-width: 0; }
        .fasilitas-item-nama {
            font-size: .95rem; font-weight: 700;
            color: var(--gray-800); margin-bottom: .3rem;
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }
        .fasilitas-item--featured .fasilitas-item-nama { font-size: 1.1rem; }
        .fasilitas-item-desc {
            font-size: .82rem; color: var(--gray-500);
            line-height: 1.5; margin: 0;
        }
