:root {
    --primary-color: #196c46;
    --primary-dark: #124d32;
    --secondary-color: #2e7d32;
    --accent-color: #22c55e;
    --gold-color: #f1c40f;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --card-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

[x-cloak] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    color: var(--text-main);
    background-color: var(--bg-white);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10000;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    color: #fff;
    background: var(--primary-dark);
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

/* Topbar */
.topbar {
    position: relative;
    display: flex;
    min-height: 30px;
    align-items: center;
    justify-content: space-between;
    padding: 4px 5%;
    color: #fff;
    background: linear-gradient(90deg, var(--primary-dark), #0f3f29);
    font-size: 13px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--gold-color), transparent) 1;
}

.topbar-left span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.92);
}

.topbar-left span .date-text {
    display: block;
    line-height: 1;
}

/* ============================================================
   "LIVE" indicator — red dot + text, no card. Built from zero.
   The whole row (dot, LIVE, date) is one flex line, all centered.
   ============================================================ */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.live-badge .live-text {
    display: block;
    line-height: 1;
}

/* Solid red pulsing dot */
.live-dot {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff3b3b;
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6);
    /* nudge up to sit level with the optical centre of the caps */
    transform: translateY(-1px);
    animation: liveBeat 1.8s ease-out infinite;
}

@keyframes liveBeat {
    0%   { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6); }
    70%  { box-shadow: 0 0 0 6px rgba(255, 59, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .live-dot { animation: none; }
}

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

.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Social links as tidy white circular chips with brand-coloured icons */
.topbar-right a {
    display: inline-flex;
    width: 23px;
    height: 23px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 11px;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.topbar-right a .fa-facebook-f { color: #4c9bff; }
.topbar-right a .fa-instagram  { color: #ff6a9c; }
.topbar-right a .fa-whatsapp   { color: #4ee88a; }

.topbar-right a:hover,
.topbar-right a:focus-visible {
    transform: translateY(-2px);
    border-color: transparent;
}

/* Instagram gets its signature gradient on hover */
.topbar-right a:has(.fa-instagram):hover,
.topbar-right a:has(.fa-instagram):focus-visible {
    background: radial-gradient(circle at 30% 110%, #fdf497, #fd5949 45%, #d6249f 70%, #285aeb 100%);
}

.topbar-right a:has(.fa-facebook-f):hover { background: #1877f2; }
.topbar-right a:has(.fa-whatsapp):hover   { background: #25d366; }

.topbar-right a:has(.fa-facebook-f):hover .fa-facebook-f,
.topbar-right a:has(.fa-whatsapp):hover .fa-whatsapp,
.topbar-right a:has(.fa-instagram):hover .fa-instagram {
    color: #fff;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    padding: 11px 4%;
    border-bottom: 1px solid transparent;
    background-color: var(--bg-white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.04);
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.logo {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 14px;
}

.logo img {
    width: 54px;
    height: 54px;
    padding: 3px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    border: 1.5px solid color-mix(in srgb, var(--primary-color) 22%, transparent);
    box-shadow: 0 3px 10px rgba(18, 77, 50, 0.14);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.04em;
}

.logo-text .gov {
    font-size: 9.5px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.logo-text .district {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.logo-text .village {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9.5px;
    font-weight: 700;
    color: color-mix(in srgb, var(--gold-color) 78%, #7a5c00);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.logo-text .village::before {
    content: "";
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: var(--gold-color);
}

.navbar {
    margin-left: auto;
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.35vw, 22px);
}

/* Nav links as pills carrying BUMDesma's service identity */
.navbar li:not(.nav-login-item):not(.nav-register-item) > a,
.navbar .has-dropdown > a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 11px;
    color: var(--text-main);
    font-size: clamp(12px, 0.88vw, 13.5px);
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease;
}

/* Leading service icon — each menu maps to what BUMDesma offers */
.navbar > ul > li:not(.nav-login-item):not(.nav-register-item) > a::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 13px;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.82;
    transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.navbar > ul > li:nth-child(1) > a::before,
.navbar > ul > li.nav-item-home > a::before { content: "\f015"; } /* home — beranda */
.navbar > ul > li:nth-child(2) > a::before,
.navbar > ul > li.nav-item-profile > a::before { content: "\f66f"; } /* landmark — profil */
.navbar > ul > li:nth-child(3) > a::before,
.navbar > ul > li.nav-item-services > a::before { content: "\f4c0"; } /* hand-holding-dollar — layanan/LKD */
.navbar > ul > li:nth-child(4) > a::before,
.navbar > ul > li.nav-item-marketplace > a::before { content: "\f54e"; } /* store — marketplace */
.navbar > ul > li:nth-child(5) > a::before,
.navbar > ul > li.nav-item-tourism > a::before { content: "\f6fc"; } /* mountain — wisata */
.navbar > ul > li:nth-child(6) > a::before,
.navbar > ul > li.nav-item-berita > a::before { content: "\f1ea"; } /* newspaper — berita */

/* Animated underline indicator — no background fill */
.navbar li:not(.nav-login-item):not(.nav-register-item) > a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 3px;
    height: 2.5px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover / open / active → draw underline + shift colour (no card) */
.navbar li:not(.nav-login-item):not(.nav-register-item) > a:hover,
.navbar li:not(.nav-login-item):not(.nav-register-item) > a:focus-visible,
.navbar .has-dropdown:hover > a,
.navbar .has-dropdown.is-dropdown-open > a {
    color: var(--primary-color);
    background: transparent;
}

.navbar li:not(.nav-login-item):not(.nav-register-item) > a:hover::after,
.navbar li:not(.nav-login-item):not(.nav-register-item) > a:focus-visible::after,
.navbar .has-dropdown:hover > a::after,
.navbar .has-dropdown.is-dropdown-open > a::after,
.navbar > ul > li > a.active::after {
    transform: scaleX(1);
}

.navbar li:not(.nav-login-item):not(.nav-register-item) > a:hover::before,
.navbar li:not(.nav-login-item):not(.nav-register-item) > a:focus-visible::before,
.navbar .has-dropdown:hover > a::before {
    opacity: 1;
    transform: translateY(-1px) scale(1.08);
}

/* Current page — persistent underline + strong icon, still no fill */
.navbar > ul > li:not(.nav-login-item) > a.active {
    color: var(--primary-color);
    background: transparent;
}

.navbar > ul > li > a.active::before {
    opacity: 1;
}

.navbar i {
    font-size: 9px;
}

/* Dropdown card icons must not inherit the tiny 9px chevron size */
.navbar .dropdown-item-icon i {
    font-size: 20px;
}

.header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    margin-left: 0;
}

.icon-btn {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: var(--text-main);
    background: transparent;
    cursor: pointer;
    font-size: 17px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.menu-toggle {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    display: flex;
    height: 550px;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    touch-action: pan-y;
}

.hero-media {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    background: #173b2b;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    transition: opacity 1.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

/* Active slide: gentle crossfade + very subtle slow zoom (no pan, no blur) */
.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
    animation: heroZoom 9s ease-out both;
}

@keyframes heroZoom {
    0%   { transform: scale(1.04); }
    100% { transform: scale(1.09); }
}

.hero-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(1000px, 90%);
    margin-bottom: 50px;
}

.hero-nav {
    position: absolute;
    top: 46%;
    z-index: 4;
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.28);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero-nav:hover,
.hero-nav:focus-visible {
    border-color: #fff;
    background: rgba(22, 117, 74, 0.92);
}

.hero-nav:focus-visible,
.hero-dot:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.hero-prev {
    left: max(24px, 3vw);
}

.hero-next {
    right: max(24px, 3vw);
}

.hero-dots {
    position: absolute;
    bottom: 62px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: border-radius 0.25s ease, background-color 0.25s ease;
}

.hero-dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 16px;
    border-radius: 4px;
    background-color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
}

.hero-title {
    margin: 0;
    font-size: clamp(42px, 5.2vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 2px;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

.hero-divider {
    width: 100px;
    height: 3px;
    margin: 20px auto;
    background-color: var(--gold-color);
}

.hero-subtitle {
    max-width: 950px;
    margin: 0 auto;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 500;
    text-wrap: balance;
}

.hero-pills {
    position: absolute;
    bottom: -40px;
    z-index: 10;
    display: flex;
    gap: 20px;
}

.pill {
    display: flex;
    min-width: 260px;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border-radius: 50px;
    color: #fff;
    background-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.pill:hover,
.pill:focus-visible {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

.pill-icon {
    display: flex;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 21px;
}

.pill-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.pill-title {
    font-size: 12px;
    font-weight: 500;
}

.pill-desc {
    font-size: 16px;
    font-weight: 700;
}

/* Shared sections */
.section {
    padding: 80px 5%;
}

.achievement-section {
    padding-top: 115px;
}

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

.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-subtitle {
    color: var(--text-main);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-subtitle::after {
    display: block;
    width: 50px;
    height: 3px;
    margin: 10px auto 0;
    background-color: var(--primary-color);
    content: "";
}

.section-title {
    margin-top: 15px;
    font-size: clamp(27px, 2.4vw, 36px);
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

/* Data dan pencapaian */
.profil-container {
    display: flex;
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    flex: 2;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    padding: 40px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
    text-align: center;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

.text-green {
    color: var(--primary-color);
}

.text-danger {
    color: #e74c3c;
}

.stat-card i {
    margin-bottom: 15px;
    font-size: 36px;
}

.stat-card h3 {
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 700;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 14px;
}

.batas-desa {
    display: flex;
    flex: 1;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
}

.batas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background: color-mix(in srgb, var(--accent-color) 4%, var(--bg-white));
}

.batas-header h3 {
    font-size: 16px;
}

.batas-sub {
    color: var(--text-muted);
    font-size: 12px;
}

.batas-list {
    flex-grow: 1;
    padding: 20px;
}

.batas-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.batas-list li:last-child {
    border-bottom: 0;
}

.batas-list i {
    width: 18px;
    flex: 0 0 18px;
    text-align: center;
}

.btn-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    color: #fff;
    background-color: #8b7322;
    font-weight: 600;
    transition: background-color 0.25s ease;
}

.btn-more:hover,
.btn-more:focus-visible {
    background-color: #715d1b;
}

/* Digital banner */
.banner-green {
    padding: 60px 20px;
    color: #fff;
    background-color: var(--primary-color);
    text-align: center;
}

.banner-content {
    max-width: 900px;
    margin: 0 auto;
}

.banner-content h2 {
    margin-bottom: 15px;
    font-size: clamp(27px, 2.3vw, 34px);
}

.banner-content p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
}

.banner-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    padding: 11px 19px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.banner-link:hover,
.banner-link:focus-visible {
    color: var(--primary-dark);
    background-color: #fff;
}

/* Program */
.aparatur-container {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    gap: 50px;
}

.aparatur-info {
    flex: 1;
}

.aparatur-title {
    margin-bottom: 15px;
    font-size: clamp(28px, 2.4vw, 36px);
    font-weight: 800;
    line-height: 1.2;
}

.aparatur-desc {
    margin-bottom: 30px;
    color: var(--text-muted);
}

.visi-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
}

.visi-icon {
    display: flex;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    background: var(--primary-color);
    font-size: 20px;
}

.visi-text h3 {
    margin-bottom: 10px;
    font-size: 15px;
}

.visi-text p {
    color: var(--text-muted);
    font-size: 14px;
    font-style: italic;
}

.aparatur-carousel {
    display: flex;
    min-width: 0;
    flex: 2;
    align-items: center;
    gap: 15px;
}

.aparatur-cards {
    display: flex;
    width: 100%;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.aparatur-cards::-webkit-scrollbar {
    display: none;
}

.aparatur-card {
    position: relative;
    min-width: calc((100% - 40px) / 3);
    flex: 0 0 calc((100% - 40px) / 3);
    overflow: hidden;
    border-radius: 8px;
    scroll-snap-align: start;
}

.aparatur-card img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.aparatur-card .cms-media-placeholder,
.galeri-card .cms-media-placeholder {
    display: grid;
    width: 100%;
    place-items: center;
    color: #64748b;
    background: linear-gradient(135deg, #e2e8f0, #f8fafc);
    font-size: 2rem;
}

.aparatur-card .cms-media-placeholder {
    height: 300px;
}

.galeri-card .cms-media-placeholder {
    height: 250px;
}

.aparatur-card:hover img,
.aparatur-card:focus-visible img {
    transform: scale(1.04);
}

.aparatur-details {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 15px;
    color: #fff;
    background: rgba(20, 88, 60, 0.93);
    text-align: center;
}

.aparatur-details strong {
    margin-bottom: 5px;
    font-size: 15px;
}

.aparatur-details small {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.carousel-btn {
    display: inline-flex;
    width: 34px;
    height: 44px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 4px;
    color: var(--text-main);
    background: transparent;
    cursor: pointer;
    font-size: 24px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
    color: var(--primary-color);
    background: color-mix(in srgb, var(--primary-color) 8%, transparent);
}

/* Berita */
.berita-grid {
    display: grid;
    max-width: 1440px;
    margin: 0 auto;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 30px;
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 8px;
}

.img-wrapper img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.badge {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 5px 15px;
    color: #fff;
    background: var(--accent-color);
    font-size: 12px;
    font-weight: 700;
}

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

.berita-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 13px;
}

.separator {
    width: 15px;
    height: 1px;
    flex: 0 0 15px;
    background: var(--border-color);
}

.berita-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.berita-card.large {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.berita-card.large .img-wrapper {
    margin-bottom: 0;
    border-radius: 0;
}

.berita-card.large > div:not(.img-wrapper),
.berita-card-body {
    padding: 22px 24px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.berita-card.list-style {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.berita-card.list-style img {
    width: 105px;
    height: 75px;
    flex: 0 0 105px;
    border-radius: 8px;
    object-fit: cover;
}

.berita-info {
    flex: 1;
    min-width: 0;
}

.berita-info h3 {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.berita-date {
    color: var(--text-muted);
    font-size: 12px;
}

/* Kategori */
.lembaga-grid {
    display: grid;
    max-width: 900px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.lembaga-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
    font-weight: 500;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lembaga-item:hover,
.lembaga-item:focus-visible {
    border-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateX(3px);
}

.lembaga-item i {
    width: 20px;
    color: var(--text-main);
    text-align: center;
}

/* Galeri Slider */
.galeri-section {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

.galeri-slider-container {
    position: relative;
    width: 100%;
    margin-top: 24px;
    padding: 8px 0;
}

.galeri-slider-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 14px;
}

.galeri-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.galeri-slider-item {
    padding: 0 10px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.galeri-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    background: #1f2937;
    height: 100%;
}

.galeri-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.galeri-card:focus-visible {
    outline: 3px solid var(--accent-color, #22c55e);
    outline-offset: 3px;
}

.galeri-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.galeri-img-container {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.galeri-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.galeri-card:hover img {
    transform: scale(1.04);
}

.galeri-card .badge {
    position: absolute;
    top: 14px;
    left: 14px;
    bottom: auto;
    z-index: 3;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(25, 108, 70, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.galeri-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 55px 18px 16px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 60%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

.galeri-overlay p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* Slider Nav Arrows */
.galeri-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary-color, #196c46);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    font-size: 16px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
}

.galeri-carousel-nav i {
    pointer-events: none;
}

[data-theme="dark"] .galeri-carousel-nav {
    background: #1e293b;
    color: #34d399;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.galeri-carousel-nav:hover {
    background: var(--primary-color, #196c46);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 22px rgba(25, 108, 70, 0.45);
}

.galeri-carousel-nav.prev {
    left: -20px;
}

.galeri-carousel-nav.next {
    right: -20px;
}

@media (max-width: 768px) {
    .galeri-carousel-nav.prev {
        left: 6px;
    }
    .galeri-carousel-nav.next {
        right: 6px;
    }
}

/* Dots Pagination */
.galeri-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.galeri-dot-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .galeri-dot-btn {
    background: rgba(255, 255, 255, 0.25);
}

.galeri-dot-btn:hover {
    background: var(--primary-color, #196c46);
    transform: scale(1.2);
}

.galeri-dot-btn.active {
    width: 28px;
    border-radius: 10px;
    background: var(--primary-color, #196c46) !important;
    box-shadow: 0 2px 8px rgba(25, 108, 70, 0.4);
}

@media (max-width: 768px) {
    .galeri-slider-item {
        padding: 0 6px;
    }
    .galeri-carousel-nav {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    .galeri-carousel-nav.prev {
        left: 4px;
    }
    .galeri-carousel-nav.next {
        right: 4px;
    }
    .galeri-img-container {
        height: 220px;
    }
}

/* Partners */
.partners {
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid var(--border-color);
}

.partners-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-main);
    background: var(--bg-light);
    font-weight: 700;
    text-align: center;
}

/* App context (accessed via /mulai, pages without site chrome) */
.app-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.app-bar-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.app-bar-back:hover,
.app-bar-back:focus-visible {
    background: rgba(255, 255, 255, 0.28);
}

.app-bar-title {
    font-weight: 700;
    font-size: 16px;
}

/* WhatsApp */
.wa-float {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 1000;
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background-color: #25d366;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 30px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float:hover,
.wa-float:focus-visible {
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 1240px) {
    .header {
        padding-inline: 3%;
    }

    .logo-text {
        display: none;
    }

    .navbar ul {
        gap: 16px;
    }

    .pill {
        min-width: 240px;
        padding-inline: 24px;
    }

    .aparatur-card {
        min-width: calc((100% - 20px) / 2);
        flex-basis: calc((100% - 20px) / 2);
    }
}

@media (max-width: 992px) {
    .topbar {
        padding-inline: 4%;
    }

    .topbar-left {
        display: none;
    }

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

    /* Stacked mobile menu: full-width rows, keep the service icons */
    .navbar li:not(.nav-login-item):not(.nav-register-item) > a,
    .navbar .has-dropdown > a {
        border-radius: 8px;
        padding: 13px 12px;
        gap: 12px;
    }

    .navbar > ul > li:not(.nav-login-item):not(.nav-register-item) > a::before {
        width: 20px;
        text-align: center;
        font-size: 15px;
    }

    /* No underline in stacked rows — use a sliding gold left-bar instead */
    .navbar li:not(.nav-login-item):not(.nav-register-item) > a::after {
        left: 0;
        right: auto;
        top: 8px;
        bottom: 8px;
        width: 3px;
        height: auto;
        border-radius: 3px;
        background: var(--gold-color);
        transform: scaleY(0);
        transform-origin: center;
        transition: transform 0.25s ease;
    }

    .navbar li:not(.nav-login-item):not(.nav-register-item) > a:hover::after,
    .navbar > ul > li:not(.nav-login-item) > a.active::after {
        transform: scaleY(1);
    }

    .navbar li:not(.nav-login-item):not(.nav-register-item) > a:hover,
    .navbar > ul > li:not(.nav-login-item) > a.active {
        background: transparent;
        box-shadow: none;
    }

    .header {
        min-height: 72px;
        padding: 10px 4%;
    }

    .logo-text {
        display: flex;
    }

    .navbar {
        position: fixed;
        top: 112px;
        right: 0;
        left: 0;
        z-index: 98;
        display: none;
        max-height: calc(100vh - 112px);
        margin: 0;
        padding: 15px 4% 26px;
        overflow-y: auto;
        border-top: 1px solid var(--border-color);
        background: var(--bg-white);
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.14);
    }

    .navbar.is-open {
        display: block;
    }

    .navbar ul {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .navbar li+li {
        border-top: 1px solid var(--border-color);
    }

    .navbar a {
        justify-content: flex-start;
        gap: 12px;
        padding: 13px 12px;
        font-size: 15px;
    }

    .navbar .has-dropdown > a {
        justify-content: flex-start;
    }

    .navbar .has-dropdown > a .chevron-down {
        margin-left: auto;
    }

    .navbar .nav-login {
        justify-content: center;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero {
        height: 560px;
    }

    .hero-pills {
        width: 90%;
        justify-content: center;
        gap: 12px;
    }

    .pill {
        min-width: 0;
        flex: 1;
        padding: 17px 19px;
    }

    .profil-container,
    .aparatur-container {
        flex-direction: column;
    }

    .aparatur-carousel {
        width: 100%;
    }

    .berita-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .berita-sidebar {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        flex-wrap: wrap;
    }

    .partner-card {
        min-width: calc(50% - 10px);
        flex: 1;
    }
}

@media (max-width: 768px) {
    .topbar {
        justify-content: center;
        min-height: 34px;
        font-size: 11px;
    }

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

    .topbar-right {
        display: none;
    }

    .logo img {
        width: 46px;
        height: 46px;
    }

    .logo-text {
        font-size: 9px;
    }

    .logo-text .district {
        font-size: 10px;
    }

    .navbar {
        top: 108px;
        max-height: calc(100vh - 108px);
    }

    .header-actions {
        gap: 4px;
        margin-left: 8px;
    }

    .hero {
        height: auto;
        min-height: 610px;
        padding: 70px 5% 115px;
    }

    .hero-nav {
        top: 43%;
        width: 40px;
        height: 40px;
    }

    .hero-prev {
        left: 12px;
    }

    .hero-next {
        right: 12px;
    }

    .hero-dots {
        bottom: 70px;
    }

    .hero-content {
        width: min(100%, calc(100% - 68px));
        margin-bottom: 0;
    }

    .hero-title {
        font-size: clamp(37px, 11vw, 52px);
    }

    .hero-pills {
        bottom: -84px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .pill {
        min-height: 145px;
        flex-direction: column;
        justify-content: center;
        gap: 9px;
        padding: 15px 10px;
        border-radius: 14px;
    }

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

    .pill-title {
        font-size: 9px;
    }

    .pill-desc {
        font-size: 12px;
    }

    .achievement-section {
        padding-top: 130px;
    }

    .section {
        padding-right: 5%;
        padding-left: 5%;
    }

    .stats-grid,
    .berita-grid,
    .berita-sidebar,
    .lembaga-grid,
    .galeri-grid {
        grid-template-columns: 1fr;
    }

    .berita-sidebar {
        display: flex;
        grid-column: auto;
    }

    .aparatur-card {
        min-width: calc((100% - 20px) / 2);
        flex-basis: calc((100% - 20px) / 2);
    }

    .partners-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-card {
        min-width: 0;
        padding: 18px 12px;
        font-size: 13px;
    }

    .wa-float {
        right: 20px;
        bottom: 20px;
        width: 54px;
        height: 54px;
        font-size: 27px;
    }
}

@media (max-width: 520px) {

    .logo-text .gov,
    .logo-text .village {
        display: none;
    }

    .logo-text .district {
        max-width: 150px;
        font-size: 11px;
        line-height: 1.2;
    }

    .icon-btn {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .hero {
        min-height: 570px;
        padding-top: 60px;
    }

    .hero-nav {
        top: 42%;
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .hero-prev {
        left: 8px;
    }

    .hero-next {
        right: 8px;
    }

    .hero-dots {
        bottom: 66px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-pills {
        bottom: -75px;
        gap: 7px;
    }

    .pill {
        min-height: 132px;
        padding-inline: 5px;
    }

    .pill-icon {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
        font-size: 17px;
    }

    .section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .achievement-section {
        padding-top: 120px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .batas-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .aparatur-carousel {
        gap: 4px;
    }

    .aparatur-card {
        min-width: 100%;
        flex-basis: 100%;
    }

    .carousel-btn {
        width: 27px;
        flex-basis: 27px;
        font-size: 19px;
    }

    .berita-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .berita-meta .separator {
        display: none;
    }

    .berita-card.list-style img {
        width: 86px;
        height: 68px;
        flex-basis: 86px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero-slide,
    .hero-dot {
        transition: none !important;
    }

    .hero-slide {
        transform: none;
    }

    .hero-slide.is-active {
        animation: none !important;
        transform: none;
        filter: none;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ============ ANGGOTA & PENGURUS (carousel kartu foto) ============ */
.section-lead {
    max-width: 620px;
    margin: 14px auto 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}
.tim-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1120px;
    margin: 0 auto 20px;
    padding: 14px 18px;
    background: var(--bg-white);
    border: 1px solid rgba(17, 24, 39, 0.07);
    border-radius: 18px;
    box-shadow: 0 12px 30px -22px rgba(17, 24, 39, 0.22);
}
.tim-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tim-filter {
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: var(--bg-white);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.22s ease;
}
.tim-filter:hover {
    border-color: color-mix(in srgb, var(--primary-color) 40%, transparent);
    color: var(--primary-color);
}
.tim-filter:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--primary-color) 28%, transparent);
    outline-offset: 2px;
}
.tim-filter.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 18px -8px rgba(25, 108, 70, 0.5);
}
.tim-search {
    position: relative;
    display: flex;
    align-items: center;
    flex: 0 1 280px;
}
.tim-search i {
    position: absolute;
    left: 15px;
    color: var(--text-muted);
    font-size: 13px;
    pointer-events: none;
}
.tim-search input {
    width: 100%;
    border: 1px solid rgba(17, 24, 39, 0.14);
    border-radius: 999px;
    padding: 10px 16px 10px 38px;
    font-size: 13.5px;
    font-family: inherit;
    color: var(--text-main);
    background: var(--bg-light);
    transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}
.tim-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary-color) 14%, transparent);
}
.tim-carousel {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
}
.tim-groups {
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding: 6px 2px 0;
}
.tim-group.is-hidden {
    display: none;
}
.tim-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(25, 108, 70, 0.12);
}
.tim-group-title i {
    color: var(--primary-color);
    font-size: 15px;
}
.tim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 22px;
}
/* Marquee "Semua": kartu berjalan otomatis ke samping (tanpa efek kabut) */
.tim-marquee {
    display: none;
    overflow: hidden;
}
.tim-marquee-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 22px;
    padding: 8px 0 4px;
    animation: timMarquee 48s linear infinite;
}
.tim-marquee:hover .tim-marquee-track {
    animation-play-state: paused;
}
.tim-marquee .tim-card {
    flex: 0 0 clamp(210px, 20vw, 236px);
}
@keyframes timMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.tim-carousel.is-marquee .tim-groups {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}
.tim-carousel.is-marquee .tim-marquee {
    display: block;
}
.tim-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    background: var(--bg-white);
    border: 1px solid rgba(17, 24, 39, 0.07);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px -20px rgba(17, 24, 39, 0.22);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.tim-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 48px -22px rgba(25, 108, 70, 0.34);
    border-color: color-mix(in srgb, var(--primary-color) 26%, transparent);
}
.tim-card.is-hidden {
    display: none;
}
.tim-photo {
    position: relative;
    aspect-ratio: 4 / 4.2;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, #e9f2ed, #d4e6dc);
    overflow: hidden;
}
.tim-photo::before {
    content: "BUMDesma";
    position: absolute;
    top: 12px;
    left: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(25, 108, 70, 0.35);
}
.tim-photo-ph {
    font-size: 74px;
    color: #b7cdc2;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.tim-card:hover .tim-photo-ph {
    transform: scale(1.06);
}
.tim-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tim-badge {
    position: absolute;
    left: 14px;
    bottom: -12px;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 8px 16px -8px rgba(17, 24, 39, 0.4);
    z-index: 2;
}
.tim-card[data-cat="inti"] .tim-badge {
    background: linear-gradient(135deg, #f7c948, #ef9d18);
    color: #4d3500;
}
.tim-card[data-cat="pengawas"] .tim-badge {
    background: linear-gradient(135deg, #64748b, #475569);
}
.tim-body {
    padding: 22px 16px 20px;
}
.tim-name {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-main);
    margin: 0;
    overflow-wrap: anywhere;
}
.tim-desc {
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tim-empty {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    padding: 24px 0 8px;
    margin: 0;
}

/* ============ FAQ SINGKAT ============ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 14px;
    background: var(--bg-white);
    box-shadow: 0 6px 18px -16px rgba(17, 24, 39, 0.14);
    transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
[data-theme="dark"] .faq-item {
    border-color: rgba(255, 255, 255, 0.08);
}
.faq-item[open] {
    border-color: color-mix(in srgb, var(--primary-color) 30%, transparent);
    box-shadow: 0 12px 30px -18px rgba(25, 108, 70, 0.30);
}
.faq-item.is-closing {
    border-color: rgba(17, 24, 39, 0.08);
    box-shadow: 0 6px 18px -16px rgba(17, 24, 39, 0.14);
}
[data-theme="dark"] .faq-item.is-closing {
    border-color: rgba(255, 255, 255, 0.08);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    transition: color 0.25s ease;
    user-select: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary:hover {
    color: var(--primary-color);
}
.faq-item summary:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--primary-color) 24%, transparent);
    outline-offset: -3px;
    border-radius: 12px;
}
.faq-item summary::after {
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 13px;
    color: var(--primary-color);
    flex: 0 0 auto;
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item.is-closing summary::after {
    transform: rotate(0deg);
}
.faq-answer-wrapper {
    overflow: hidden;
}
.faq-answer {
    padding: 0 22px 20px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
}
.faq-answer p {
    margin: 0;
}

@media (max-width: 600px) {
    .tim-toolbar {
        justify-content: center;
    }
    .tim-card {
        flex-basis: 78%;
    }
    .tim-search input {
        font-size: 16px;
    }
}

/* ============ ALUR PENGAJUAN LAYANAN ============ */
.alur-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
    background:
        radial-gradient(100% 80% at 50% 0%, rgba(34, 197, 94, 0.06), transparent 75%),
        var(--bg-white);
}

.alur-tab-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 6px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: #f1f5f9;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.alur-tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 22px;
    border: 0;
    border-radius: 999px;
    color: var(--text-muted);
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.alur-tab-btn i {
    font-size: 15px;
    transition: transform 0.2s ease;
}

.alur-tab-btn:hover {
    color: var(--primary-color);
}

.alur-tab-btn.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 8px 20px -6px rgba(18, 77, 50, 0.45);
}

.alur-tab-btn.active i {
    transform: scale(1.1);
}

.alur-tab-btn:focus-visible,
.hotline-btn:focus-visible,
.station-link:focus-visible,
.ribbon-channel-item a:focus-visible,
.ribbon-btn-maps:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.34);
    outline-offset: 3px;
}

.alur-tab-content {
    display: none;
    min-width: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.alur-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.alur-tab-content[hidden] {
    display: none !important;
}

.alur-metro-container {
    position: relative;
    min-width: 0;
    margin-top: 54px;
    padding: 20px 0;
}

.metro-track-base,
.metro-track-pulse {
    position: absolute;
    top: 68px;
    left: calc(12.5% + 15px);
    height: 6px;
    border-radius: 999px;
}

.metro-track-base {
    right: calc(12.5% + 15px);
    z-index: 1;
    background: #e2e8f0;
}

.metro-track-pulse {
    z-index: 2;
    width: 140px;
    background: linear-gradient(90deg, transparent, #10b981 40%, #34d399 80%, #fff 100%);
    box-shadow: 0 0 16px #10b981, 0 0 8px #34d399;
    animation: metroTrainMove 4.5s ease-in-out infinite;
}

@keyframes metroTrainMove {
    0% {
        left: calc(12.5% + 15px);
        opacity: 0;
    }
    10%,
    90% {
        opacity: 1;
    }
    100% {
        left: calc(87.5% - 155px);
        opacity: 0;
    }
}

.metro-stations {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    min-width: 0;
}

.metro-station-item {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.station-badge {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 12px;
    padding: 4px 12px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 999px;
    color: #475569;
    background: #f1f5f9;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.station-badge.gold {
    border-color: rgba(245, 158, 11, 0.3);
    color: #b45309;
    background: rgba(245, 158, 11, 0.15);
}

.station-node-dot {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    margin-bottom: 20px;
    border: 3px solid #10b981;
    border-radius: 50%;
    color: #059669;
    background: linear-gradient(135deg, #fff, #ecfdf5);
    box-shadow: 0 0 0 6px #fff, 0 8px 20px -4px rgba(16, 185, 129, 0.4);
    font-size: 18px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.station-node-dot.gold {
    border-color: #f59e0b;
    color: #b45309;
    background: linear-gradient(135deg, #fffdf0, #fef3c7);
    box-shadow: 0 0 0 6px #fff, 0 8px 20px -4px rgba(245, 158, 11, 0.5);
}

.node-pulse-ring {
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: stationPulse 2s infinite;
}

.node-pulse-ring.gold {
    border-color: rgba(245, 158, 11, 0.4);
}

@keyframes stationPulse {
    0%,
    100% {
        opacity: 0.9;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.3);
    }
}

.metro-station-item:hover .station-node-dot {
    border-color: #059669;
    box-shadow: 0 0 0 8px #fff, 0 12px 28px -4px rgba(16, 185, 129, 0.65);
    transform: scale(1.22);
}

.metro-station-item:hover .station-node-dot.gold {
    border-color: #d97706;
    box-shadow: 0 0 0 8px #fff, 0 12px 28px -4px rgba(245, 158, 11, 0.75);
}

.metro-station-item:hover .station-badge {
    border-color: var(--primary-color);
    color: #fff;
    background: var(--primary-color);
}

.metro-station-item:hover .station-badge.gold {
    border-color: #f59e0b;
    color: #fff;
    background: #f59e0b;
}

.station-info {
    max-width: 220px;
    min-width: 0;
    padding: 0 6px;
    transition: transform 0.3s ease;
}

.station-time,
.station-tag {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    gap: 5px;
    overflow-wrap: anywhere;
}

.station-time {
    margin-bottom: 6px;
    color: #64748b;
    font-size: 11.5px;
    font-weight: 700;
}

.station-time.highlight {
    color: #b45309;
}

.station-title {
    margin: 0 0 6px;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.station-desc {
    margin: 0 0 10px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.station-tag {
    color: #059669;
    font-size: 12px;
    font-weight: 700;
}

.station-link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.station-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.station-tag.success {
    color: #b45309;
}

.metro-station-item:hover .station-info {
    transform: translateY(-3px);
}

.alur-wave-hotline {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.hotline-pill-inner {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 28px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 16px 36px -20px rgba(18, 77, 50, 0.35);
}

.hotline-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    font-size: 16px;
}

.hotline-text {
    min-width: 0;
    color: #334155;
    font-size: 13.5px;
    overflow-wrap: anywhere;
}

.hotline-text strong {
    color: #047857;
}

.hotline-btn {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 36px;
    padding: 8px 18px;
    border-radius: 999px;
    color: #fff;
    background: #18864b;
    box-shadow: 0 6px 16px -6px rgba(24, 134, 75, 0.5);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.hotline-btn:hover {
    color: #fff;
    background: #126f3d;
    box-shadow: 0 10px 22px -6px rgba(24, 134, 75, 0.58);
    transform: translateY(-2px);
}

/* ============ KONTAK DAN LOKASI KANTOR ============ */
.kontak-section {
    padding-bottom: 90px;
    background: #fafafa;
}

.kontak-gis-container {
    max-width: 1200px;
    min-width: 0;
    margin: 36px auto 0;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.1);
}

.gis-top-ribbon {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 28px;
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
}

.ribbon-location {
    display: flex;
    min-width: 0;
    flex: 1 1 480px;
    align-items: center;
    gap: 10px;
    color: #0f172a;
    font-size: 13.5px;
}

.ribbon-location span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.ribbon-location i,
.ribbon-channel-item i {
    flex: 0 0 auto;
    color: #2563eb;
}

.ribbon-location i {
    font-size: 16px;
}

.ribbon-right-group {
    display: flex;
    min-width: 0;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.ribbon-status {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    color: #1e40af;
    background: #eff6ff;
}

.pulse-emerald-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
    animation: officeStatusPulse 2s infinite;
}

@keyframes officeStatusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.ribbon-status.is-open {
    border-color: #a7f3d0;
    color: #065f46;
    background: #ecfdf5;
}

.ribbon-status.is-open .pulse-emerald-dot {
    background: #059669;
}

.ribbon-status.is-closed {
    border-color: #cbd5e1;
    color: #475569;
    background: #f8fafc;
}

.ribbon-status.is-closed .pulse-emerald-dot {
    background: #64748b;
    animation: none;
    box-shadow: none;
}

.ribbon-status-txt {
    min-width: 0;
    color: inherit;
    font-size: 12.5px;
    overflow-wrap: anywhere;
}

.ribbon-channels {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 14px;
}

.ribbon-channel-item {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 6px;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

.ribbon-channel-item i {
    font-size: 15px;
}

.ribbon-channel-item a {
    min-width: 0;
    color: #0f172a;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.ribbon-channel-item a:hover {
    color: #2563eb;
}

.ribbon-divider {
    width: 1px;
    height: 16px;
    flex: 0 0 auto;
    background: #cbd5e1;
}

.ribbon-btn-maps {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 36px;
    padding: 8px 18px;
    border-radius: 999px;
    color: #fff;
    background: #2563eb;
    box-shadow: 0 4px 14px -2px rgba(37, 99, 235, 0.45);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.ribbon-btn-maps:hover {
    color: #fff;
    background: #1d4ed8;
    box-shadow: 0 8px 20px -2px rgba(29, 78, 216, 0.55);
    transform: translateY(-2px);
}

.gis-map-viewport {
    position: relative;
    width: 100%;
    height: 540px;
    overflow: hidden;
    background: #e2e8f0;
}

.gis-map-viewport iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============ SPONSOR DAN MITRA PENDUKUNG ============ */
.partners-section {
    padding: 52px 0 48px;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.partners-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.partners-header {
    display: flex;
    width: min(100%, 1480px);
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    padding: 0 34px;
}

.partners-title {
    display: block;
    color: #475569;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-align: center;
    text-transform: uppercase;
}

.partners-marquee {
    width: 100%;
    margin-top: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0 18px;
    cursor: grab;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.partners-marquee::-webkit-scrollbar {
    display: none;
}

.partners-marquee:focus-visible {
    outline: 3px solid rgba(5, 150, 105, 0.3);
    outline-offset: 4px;
}

.partners-marquee.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
}

.partners-marquee.is-dragging .partner-card {
    pointer-events: none;
}

.partners-track {
    display: flex;
    width: max-content;
}

.partners-list {
    display: flex;
    flex: 0 0 auto;
    align-items: stretch;
    gap: 24px;
    padding-right: 24px;
}

.partners-section .partner-card {
    display: flex;
    width: clamp(320px, 28vw, 390px);
    min-width: clamp(320px, 28vw, 390px);
    min-height: 124px;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    color: inherit;
    background: #fff;
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.045);
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: normal;
    text-align: left;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.partners-section .partner-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transform: translateY(-3px);
}

.partner-card-link {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 20px;
}

.partner-logo-box {
    display: grid;
    width: 82px;
    height: 78px;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    padding: 9px;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    background: #fff;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

.partner-logo-box--wide {
    width: 116px;
}

.partner-logo-box.bank-jateng-box {
    width: 116px;
    border-color: #cbd5e1;
    background: #f8fafc;
}

.bank-jateng-box .partner-img {
    width: 154px;
    max-width: none;
    max-height: none;
}

.partner-logo-box--tall,
.partner-logo-box--telkom {
    display: flex;
    width: 96px;
    height: 98px;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.partner-logo-box--tall .partner-img,
.partner-logo-box--telkom .partner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06));
    transition: transform 0.25s ease;
}

.partners-section .partner-card:hover .partner-img {
    transform: scale(1.1);
}

.partners-section .partner-card:hover .bank-jateng-box .partner-img {
    transform: scale(1.04);
}

.partners-section .partner-card:hover .partner-logo-box--tall .partner-img,
.partners-section .partner-card:hover .partner-logo-box--telkom .partner-img {
    transform: none;
}

.partner-info {
    min-width: 0;
    text-align: left;
}

.partner-info strong,
.partner-info span {
    display: block;
    overflow-wrap: anywhere;
}

.partner-info strong {
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}

.partner-info span {
    margin-top: 4px;
    color: #64748b;
    font-size: 12.5px;
    line-height: 1.45;
}

@media (max-width: 1100px) {
    .gis-top-ribbon,
    .ribbon-right-group {
        align-items: flex-start;
    }

    .gis-top-ribbon {
        flex-direction: column;
    }

    .ribbon-location {
        flex: 0 1 auto;
    }

    .ribbon-right-group {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 992px) {
    .metro-track-base,
    .metro-track-pulse {
        display: none;
    }

    .metro-stations {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 44px 24px;
    }

}

@media (max-width: 640px) {
    .alur-section,
    .kontak-section {
        padding-bottom: 64px;
    }

    .alur-tab-switcher {
        width: 100%;
        flex-direction: column;
        border-radius: 16px;
    }

    .alur-tab-btn {
        width: 100%;
        white-space: normal;
    }

    .alur-metro-container {
        margin-top: 38px;
    }

    .metro-stations {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .station-info {
        max-width: 320px;
    }

    .hotline-pill-inner {
        width: 100%;
        flex-direction: column;
        padding: 18px 20px;
        border-radius: 20px;
        text-align: center;
    }

    .hotline-btn {
        width: 100%;
        white-space: normal;
    }

    .kontak-gis-container {
        border-radius: 20px;
    }

    .gis-top-ribbon {
        align-items: stretch;
        gap: 14px;
        padding: 18px;
    }

    .ribbon-location {
        align-items: flex-start;
    }

    .ribbon-right-group,
    .ribbon-channels {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .ribbon-status,
    .ribbon-channel-item {
        width: 100%;
        align-items: flex-start;
    }

    .ribbon-status {
        border-radius: 14px;
    }

    .ribbon-divider {
        display: none;
    }

    .ribbon-btn-maps {
        width: 100%;
    }

    .gis-map-viewport {
        height: 420px;
    }

    .partners-section {
        padding: 42px 0 38px;
    }

    .partners-title {
        font-size: 13px;
    }

    .partners-header {
        padding: 0 18px;
    }

    .partners-marquee {
        margin-top: 22px;
        -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
        mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
    }

    .partners-list {
        gap: 14px;
        padding-right: 14px;
    }

    .partners-section .partner-card {
        width: 294px;
        min-width: 294px;
        min-height: 112px;
        gap: 15px;
        padding: 17px 18px;
    }

    .partner-card-link {
        gap: 15px;
    }

    .partner-logo-box {
        width: 72px;
        height: 70px;
    }

    .partner-logo-box--wide,
    .partner-logo-box.bank-jateng-box {
        width: 102px;
    }

    .partner-logo-box--tall,
    .partner-logo-box--telkom {
        width: 84px;
        height: 90px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .metro-track-pulse,
    .node-pulse-ring,
    .pulse-emerald-dot {
        animation: none !important;
    }

    .partners-marquee {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .alur-tab-content,
    .alur-tab-btn,
    .alur-tab-btn i,
    .station-badge,
    .station-node-dot,
    .station-info,
    .station-link,
    .hotline-btn,
    .ribbon-channel-item a,
    .ribbon-btn-maps,
    .partners-section .partner-card,
    .partner-img {
        transition: none !important;
    }

    .metro-station-item:hover .station-node-dot,
    .metro-station-item:hover .station-info,
    .hotline-btn:hover,
    .ribbon-btn-maps:hover,
    .partners-section .partner-card:hover,
    .partners-section .partner-card:hover .partner-img {
        transform: none;
    }


}
