/* ----- RESET & GLOBAL ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    height: 100%;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #0a1d3c;
    color: #0a1628;
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 10;
}
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0a1a2f;
}
::-webkit-scrollbar-thumb {
    background: #fbbf24;
    border-radius: 10px;
}

/* ----- HEADER (FIXED) ----- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 50px;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.logo-box {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.logo-img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s;
}
.logo-img:hover {
    transform: scale(1.04);
}
.logo-text {
    font-size: 11px;
    font-weight: 500;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 14px;
    opacity: 0.8;
    line-height: 1.3;
    letter-spacing: 0.2px;
}
nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 600;
    flex-wrap: wrap;
    justify-content: right;
    flex: 1;
}
nav a {
    padding: 6px 0;
    position: relative;
    transition: color 0.25s;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}
nav a:hover {
    color: #fbbf24;
}
nav a.active {
    color: #fbbf24;
}
nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 4px;
    box-shadow: 0 0 16px rgba(251, 191, 36, 0.3);
}
.nav-dropdown {
    position: relative;
}
.nav-dropdown>a {
    cursor: default;
}
.nav-dropdown>a::after {
    content: ' ▾';
    font-size: 10px;
    opacity: 0.6;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    color: #0a1628;
    min-width: 220px;
    border-radius: 16px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(6px);
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
}
.nav-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
    border-left: 3px solid transparent;
    transition: all 0.15s;
}
.dropdown-menu a:hover {
    background: #f1f5f9;
    border-left-color: #fbbf24;
    color: #0a1628;
}
.drop-icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
}

/* ----- HERO ----- */
.hero-section {
    position: relative;
    background: #0a1628;
    color: #fff;
    padding: 100px 0 70px;
    min-height: 420px;
    overflow: hidden;
    isolation: isolate;
    margin-top: 0;
}
.hero-bg-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 80% 60% at 30% 30%, rgba(59, 130, 246, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 60% 70% at 80% 70%, rgba(251, 191, 36, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 100%, rgba(139, 92, 246, 0.10) 0%, transparent 50%);
    animation: glowPulse 8s ease-in-out infinite alternate;
}
@keyframes glowPulse {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}
.particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    animation: floatParticle 20s infinite linear;
}
.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-duration: 22s;
    background: rgba(251, 191, 36, 0.05);
}
.particle:nth-child(2) {
    width: 120px;
    height: 120px;
    bottom: 5%;
    right: 8%;
    animation-duration: 28s;
    background: rgba(59, 130, 246, 0.04);
}
.particle:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 55%;
    animation-duration: 18s;
    background: rgba(139, 92, 246, 0.05);
}
.particle:nth-child(4) {
    width: 40px;
    height: 40px;
    bottom: 30%;
    left: 20%;
    animation-duration: 25s;
    background: rgba(251, 191, 36, 0.08);
}
.particle:nth-child(5) {
    width: 200px;
    height: 200px;
    top: -60px;
    right: -40px;
    animation-duration: 30s;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.06) 0%, transparent 70%);
}
@keyframes floatParticle {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(40px, 10px) scale(1.05);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}
.hero-gif-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    opacity: 0.35;
}
.hero-gif-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    animation: shipFloat 10s ease-in-out infinite alternate;
    filter: none;
}
@keyframes shipFloat {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-16px) scale(1.03);
    }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0a1628 15%, rgba(10, 22, 40, 0.6) 55%, transparent 80%);
    z-index: 2;
}
.hero-main {
    margin-top: 16px;
    position: relative;
    z-index: 10;
    max-width: 600px;
}
.hero-main .badge-new {
    display: inline-block;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.25);
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
    color: #fbbf24;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
}
.hero-main h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.05;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.hero-main h1 span {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-main p {
    font-size: 17px;
    margin-top: 10px;
    opacity: 0.85;
    max-width: 480px;
}
.tags {
    display: flex;
    gap: 20px;
    margin-top: 14px;
    font-size: 13px;
    color: #fcd34d;
    opacity: 0.7;
    font-weight: 500;
}
.btn-group {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.btn {
    padding: 13px 32px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0a1628;
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.35);
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-primary:hover::after {
    opacity: 1;
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(251, 191, 36, 0.5);
}
.btn-primary span {
    position: relative;
    z-index: 1;
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ----- WRAPPER ----- */
.wrapper {
    padding-bottom: 140px;
    margin-top: -30px;
    position: relative;
    z-index: 20;
}

/* ----- STATS ----- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.stat-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    padding: 28px 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #8b5cf6, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s;
}
.stat-card:hover::before {
    opacity: 1;
}
.stat-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
    border-color: rgba(251, 191, 36, 0.2);
}
.icon-shape {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.stat-card:hover .icon-shape {
    transform: scale(1.08) rotate(-2deg);
}
.bg-green {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
}
.bg-purple {
    background: linear-gradient(135deg, #ede9fe, #c4b5fd);
    color: #5b21b6;
}
.bg-blue {
    background: linear-gradient(135deg, #dbeafe, #93c5fd);
    color: #1d4ed8;
}
.stat-info .title {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.stat-info .value {
    font-size: 32px;
    font-weight: 900;
    color: #0a1628;
    margin-top: 2px;
    letter-spacing: -0.5px;
}
.stat-card:hover .stat-info .value {
    color: #0a1628;
}
.stat-info .trend {
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.trend-up {
    color: #059669;
}
.trend-down {
    color: #dc2626;
}
.trend-neutral {
    color: #64748b;
}
.trend span {
    color: #9ca3af;
    font-weight: 400;
}

/* ----- SECTION CARD ----- */
.section-block-card {
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.section-block-card:hover {
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.05);
    border-color: rgba(251, 191, 36, 0.15);
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.section-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #0a1628;
    display: flex;
    align-items: center;
    gap: 8px;
}
.section-header .link {
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
}
.section-header .link:hover {
    color: #1d4ed8;
    gap: 8px;
}

/* ----- DOUBLE GRID ----- */
.double-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}
.double-grid .section-block-card {
    min-height: 380px;
}
.double-grid .agenda-card {
    min-height: 0;
}
.chart-wrapper {
    flex: 1;
    min-height: 0;
    position: relative;
}
.chart-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
}

/* ----- CHART CONTROLS ----- */
.chart-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}
.year-filter {
    border: 1px solid #dbe4f0;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    background: #fff;
    outline: none;
}
.year-filter:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* ----- AGENDA KEGIATAN ----- */
.agenda-card {
    display: flex;
    flex-direction: column;
}
.agenda-card .section-header h2 {
    font-size: 15px;
}
.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}
.agenda-item {
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
}
.agenda-date {
    min-width: 44px;
    font-weight: 700;
    color: #2563eb;
    font-size: 11px;
    padding-top: 2px;
}
.agenda-item strong {
    display: block;
    font-size: 12.5px;
    color: #0a1628;
    margin-bottom: 2px;
}
.agenda-item p {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.4;
}

/* ----- PETA ----- */
#world-map {
    flex: 1;
    width: 100%;
    border-radius: 16px;
    min-height: 500px;
    background: #e8edf4;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ----- PASAR POTENSIAL ----- */
.country-inner-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.country-item {
    text-align: center;
    padding: 24px 16px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.country-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s;
}
.country-item:hover::after {
    opacity: 1;
}
.country-item:hover {
    transform: translateY(-6px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    border-color: rgba(251, 191, 36, 0.2);
}
.flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
    border-radius: 8px;
    margin: 0 auto 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    font-size: 40px;
    line-height: 1;
    transition: transform 0.3s;
}
.country-item:hover .flag {
    transform: scale(1.05);
}
.country-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 6px 0 2px;
}
.badge-potensial {
    font-size: 11px;
    font-weight: 600;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    padding: 4px 16px;
    border-radius: 40px;
    display: inline-block;
    margin: 6px 0 2px;
}
.currency {
    font-size: 15px;
    font-weight: 800;
    color: #0a1628;
    margin-top: 2px;
}
.growth-badge {
    font-size: 12px;
    font-weight: 600;
    color: #059669;
    background: #d1fae5;
    padding: 2px 14px;
    border-radius: 40px;
    display: inline-block;
    margin-top: 4px;
    transition: all 0.2s;
}
.country-item:hover .growth-badge {
    background: #a7f3d0;
}

/* ----- ATASE & ITPC ----- */
.atase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 4px;
}
.atase-card {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.atase-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
    border-color: rgba(251, 191, 36, 0.2);
}
.atase-flag {
    font-size: 36px;
    line-height: 1;
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 2px;
}
.atase-card-body h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 2px;
}
.atase-location {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 6px;
}
.atase-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}
.badge-atase,
.badge-itpc {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 999px;
    color: #fff;
}
.badge-atase {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.badge-itpc {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}
.atase-contact {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 11px;
    color: #475569;
}
.atase-contact i {
    width: 14px;
    margin-right: 4px;
    color: #9ca3af;
}

/* ----- FOOTER (default fixed) ----- */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0a1628;
    color: #fff;
    padding: 16px 0 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    z-index: 1000;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
}
.footer-box {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-info img {
    height: 34px;
    width: auto;
    filter: brightness(0.9);
    transition: filter 0.3s;
}
.footer-info img:hover {
    filter: brightness(1);
}
.footer-info p {
    font-size: 12px;
    opacity: 0.7;
    margin: 0;
}
.footer-info p strong {
    opacity: 1;
    font-weight: 600;
    color: #fbbf24;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    opacity: 0.7;
}
.footer-links a {
    transition: all 0.2s;
    position: relative;
}
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #fbbf24;
    transition: width 0.25s;
}
.footer-links a:hover {
    color: #fbbf24;
    opacity: 1;
}
.footer-links a:hover::after {
    width: 100%;
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.socials {
    display: flex;
    gap: 8px;
}
.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.social-icon:hover {
    background: #fbbf24;
    color: #0a1628;
    border-color: #fbbf24;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.2);
}
.copy {
    font-size: 10px;
    opacity: 0.3;
    letter-spacing: 0.3px;
}

/* ----- FADE-UP ----- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-up:nth-child(2) {
    transition-delay: 0.05s;
}
.fade-up:nth-child(3) {
    transition-delay: 0.10s;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
    .double-grid {
        grid-template-columns: 1fr;
    }
    .double-grid .agenda-card {
        order: 2;
    }
    .double-grid .section-block-card:first-child {
        order: 1;
    }
    .hero-main h1 {
        font-size: 40px;
    }
    .wrapper {
        padding-bottom: 180px;
    }
    .hero-gif-container {
        width: 50%;
        opacity: 0.30;
    }
}

@media (max-width: 768px) {
    header {
        padding: 12px 18px;
    }
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    nav {
        gap: 16px;
        font-size: 13px;
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .dropdown-menu {
        left: 0;
        transform: translateX(0);
    }
    .container {
        padding: 0 18px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .country-inner-box {
        grid-template-columns: 1fr;
    }
    .atase-grid {
        grid-template-columns: 1fr;
    }
    #atase-map {
        min-height: 340px !important;
    }

    /* ----- PERBAIKAN: hero main turun agar tidak terpotong header ----- */
    .hero-section {
        padding: 110px 0 50px 0;
        /* tambah padding atas untuk mobile */
        min-height: 360px;
    }
    .hero-main {
        margin-top: 8px;
        max-width: 100%;
        text-align: center;
    }
    .hero-main h1 {
        font-size: 30px;
    }
    .hero-main p {
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }
    .tags {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .btn-group {
        justify-content: center;
    }
    .btn {
        justify-content: center;
        flex: 1;
        min-width: 140px;
    }

    .hero-gif-container {
        width: 100%;
        opacity: 0.18;
        justify-content: center;
    }
    .hero-gif-container img {
        object-position: center;
        width: 80%;
        height: 80%;
    }
    .hero-overlay {
        background: linear-gradient(180deg, #0a1628 50%, rgba(10, 22, 40, 0.85) 100%);
    }

    .double-grid .section-block-card {
        min-height: 300px;
    }
    #world-map {
        min-height: 240px;
    }
    .wrapper {
        margin-top: -20px;
        padding-bottom: 20px;
        /* footer tidak fixed di mobile */
    }
    .logo-text {
        font-size: 10px;
        padding-left: 10px;
    }

    /* ----- FOOTER TIDAK FIXED PADA MOBILE ----- */
    footer {
        position: static;
        margin-top: 40px;
        box-shadow: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer-box {
        flex-direction: column;
        text-align: center;
    }
    .footer-info {
        flex-direction: column;
        gap: 6px;
    }
    .footer-right {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
    .stat-card {
        padding: 20px;
    }
    .stat-info .value {
        font-size: 24px;
    }

    .hero-section {
        padding: 120px 0 40px 0;
        /* lebih turun lagi untuk layar sangat kecil */
        min-height: 320px;
    }
    .hero-main h1 {
        font-size: 26px;
    }
    .hero-main .badge-new {
        font-size: 10px;
    }
    .btn {
        font-size: 13px;
        padding: 11px 22px;
    }
    .hero-gif-container img {
        width: 90%;
        height: 90%;
    }
    .wrapper {
        padding-bottom: 10px;
    }

}