/* ============================================
   KRL CommuterLink Lost & Found
   Landing Page Styles Ã¢â‚¬â€ landing.css
   ============================================ */

/* Ã¢â€â‚¬Ã¢â€â‚¬ PUBLIC NAVBAR Ã¢â€â‚¬Ã¢â€â‚¬ */
.public-navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--krl-border);
    box-shadow: var(--krl-shadow-sm);
}

.public-navbar .navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.public-navbar .nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.public-navbar .nav-brand i {
    font-size: 28px;
    color: var(--krl-primary);
}

.public-navbar .nav-brand-text {
    font-family: var(--krl-font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--krl-text-primary);
    letter-spacing: -0.5px;
}

.public-navbar .nav-brand-text span {
    color: var(--krl-primary);
    font-weight: 400;
}

@media (max-width: 575px) {
    .public-navbar .nav-brand-text {
        font-size: 14px;
        white-space: normal;
        line-height: 1.2;
    }
    .public-navbar .nav-brand i {
        font-size: 24px;
    }
    .public-navbar .nav-brand {
        gap: 6px;
    }
}

@media (max-width: 360px) {
    .public-navbar .nav-brand-text {
        font-size: 12px;
    }
    .public-navbar .nav-brand i {
        font-size: 20px;
    }
}

.public-navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.public-navbar .nav-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--krl-text-secondary);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.public-navbar .nav-item i {
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.public-navbar .nav-item:hover {
    color: var(--krl-primary);
    background: rgba(var(--krl-primary-rgb), 0.06);
}

.public-navbar .nav-item:hover i {
    opacity: 1;
}

.public-navbar .nav-item.active {
    color: var(--krl-primary);
    font-weight: 600;
}

.public-navbar .nav-item.active i {
    opacity: 1;
}

/* Login link */
.public-navbar .nav-login {
    border: 1.5px solid var(--krl-border);
    border-radius: 8px;
    padding: 6px 14px;
}

.public-navbar .nav-login:hover {
    border-color: var(--krl-primary);
    background: rgba(var(--krl-primary-rgb), 0.04);
}

.public-navbar .nav-divider {
    width: 1px;
    height: 20px;
    background: var(--krl-border);
    margin: 0 6px;
}

/* â”€â”€ LANGUAGE DROPDOWN CSS â”€â”€ */
.lang-toggle-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(var(--krl-primary-rgb), 0.05);
    border: 1px solid rgba(var(--krl-primary-rgb), 0.1);
    color: var(--krl-primary);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-toggle-btn.lang-toggle-mobile {
    padding: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.lang-toggle-btn:hover {
    background: rgba(var(--krl-primary-rgb), 0.1);
    transform: translateY(-1px);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid var(--krl-border);
    min-width: 200px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: var(--krl-text-primary);
    cursor: pointer;
    transition: background 0.15s;
    gap: 10px;
}

.lang-option:first-child { border-radius: 12px 12px 0 0; }
.lang-option:last-child { border-radius: 0 0 12px 12px; }
.lang-option:hover { background: #f8fafc; color: var(--krl-primary); }
.lang-option.active { background: rgba(var(--krl-primary-rgb), 0.05); color: var(--krl-primary); font-weight: 600; }
.lang-option .lang-check { margin-left: auto; opacity: 0; color: var(--krl-primary); transition: opacity 0.2s; }
.lang-option.active .lang-check { opacity: 1; }
.lang-flag { font-size: 16px; line-height: 1; }


.public-navbar .btn-report {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--krl-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(var(--krl-primary-rgb), 0.25);
    margin-left: 4px;
}

.public-navbar .btn-report i {
    font-size: 15px;
}

.public-navbar .btn-report:hover {
    background: var(--krl-primary-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(var(--krl-primary-rgb), 0.35);
}

.public-navbar .mobile-toggle {
    display: none;
    border: none;
    background: none;
    padding: 8px;
    border-radius: 8px;
    font-size: 24px;
    cursor: pointer;
    color: var(--krl-text-secondary);
    align-items: center;
    justify-content: center;
}

.public-navbar .mobile-toggle:hover {
    background: var(--krl-bg-body);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ MOBILE NAV DROPDOWN Ã¢â€â‚¬Ã¢â€â‚¬ */
.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 12px 16px 16px;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    animation: mobileNavSlide 0.3s ease-out;
}

.mobile-nav.show {
    display: flex;
}

@keyframes mobileNavSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--krl-text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-nav-item i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    opacity: 0.6;
}

.mobile-nav-item:hover {
    background: rgba(var(--krl-primary-rgb), 0.06);
    color: var(--krl-primary);
}

.mobile-nav-item:hover i {
    opacity: 1;
}

.mobile-nav-item.active {
    color: var(--krl-primary);
    font-weight: 600;
    background: rgba(var(--krl-primary-rgb), 0.06);
    position: relative;
}

.mobile-nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: var(--krl-primary);
    border-radius: 0 3px 3px 0;
}

.mobile-nav-item.active i {
    opacity: 1;
}

.mobile-nav-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 6px 0;
}

.mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--krl-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 4px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(var(--krl-primary-rgb), 0.25);
}

.mobile-nav-cta:hover {
    background: var(--krl-primary-hover);
    color: #fff;
}

.mobile-nav-cta i {
    font-size: 16px;
}

/* ── MOBILE LANGUAGE TOGGLE ── */
.mobile-lang-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    margin: 4px 0;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.mobile-lang-label {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-lang-pills {
    display: flex;
    gap: 6px;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.mobile-lang-btn.active {
    background: linear-gradient(135deg, #ef4444, #f97316);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 2px 8px rgba(239,68,68,0.25);
}

.mobile-lang-btn:not(.active):hover {
    border-color: #ef4444;
    color: #ef4444;
}

/* ── FAQ 121 PREMIUM CARD ── */
.faq-121-card {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.faq-121-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239,68,68,0.15) 0%, rgba(220,38,38,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.faq-121-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(239,68,68,0.25);
    color: #fff;
    border-color: rgba(239,68,68,0.4);
}

.faq-121-card:hover::before {
    opacity: 1;
}

.faq-121-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(239,68,68,0.3);
    animation: faqRingPulse 2.5s ease-in-out infinite;
}

@keyframes faqRingPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(239,68,68,0.3); }
    50% { box-shadow: 0 4px 20px rgba(239,68,68,0.55); }
}

.faq-121-body {
    flex: 1;
    min-width: 0;
}

.faq-121-number {
    font-size: 22px;
    font-weight: 900;
    font-family: var(--krl-font-heading);
    line-height: 1;
    color: #fff;
    letter-spacing: -1px;
}

.faq-121-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.faq-121-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: onlinePulse 2s ease-in-out infinite;
}

@keyframes onlinePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.faq-121-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.faq-121-action span {
    font-size: 12px;
    font-weight: 800;
    color: #fca5a5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-121-action i {
    font-size: 20px;
    color: #ef4444;
    transition: transform 0.25s;
}

.faq-121-card:hover .faq-121-action i {
    transform: translateX(3px);
}

.faq-121-action small {
    font-size: 9px;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ HERO SECTION Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero-section {
    position: relative;
    padding: 80px 0 128px;
    overflow: visible;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0 !important;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.80) 50%,
            rgba(255, 255, 255, 0.95) 100%);
}

.hero-bg .tint {
    position: absolute;
    inset: 0;
    background: rgba(219, 234, 254, 0.3);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

/* Live badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(var(--krl-primary-rgb), 0.2);
    color: var(--krl-primary);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: var(--krl-shadow-sm);
    animation: fadeInUp 0.8s ease-out;
}

.live-dot {
    position: relative;
    width: 8px;
    height: 8px;
}

.live-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--krl-primary);
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.75;
}

.live-dot::after {
    content: '';
    position: relative;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--krl-primary);
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hero-title {
    font-family: var(--krl-font-heading);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--krl-text-primary);
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--krl-primary);
}

.hero-subtitle {
    font-size: 18px;
    color: #475569;
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
}

/* Search bar */
.search-container {
    position: relative;
    max-width: 660px;
    margin: 0 auto;
    z-index: 10;
}

.search-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, rgba(var(--krl-primary-rgb), 0.3), rgba(96, 165, 250, 0.3));
    border-radius: 16px;
    filter: blur(10px);
    opacity: 0.25;
    transition: opacity 0.3s;
}

.search-container:hover .search-glow {
    opacity: 0.5;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(15, 23, 42, 0.05);
    padding: 8px;
}

.search-box .search-icon {
    flex-shrink: 0;
    padding: 0 12px 0 12px;
    color: var(--krl-text-muted);
    font-size: 24px;
}

.search-box input {
    flex: 1;
    min-width: 0;
    /* essential for flexbox to not push elements out */
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    font-family: var(--krl-font-body);
    color: var(--krl-text-primary);
    padding: 12px 8px;
}

.search-box input::placeholder {
    color: var(--krl-text-muted);
}

.search-box .search-divider {
    width: 1px;
    height: 28px;
    background: var(--krl-border);
    flex-shrink: 0;
    margin: 0 4px;
}

/* Station select wrapper */
/* Station select wrapper */
.station-select-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 4px 0 6px;
    flex-shrink: 0;
}

.station-select-wrapper>i {
    font-size: 15px;
    color: var(--krl-primary);
    flex-shrink: 0;
}

.station-select-wrapper select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    font-family: var(--krl-font-body);
    color: var(--krl-text-secondary);
    padding: 8px 22px 8px 2px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 10px;
    min-width: auto;
    max-width: 130px;
}



.search-box .btn-search {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--krl-primary);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(var(--krl-primary-rgb), 0.3);
    margin-left: 4px;
}

.search-box .btn-search i {
    font-size: 14px;
}

.search-box .btn-search:hover {
    background: var(--krl-primary-hover);
}

/* Popular searches */
.popular-searches {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--krl-text-secondary);
}

.popular-searches .label {
    opacity: 0.8;
}

.popular-searches a {
    color: var(--krl-primary);
    background: rgba(255, 255, 255, 0.5);
    padding: 2px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    text-decoration: none;
    transition: all 0.2s;
}

.popular-searches a:hover {
    text-decoration: underline;
    background: rgba(255, 255, 255, 0.8);
}

.popular-searches .dot {
    color: #cbd5e1;
}


/* Ã¢â€â‚¬Ã¢â€â‚¬ CATEGORY SECTION Ã¢â€â‚¬Ã¢â€â‚¬ */
.section-categories {
    padding: 64px 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.section-header .section-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.section-header h2 {
    font-family: var(--krl-font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--krl-text-primary);
    margin-bottom: 4px;
}

.section-header p {
    color: var(--krl-text-secondary);
    margin: 0;
}

.section-header .view-all {
    color: var(--krl-primary);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    transition: color 0.2s;
}

.section-header .view-all:hover {
    color: var(--krl-primary-hover);
}

.section-header .view-all i {
    transition: transform 0.2s;
    font-size: 18px;
}

.section-header .view-all:hover i {
    transform: translateX(4px);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    background: var(--krl-bg-body);
    border-radius: var(--krl-radius-md);
    border: 1px solid #f1f5f9;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.category-card .cat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #dbeafe;
    color: var(--krl-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.category-card:hover .cat-icon {
    background: var(--krl-primary);
    color: #fff;
}

.category-card h3 {
    font-family: var(--krl-font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--krl-text-primary);
    margin-bottom: 4px;
}

.category-card .cat-desc {
    font-size: 12px;
    color: var(--krl-text-secondary);
}


/* Ã¢â€â‚¬Ã¢â€â‚¬ STATION HUBS SECTION Ã¢â€â‚¬Ã¢â€â‚¬ */
.section-stations {
    padding: 64px 0;
    background: var(--krl-bg-body);
}

.stations-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
}

.stations-info .label-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--krl-primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stations-info-title {
    font-family: var(--krl-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--krl-text-primary);
    margin-bottom: 6px;
}

.stations-info-desc {
    color: var(--krl-text-secondary);
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.stations-info h2 {
    font-family: var(--krl-font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--krl-text-primary);
    margin-bottom: 16px;
}

.stations-info p {
    color: var(--krl-text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.station-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.station-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--krl-shadow-sm);
    transition: all 0.2s;
}

.station-item:hover {
    border-color: var(--krl-border);
    box-shadow: var(--krl-shadow-md);
    transform: translateX(4px);
}

.station-item .station-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--krl-text-primary);
    font-size: 14px;
}

.station-name-info {
    display: flex;
    flex-direction: column;
}

.station-name-info strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--krl-text-primary);
}

.station-line {
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 1px;
}

.station-line i {
    font-size: 10px;
}

.station-item .station-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.station-item .station-count {
    background: rgba(var(--krl-primary-rgb), 0.1);
    color: var(--krl-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    white-space: nowrap;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #e2e8f0;
    border-radius: var(--krl-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #cbd5e1;
}

.map-container .map-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    filter: grayscale(1);
}

.map-container .map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--krl-primary-rgb), 0.03);
}

/* Map points */
.map-point {
    position: absolute;
    cursor: pointer;
}

.map-point .point-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.map-point .point-dot.red {
    background: #ef4444;
}

.map-point .point-dot.blue {
    background: #3b82f6;
}

.map-point .point-dot.yellow {
    background: #f59e0b;
}

.map-point .point-dot.sm {
    width: 16px;
    height: 16px;
    border-width: 2px;
}

.map-point .point-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.map-point .point-ping.red {
    background: #ef4444;
}

.map-point .point-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 12px 16px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    white-space: nowrap;
    z-index: 10;
    border: 1px solid #f1f5f9;
}

.map-point:hover .point-tooltip {
    opacity: 1;
}

.map-point .point-tooltip .tt-name {
    font-weight: 700;
    font-size: 13px;
    color: var(--krl-text-primary);
}

.map-point .point-tooltip .tt-desc {
    font-size: 11px;
    color: var(--krl-text-muted);
}

.map-point .point-tooltip .tt-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--krl-primary);
    margin-top: 6px;
}

.map-point .point-tooltip .tt-arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: #fff;
}

.map-controls {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.map-controls button {
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--krl-text-secondary);
    transition: all 0.2s;
}

.map-controls button:hover {
    background: var(--krl-bg-body);
}


/* Ã¢â€â‚¬Ã¢â€â‚¬ RECENT FINDINGS SECTION Ã¢â€â‚¬Ã¢â€â‚¬ */
.section-recent {
    padding: 64px 0;
    background: #fff;
}

.findings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.finding-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--krl-border);
    overflow: hidden;
    transition: box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
}

.finding-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    color: inherit;
}

.finding-card .card-thumb {
    position: relative;
    height: 192px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--krl-text-muted);
    font-size: 36px;
    overflow: hidden;
}

.finding-card .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.finding-card .card-thumb .thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    color: var(--krl-text-muted);
    font-size: 48px;
    background: #f1f5f9;
}


/* Leaflet map overrides */
#krl-map {
    z-index: 1;
}

.leaflet-popup-content-wrapper {
    border-radius: 10px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    font-family: var(--krl-font-body) !important;
}

.leaflet-popup-content {
    margin: 12px 16px !important;
    font-size: 13px;
}

.krl-popup-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--krl-text-primary);
    margin-bottom: 4px;
}

.krl-popup-count {
    font-size: 12px;
    color: var(--krl-primary);
    font-weight: 600;
}

.krl-popup-line {
    font-size: 11px;
    color: var(--krl-text-muted);
    margin-top: 2px;
}

/* Station name labels on map */
.krl-station-label {
    background: rgba(15, 23, 42, 0.75) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 2px 6px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    font-family: var(--krl-font-body) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
    white-space: nowrap !important;
}

.krl-station-label::before {
    border-bottom-color: rgba(15, 23, 42, 0.75) !important;
}

.finding-card .card-thumb .time-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.time-badge.green {
    background: #dcfce7;
    color: #15803d;
}

.time-badge.blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.time-badge.gray {
    background: #f1f5f9;
    color: #475569;
}

.finding-card .card-body {
    padding: 16px;
}

.finding-card .card-body h3 {
    font-family: var(--krl-font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--krl-text-primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.finding-card .card-location {
    font-size: 13px;
    color: var(--krl-text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.finding-card .card-location i {
    font-size: 14px;
}

.finding-card .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.finding-card .card-id {
    font-size: 12px;
    color: var(--krl-text-muted);
}

.finding-card .card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--krl-primary);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.finding-card .card-link:hover {
    text-decoration: underline;
}

.view-all-center {
    text-align: center;
    margin-top: 40px;
}

.btn-outline-landing {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #cbd5e1;
    background: transparent;
    color: #475569;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--krl-font-body);
    font-size: 14px;
    transition: all 0.2s;
}

.btn-outline-landing:hover {
    background: var(--krl-bg-body);
}

.btn-outline-landing i {
    font-size: 16px;
}


/* Ã¢â€â‚¬Ã¢â€â‚¬ CTA SECTION Ã¢â€â‚¬Ã¢â€â‚¬ */
.section-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--krl-primary), #c62828);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
}

.cta-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    top: -100px;
    right: -100px;
    filter: blur(60px);
}

.cta-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    bottom: -80px;
    left: -60px;
    filter: blur(50px);
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin: 0 auto 20px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-inner h2 {
    font-family: var(--krl-font-heading);
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btn-cta-primary {
    background: #fff;
    color: var(--krl-primary);
    font-weight: 700;
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--krl-font-body);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.btn-cta-primary:hover {
    background: #f8f8f8;
    color: var(--krl-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--krl-font-body);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    text-decoration: none;
    backdrop-filter: blur(8px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-trust i {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 575px) {
    .section-cta {
        padding: 48px 0;
    }

    .cta-inner h2 {
        font-size: 22px;
    }

    .cta-trust {
        gap: 12px;
        font-size: 11px;
    }
}


/* Ã¢â€â‚¬Ã¢â€â‚¬ PUBLIC FOOTER Ã¢â€â‚¬Ã¢â€â‚¬ */
.public-footer {
    background: #fff;
    border-top: 1px solid var(--krl-border);
    padding-top: 64px;
    padding-bottom: 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 360px;
}

.footer-brand .brand-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-brand .brand-row i {
    font-size: 24px;
    color: var(--krl-primary);
}

.footer-brand .brand-row h4 {
    font-family: var(--krl-font-heading);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.footer-brand p {
    font-size: 14px;
    color: var(--krl-text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--krl-bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--krl-text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.footer-socials a:hover {
    color: var(--krl-primary);
    background: rgba(var(--krl-primary-rgb), 0.1);
}

.footer-col h3 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--krl-text-primary);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--krl-text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    padding: 4px 0;
}

.footer-col ul li a i {
    font-size: 15px;
    opacity: 0.5;
    width: 18px;
    text-align: center;
    transition: all 0.2s;
}

.footer-col ul li a:hover {
    color: var(--krl-primary);
    transform: translateX(3px);
}

.footer-col ul li a:hover i {
    opacity: 1;
    color: var(--krl-primary);
}

/* Emergency contact items */
.emergency-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    cursor: default;
}

.emergency-item .em-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(var(--krl-primary-rgb), 0.1);
    color: var(--krl-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.emergency-item:hover .em-icon {
    background: var(--krl-primary);
    color: #fff;
}

.emergency-item .em-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--krl-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.emergency-item .em-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--krl-text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--krl-border);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--krl-text-muted);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--krl-text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.footer-bottom-links a i {
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--krl-primary);
}


/* Ã¢â€â‚¬Ã¢â€â‚¬ THEME TOGGLE BUTTON Ã¢â€â‚¬Ã¢â€â‚¬ */






/* Mobile right side */
.nav-right-mobile {
    display: none;
    align-items: center;
    gap: 8px;
}


/* Ã¢â€â‚¬Ã¢â€â‚¬ DARK MODE: LANDING OVERRIDES Ã¢â€â‚¬Ã¢â€â‚¬ */











/* Ã¢â€â‚¬Ã¢â€â‚¬ FAQ ACCORDION STYLES Ã¢â€â‚¬Ã¢â€â‚¬ */
.faq-accordion .accordion-item {
    border: 1px solid #f1f5f9;
    border-radius: 16px !important;
    margin-bottom: 16px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-family: var(--krl-font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    padding: 20px 24px;
    background: transparent;
    box-shadow: none !important;
    border: none;
    gap: 16px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--krl-primary);
    background: #f8fafc;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2364748b'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ef4444'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transform: rotate(180deg);
}

.faq-accordion .accordion-body {
    padding: 0 24px 24px 60px;
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    background: #f8fafc;
}

.faq-icon-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--krl-primary-rgb), 0.1);
    color: var(--krl-primary);
    border-radius: 8px;
    font-size: 16px;
    flex-shrink: 0;
}

.accordion-button:not(.collapsed) .faq-icon-box {
    background: var(--krl-primary);
    color: #fff;
}




















/* Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE: LANDING Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stations-grid {
        grid-template-columns: 1fr;
    }

    .findings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .public-navbar .nav-links {
        display: none;
    }

    .nav-right-mobile {
        display: flex;
    }

    .public-navbar .mobile-toggle {
        display: flex;
    }

    .hero-section {
        padding: 48px 0 80px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .station-select-wrapper {
        display: none;
    }

    .search-box .search-divider {
        display: none;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        padding: 20px 16px;
    }

    .findings-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a,
    .cta-buttons button {
        width: 100%;
        justify-content: center;
    }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   HERO STATS (below search bar)
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 32px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px 8px;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    flex: 1;
    justify-content: center;
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(229, 57, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-icon i {
    font-size: 18px;
    color: #ff8a80;
}

.hero-stat-info {
    display: flex;
    flex-direction: column;
}

.hero-stat-info strong {
    font-family: var(--krl-font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.hero-stat-info span {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .hero-stats {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .hero-stat {
        padding: 0;
        justify-content: flex-start;
        width: 100%;
    }

    .hero-stat-divider {
        width: 100%;
        height: 1px;
    }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   CATEGORY FILTER TABS
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.cat-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border: 1px solid var(--krl-border);
    border-radius: 50px;
    background: var(--krl-bg-card);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--krl-font-body);
    color: var(--krl-text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.cat-tab i {
    font-size: 15px;
}

.cat-tab:hover {
    border-color: var(--krl-primary);
    color: var(--krl-primary);
    background: rgba(var(--krl-primary-rgb), 0.04);
}

.cat-tab.active {
    background: var(--krl-primary);
    color: #fff;
    border-color: var(--krl-primary);
    box-shadow: 0 4px 12px rgba(var(--krl-primary-rgb), 0.2);
}

/* Category label on finding card */
.cat-label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.cat-label i {
    font-size: 11px;
}

/* Finding card hide/show animation for filter */
.finding-card.hide {
    display: none;
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   ABOUT US (Tentang Kami) SECTION
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.section-about {
    padding: 64px 0;
    background: var(--krl-bg-body);
}

/* About Hero Ã¢â‚¬â€ dark gradient banner */
.about-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    border-radius: 20px;
    padding: 48px 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(229, 57, 53, 0.2);
    border: 1px solid rgba(229, 57, 53, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #ff8a80;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.about-badge i {
    font-size: 12px;
}

.about-hero-content h3 {
    font-family: var(--krl-font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.about-hero-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-hero-content p:last-child {
    margin-bottom: 0;
}

/* Visual card with stats */
.about-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.about-visual-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.av-stat {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.av-stat-number {
    font-family: var(--krl-font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
}

.av-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   STATION 2-COLUMN COMPACT GRID
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.station-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.station-card-compact {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #f8fafc;
    border: none;
    border-radius: 20px;
    transition: all 0.2s;
}

.station-card-compact:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.scc-rank {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--st-color);
    color: #fff;
    font-family: var(--krl-font-heading);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scc-dot {
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: var(--st-color);
    flex-shrink: 0;
    margin-right: 4px;
}

.scc-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.scc-info strong {
    font-family: var(--krl-font-heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--krl-text-primary);
    line-height: 1;
}

.station-card-compact .station-line {
    font-size: 12px;
    font-weight: 600;
    color: var(--st-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.station-card-compact .station-count {
    font-family: var(--krl-font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--st-color);
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .station-grid-2col {
        grid-template-columns: 1fr;
    }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   ABOUT US SECTION (Tentang Kami)
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.section-about {
    padding: 60px 0;
}

.about-hero.dark-card {
    background: linear-gradient(135deg, #E53935 0%, #c62828 100%);
    /* Red/Orange gradient */
    border-radius: 20px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    box-shadow: 0 24px 48px rgba(229, 57, 53, 0.25);
}

.about-hero-image img {
    border-radius: 16px;
    background: #2a2a2a;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.about-hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.ah-highlight-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ah-highlight-card:hover {
    transform: translateX(8px);
}

.ah-icon-text {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ah-highlight-card span {
    font-size: 15px;
    color: var(--krl-text-secondary);
}

@media (max-width: 991px) {
    .about-hero.dark-card {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
}

@media (max-width: 575px) {
    .about-hero.dark-card {
        padding: 24px;
    }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   HOW IT WORKS SECTION (Cara Kerja Baru)
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.section-howto {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.howto-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.howto-card-new {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 48px 32px 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
    transition: all 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.howto-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hcn-number {
    position: absolute;
    top: 0;
    right: 32px;
    width: 60px;
    height: 72px;
    background: linear-gradient(180deg, var(--krl-primary) 0%, var(--krl-primary-dark) 100%);
    color: #ffffff;
    font-family: var(--krl-font-heading);
    font-size: 28px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 16px 16px;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.25);
}

.howto-card-new>*:not(.hcn-number) {
    position: relative;
    z-index: 2;
}

.hcn-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
}

.hcn-icon.blue {
    background: #eff6ff;
    color: #3b82f6;
}

.hcn-icon.red {
    background: #fef2f2;
    color: #E53935;
}

.hcn-icon.green {
    background: #ecfdf5;
    color: #10b981;
}

.howto-card-new h3 {
    font-family: var(--krl-font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--krl-text-primary);
    margin-bottom: 12px;
}

.howto-card-new p {
    font-size: 14px;
    color: var(--krl-text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.hcn-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--krl-border-light);
    padding-top: 20px;
}

.hcn-list li {
    font-size: 13px;
    color: var(--krl-text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hcn-list li:last-child {
    margin-bottom: 0;
}

.hcn-list li i {
    color: var(--krl-success);
    font-size: 16px;
}

@media (max-width: 991px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-commitments {
        grid-template-columns: 1fr 1fr;
    }

    .howto-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .howto-card-new.mt-lg-5 {
        margin-top: 0 !important;
    }
}

@media (max-width: 575px) {
    .about-commitments {
        grid-template-columns: 1fr;
    }
}


/* Ã¢â€â‚¬Ã¢â€â‚¬ NEW ABOUT US SECTION Ã¢â€â‚¬Ã¢â€â‚¬ */
.section-about {
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 4/5;
    z-index: 1;
}

.about-image-wrapper .img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper .img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 60%;
    object-fit: cover;
    border-radius: 20px;
    border: 10px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.experience-badge {
    position: absolute;
    top: 10%;
    right: -20px;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--krl-primary), var(--krl-primary-hover));
    border-radius: 50%;
    border: 8px solid #fff;
    box-shadow: 0 15px 30px rgba(229, 57, 53, 0.25);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    height: 100%;
}

.about-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.08);
    border-color: rgba(229, 57, 53, 0.1);
}

.about-feature-box .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.about-bg-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.about-bg-decoration .blob-red {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.about-bg-decoration .blob-orange {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
}


/* Ã¢â€â‚¬Ã¢â€â‚¬ HUB STATIONS Ã¢â€â‚¬Ã¢â€â‚¬ */
.hub-grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
}

@media (min-width: 576px) {
    .hub-grid-2col {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hub-card {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    padding: 18px 16px 18px 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    gap: 12px;
    min-width: 0;
}

.hub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: var(--hub-color);
    border-radius: 5px 0 0 5px;
}

.hub-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.hub-badge-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 11px;
    background: var(--hub-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hub-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.hub-name {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--krl-text-primary);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hub-line {
    font-size: 12px;
    font-weight: 600;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--hub-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hub-line i {
    flex-shrink: 0;
}

.hub-stats {
    text-align: center;
    padding-left: 14px;
    border-left: 1px dashed rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    min-width: 56px;
}

.hub-count {
    font-family: var(--krl-font-heading);
    font-size: 26px;
    font-weight: 900;
    color: var(--hub-color);
    line-height: 1;
}

.hub-label {
    font-size: 10px;
    color: var(--krl-text-secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 3px;
    display: block;
    white-space: nowrap;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ DETAIL MODAL Ã¢â€â‚¬Ã¢â€â‚¬ */
.detail-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.detail-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.detail-modal-overlay.active .detail-modal-content {
    transform: scale(1);
    opacity: 1;
}

.detail-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    overflow: hidden;
}

@media (min-width: 768px) {
    .detail-modal-content {
        flex-direction: row;
    }
}

.detail-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    color: var(--krl-text-secondary);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.detail-modal-close:hover {
    color: var(--krl-text-primary);
    background: #fff;
}

.detail-modal-image-col {
    width: 100%;
    height: 250px;
    position: relative;
    background: var(--krl-bg-body);
}

@media (min-width: 768px) {
    .detail-modal-image-col {
        width: 50%;
        height: auto;
    }
}

.detail-modal-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-modal-image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-modal-info-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: #ffffff;
}


@media (min-width: 768px) {
    .detail-modal-info-col {
        width: 50%;
    }
}

/* Scrollbar customization for info column */
.detail-modal-info-col::-webkit-scrollbar {
    width: 6px;
}

.detail-modal-info-col::-webkit-scrollbar-track {
    background: transparent;
}

.detail-modal-info-col::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.detail-modal-info-col::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.detail-modal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .detail-modal-body {
        padding: 32px 40px;
    }
}

.dm-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.dm-tag-category {
    padding: 4px 12px;
    border-radius: 9999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dm-tag-id {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
}


.dm-title {
    font-family: var(--krl-font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--krl-text-primary);
    line-height: 1.2;
    margin-bottom: 8px;
}

.dm-verified {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--krl-primary);
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
}

.dm-status-box {
    margin-top: 32px;
    margin-bottom: 32px;
    padding: 16px;
    background: #fef2f2;
    border: 1px solid #fee2e2;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}


.dm-status-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--krl-primary);
    /* Red/Orange */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(229, 57, 53, 0.2);
}

.dm-status-icon i {
    font-size: 20px;
}

.dm-status-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--krl-text-primary);
    margin-bottom: 2px;
}

.dm-status-text p.dm-status-highlight {
    color: var(--krl-primary);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.dm-status-text p.dm-status-desc {
    font-size: 12px;
    color: var(--krl-text-secondary);
    margin: 0;
}

.dm-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px 16px;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--krl-border);
    border-bottom: 1px solid var(--krl-border);
}

@media (min-width: 640px) {
    .dm-details-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.dm-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dm-detail-item.full-width {
    grid-column: 1 / -1;
}

.dm-detail-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--krl-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dm-detail-value {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--krl-text-primary);
    font-weight: 600;
    font-size: 15px;
}

.dm-detail-value i {
    color: var(--krl-text-muted);
    font-size: 18px;
}

.dm-detail-value i.dm-loc-icon {
    color: var(--krl-primary);
}

.dm-condition {
    margin-bottom: 32px;
}

.dm-condition h3 {
    font-family: var(--krl-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--krl-text-primary);
    margin-bottom: 12px;
}

.dm-condition p {
    color: var(--krl-text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.dm-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
}

@media (min-width: 640px) {
    .dm-actions {
        flex-direction: row;
    }
}

.dm-btn-primary {
    flex: 1;
    padding: 14px 24px;
    background: var(--krl-primary);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.2);
}

.dm-btn-primary:hover {
    background: var(--krl-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(229, 57, 53, 0.3);
    color: #fff;
}

.dm-btn-primary i {
    animation: bounceRight 2s infinite;
}

.dm-btn-secondary {
    flex: 1;
    padding: 14px 24px;
    background: var(--krl-surface);
    color: var(--krl-text-primary);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--krl-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

@media (min-width: 640px) {
    .dm-btn-secondary {
        flex: none;
    }
}

.dm-btn-secondary:hover {
    background: var(--krl-bg-body);
    border-color: #94a3b8;
}

@keyframes bounceRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* For subtle bouncing hand icon */
@keyframes shakeHand {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

.dm-btn-primary:hover i {
    animation: shakeHand 0.5s ease-in-out infinite;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
/*  LEGAL PAGES V3 (Premium Redesign)             */
/*  FAQ, Kebijakan Privasi, Syarat & Ketentuan     */
/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Ã¢â€â‚¬Ã¢â€â‚¬ HERO SECTION (Cinematic Dark) Ã¢â€â‚¬Ã¢â€â‚¬ */
.lgl-hero {
    position: relative;
    padding: 100px 0 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
    text-align: center;
    min-height: 340px;
    background: #0a0a0f;
}

/* Auto-lock 100vh specifically for Panduan */
.panduan-body .lgl-hero {
    min-height: 100vh;
    margin-top: 0 !important;
}

.lgl-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Video zoomed out to show full content */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0.5;
    filter: saturate(1.2);
}

/* Dark cinematic gradient overlay with KRL red-orange tint */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(10, 10, 15, 0.85) 0%,
            rgba(139, 30, 30, 0.55) 35%,
            rgba(220, 80, 25, 0.45) 65%,
            rgba(10, 10, 15, 0.8) 100%);
    z-index: 1;
}


/* Animated bottom glow edge */
.lgl-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            #ef4444 20%,
            #f97316 40%,
            #ef4444 60%,
            #f97316 80%,
            transparent 100%);
    z-index: 5;
    animation: heroEdgeGlow 4s ease-in-out infinite;
}

@keyframes heroEdgeGlow {

    0%,
    100% {
        opacity: 0.6;
        filter: blur(0px);
    }

    50% {
        opacity: 1;
        filter: blur(1px);
    }
}

/* Floating Orbs (KRL Red-Orange Theme) */
.lgl-hero::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.25) 0%, transparent 70%);
    top: -60px;
    right: -40px;
    z-index: 1;
    animation: orbFloat1 8s ease-in-out infinite;
    pointer-events: none;
}

.lgl-hero-bg::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    bottom: -40px;
    left: -30px;
    z-index: 1;
    animation: orbFloat2 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-20px, 15px) scale(1.05);
    }

    50% {
        transform: translate(10px, 30px) scale(0.95);
    }

    75% {
        transform: translate(25px, -10px) scale(1.02);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -20px) scale(1.08);
    }

    66% {
        transform: translate(-15px, 10px) scale(0.97);
    }
}

/* Hero Content */
.lgl-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Badge Glassmorphism pill */
.lgl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.15);
    animation: badgePulse 3s ease-in-out infinite;
}

.lgl-badge i {
    color: #fca5a5;
    font-size: 14px;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(239, 68, 68, 0.15);
    }

    50% {
        box-shadow: 0 4px 30px rgba(239, 68, 68, 0.3);
    }
}

/* Hero H1 White with subtle gradient */
.lgl-hero h1 {
    font-family: var(--krl-font-heading);
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #fecaca 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.lgl-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}


/* LAYOUT */
.lgl-layout {
    background: var(--krl-bg-body);
    padding: 0 0 100px;
    position: relative;
    z-index: 10;
    background-image:
        radial-gradient(circle at 100% 0%, rgba(239, 68, 68, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(249, 115, 22, 0.04) 0%, transparent 40%);
}

.lgl-container {
    max-width: 1280px;
    margin: -40px auto 0;
    padding: 0 24px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .lgl-container {
        margin-top: 0;
        padding-top: 40px;
    }
    /* Content fills full width since sidebar is hidden on mobile */
    .lgl-content {
        width: 100%;
    }
}

/* SIDEBAR — JS-controlled sticky (see initStickySidebar in landing.js) */
.lgl-sidebar {
    width: 300px;
    flex-shrink: 0;
    align-self: flex-start;
    position: relative;
    height: auto;
    background: var(--krl-bg-card);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--krl-border);
    transition: box-shadow 0.3s;
}

/* Sidebar top accent bar */
.lgl-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f97316, #ef4444);
    border-radius: 20px 20px 0 0;
}

/* Mobile: hide sidebar completely — avoids cramping small screens */
@media (max-width: 992px) {
    .lgl-sidebar {
        display: none;
    }
}

.lgl-sidebar h4 {
    font-family: var(--krl-font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--krl-text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lgl-sidebar h4::before {
    content: '';
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f97316);
    border-radius: 2px;
}

/* Navigation Links */
.lgl-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lgl-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--krl-text-secondary);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
}

.lgl-nav-link i {
    font-size: 16px;
    transition: transform 0.2s;
}

.lgl-nav-link:hover {
    background: rgba(239, 68, 68, 0.05);
    color: #ef4444;
    padding-left: 20px;
}

.lgl-nav-link:hover i {
    transform: scale(1.1);
}

.lgl-nav-link.active {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(249, 115, 22, 0.08) 100%);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.08);
    font-weight: 700;
}

.lgl-nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(180deg, #ef4444, #f97316);
    border-radius: 0 4px 4px 0;
}

.lgl-nav-link.active i {
    color: #ef4444;
}

/* MAIN CONTENT */
.lgl-content {
    flex: 1;
    background: var(--krl-bg-card);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--krl-border);
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration in content */
.lgl-content::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .lgl-content {
        padding: 32px 24px;
    }

    .lgl-hero h1 {
        font-size: 32px;
    }

    .lgl-hero {
        padding: 90px 0 50px;
        min-height: 260px;
    }
}

/* Document Meta Bar */
.lgl-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.04) 0%, rgba(249, 115, 22, 0.03) 100%);
    border: 1px solid rgba(239, 68, 68, 0.1);
    margin-bottom: 40px;
}

.lgl-meta-item {
    display: flex;
    flex-direction: column;
}

.lgl-meta-label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.lgl-meta-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--krl-text-primary);
}

/* CONTENT SECTIONS */
.lgl-section {
    margin-bottom: 48px;
    scroll-margin-top: 140px;
    padding: 32px;
    border-radius: 16px;
    background: var(--krl-bg-card);
    border: 1px solid var(--krl-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Left accent border */
.lgl-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ef4444, #f97316);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s;
}

.lgl-section:hover {
    box-shadow: 0 8px 40px rgba(239, 68, 68, 0.06);
    transform: translateY(-2px);
    border-color: rgba(239, 68, 68, 0.15);
}

.lgl-section:hover::before {
    opacity: 1;
}

.lgl-section h2 {
    font-family: var(--krl-font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--krl-text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lgl-section>h2::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(249, 115, 22, 0.1) 100%);
    color: #ef4444;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ef4444'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='m10.97 4.97-.02.022-3.473 4.425-2.093-2.094a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
}


.lgl-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--krl-text-primary);
    margin: 24px 0 12px;
}

.lgl-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--krl-text-secondary);
    margin-bottom: 20px;
}

.lgl-section ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.lgl-section ul li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--krl-text-secondary);
    margin-bottom: 10px;
    position: relative;
}

.lgl-section ul li::marker {
    color: #ef4444;
}

/* MUTE BUTTON */
.btn-mute-hero {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 80;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    font-size: 20px;
    line-height: 1;
}


.btn-mute-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.08);
    color: #fff;
    box-shadow: 0 4px 24px rgba(239, 68, 68, 0.2);
}


/* ICON BOX */
.lgl-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(249, 115, 22, 0.08) 100%);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}


/* ALERT BOXES (Glassmorphism) */
.lgl-alert {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    margin: 24px 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.2s;
}

.lgl-alert:hover {
    transform: translateY(-1px);
}

.lgl-alert.danger {
    background: linear-gradient(135deg, rgba(254, 226, 226, 0.7) 0%, rgba(254, 202, 202, 0.5) 100%);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-left: 4px solid #ef4444;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.08);
}


.lgl-alert.danger i {
    color: #ef4444;
}

.lgl-alert.danger h4 {
    color: #991b1b;
}

.lgl-alert.info {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.7) 0%, rgba(191, 219, 254, 0.5) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-left: 4px solid #3b82f6;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
}


.lgl-alert.info i {
    color: #3b82f6;
}

.lgl-alert.info h4 {
    color: #1e3a8a;
}

.lgl-alert-icon {
    font-size: 24px;
    margin-top: -2px;
}

.lgl-alert-content h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}

.lgl-alert-content p {
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
    color: var(--krl-text-secondary);
}

/* FAQ ACCORDION (Premium) */
.faq-accordion .accordion-item {
    border: 1px solid var(--krl-border);
    border-radius: 16px !important;
    margin-bottom: 14px;
    background: var(--krl-bg-card);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion .accordion-item:hover {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.06);
    transform: translateY(-1px);
}

.faq-accordion .accordion-button {
    font-family: var(--krl-font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--krl-text-primary);
    padding: 20px 24px;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.25s;
    min-width: 0;
    white-space: normal;
    text-align: left;
    line-height: 1.45;
    word-break: break-word;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.03);
    box-shadow: none;
}

/* FAQ Icon Box with gradient */
.faq-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--krl-bg-body);
    color: var(--krl-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid var(--krl-border);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion .accordion-button:not(.collapsed) .faq-icon-box {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    border-color: transparent;
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.faq-accordion .accordion-body {
    padding: 0 24px 24px 82px;
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--krl-text-secondary);
}

@media (max-width: 992px) {
    .faq-accordion .accordion-body {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 575px) {
    .lgl-content {
        padding: 28px 16px;
    }

    .lgl-section {
        padding: 22px 14px;
        border-radius: 14px;
    }

    .lgl-section h2 {
        align-items: flex-start;
        gap: 8px;
        font-size: 18px;
        line-height: 1.35;
    }

    .lgl-section>h2::before {
        width: 24px;
        height: 24px;
        min-width: 24px;
        background-size: 12px;
    }

    .faq-accordion .accordion-button {
        padding: 16px 14px;
        gap: 10px;
        font-size: 14px;
        align-items: flex-start;
    }

    .faq-accordion .accordion-button::after {
        margin-top: 4px;
        margin-left: 8px;
        flex-shrink: 0;
    }

    .faq-accordion .faq-icon-box {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 14px;
    }

    .faq-accordion .accordion-body {
        padding: 0 14px 18px 14px;
        font-size: 14px;
        line-height: 1.65;
    }
}

@media (max-width: 360px) {
    .lgl-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .lgl-content {
        padding: 22px 10px;
        border-radius: 16px;
    }

    .lgl-section {
        padding: 18px 10px;
    }

    .lgl-section h2 {
        font-size: 16px;
    }

    .faq-accordion .accordion-button {
        padding: 12px 10px;
        gap: 8px;
        font-size: 12.5px;
    }

    .faq-accordion .faq-icon-box {
        width: 28px;
        height: 28px;
        font-size: 12px;
        border-radius: 8px;
    }

    .faq-accordion .accordion-body {
        padding: 0 10px 14px 10px;
        font-size: 12.8px;
        line-height: 1.6;
    }
}

/* ═══════════════════════════════════════════════════
   FAQ SIDEBAR — Contact Section & 121 Card
   ═══════════════════════════════════════════════════ */
.faq-contact-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--krl-border);
}
.faq-contact-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--krl-text-primary);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.faq-contact-title i {
    color: #ef4444;
    font-size: 16px;
}
.faq-contact-desc {
    font-size: 12.5px;
    color: var(--krl-text-secondary);
    margin: 0 0 16px;
    line-height: 1.6;
}

/* 121 Call Card */
.faq-121-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.2);
    margin-bottom: 10px;
}
.faq-121-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.25);
}
.faq-121-main {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 18px 14px;
}
.faq-121-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
}
.faq-121-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.faq-121-number {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
    font-family: var(--krl-font-heading);
}
.faq-121-label {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
}
.faq-121-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px 14px;
}
.faq-121-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #34d399;
}
.faq-121-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    animation: faq121Pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes faq121Pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
    50% { box-shadow: 0 0 0 5px rgba(52, 211, 153, 0); }
}
.faq-121-cta {
    font-size: 12px;
    font-weight: 800;
    color: #fca5a5;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}
.faq-121-card:hover .faq-121-cta {
    color: #fff;
}
.faq-121-card:hover .faq-121-cta i {
    transform: translateX(3px);
    transition: transform 0.2s;
}

/* Email Button */
.faq-email-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--krl-border);
    background: var(--krl-bg-card);
    color: var(--krl-text-secondary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}
.faq-email-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.04);
}
.faq-email-btn i:first-child {
    font-size: 16px;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PUBLIC SEARCH RESULTS OVERLAY
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.public-search-results {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    width: 100%;
    max-height: min(520px, calc(100vh - 220px));
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    padding: 24px;
    text-align: left;
    transform-origin: top;
    animation: slideDownFade 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}


@keyframes slideDownFade {
    0% {
        opacity: 0;
        transform: translateY(-10px) scaleY(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}

.psr-item {
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--krl-border);
    transition: all 0.2s;
    border-radius: 8px;
}

.psr-item:last-child {
    border-bottom: none;
}

.psr-item:hover {
    background: rgba(var(--krl-primary-rgb), 0.05);
}

.psr-icon {
    width: 48px;
    height: 48px;
    background: rgba(var(--krl-primary-rgb), 0.1);
    color: var(--krl-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 16px;
    flex-shrink: 0;
}

.psr-content {
    flex-grow: 1;
}

.psr-cat {
    font-size: 12px;
    font-weight: 700;
    color: var(--krl-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.psr-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--krl-text-primary);
    margin: 0 0 4px 0;
}

.psr-meta {
    font-size: 13px;
    color: var(--krl-text-secondary);
    display: flex;
    gap: 12px;
}

.psr-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--krl-text-secondary);
}

.psr-empty i {
    font-size: 40px;
    color: var(--krl-border);
    margin-bottom: 16px;
    display: block;
}

.psr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--krl-border);
}

.psr-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--krl-text-primary);
}

.psr-cta {
    margin-top: 16px;
    background: rgba(var(--krl-primary-rgb), 0.05);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    border: 1px dashed rgba(var(--krl-primary-rgb), 0.3);
}

.psr-cta p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--krl-text-secondary);
}

.search-container {
    position: relative;
    /* Essential for overlay positioning */
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PANDUAN LENGKAP - GAMIFIED PROGRESS TRAIL CSS
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

:root {
    --trail-red: #ef4444;
    /* Primary */
    --trail-orange: #f97316;
    /* Accent Purple/Orange */
    --trail-amber: #fbbf24;
    /* Accent Cyan/Yellow */
    --trail-dark: #0f172a;
    --trail-text: #475569;
    --trail-bg: #ffffff;
    --trail-card: #f8fafc;
    --trail-border: #e2e8f0;
}

/* Dark mode overrides */

body.panduan-body {
    background-color: var(--trail-bg);
    font-family: 'Plus Jakarta Sans', var(--krl-font-body);
    color: var(--trail-dark);
    padding-top: 80px;
    /* Offset for KRL Navbar */
    transition: background-color 0.3s;
}

.font-headline {
    font-family: var(--krl-font-heading);
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, var(--krl-primary), var(--trail-orange), var(--trail-amber));
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ LAYOUT Ã¢â€â‚¬Ã¢â€â‚¬ */
.trail-container {
    display: flex;
    min-height: calc(100vh - 80px);
}

.campaign-map {
    position: relative;
    width: 320px;
    height: auto;
    border-right: 1px solid var(--trail-border);
    padding: 2rem;
    background: rgba(248, 250, 252, 0.5);
    backdrop-filter: blur(10px);
    z-index: 40;
    display: none;
    flex-direction: column;
    overflow-y: visible;
    align-self: flex-start;
}


@media (min-width: 1200px) {
    .campaign-map {
        display: flex;
    }

    .trail-main {
        margin-left: 0;
        flex: 1;
    }
}

.trail-main {
    flex: 1;
    overflow-x: hidden;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ SIDEBAR CMP Ã¢â€â‚¬Ã¢â€â‚¬ */
.cmp-subtitle {
    font-size: 12px;
    font-weight: 900;
    color: var(--krl-primary);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 8px;
}

.cmp-desc {
    color: var(--trail-text);
    font-size: 14px;
    line-height: 1.6;
}

.cmp-timeline-wrapper {
    position: relative;
    margin-top: 2rem;
    margin-bottom: auto;
}

.cmp-timeline-line {
    position: absolute;
    left: 24px;
    top: 16px;
    bottom: 24px;
    width: 4px;
    background: var(--trail-border);
    border-radius: 4px;
}

.cmp-timeline-fill {
    position: absolute;
    left: 24px;
    top: 16px;
    height: 25%;
    width: 4px;
    background: linear-gradient(to bottom, var(--krl-primary), var(--trail-orange));
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

.cmp-nodes {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.cmp-node {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: default;
}

.cmp-node-icon {
    width: 48px;
    height: 48px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s;
}

.cmp-node-icon span {
    font-size: 24px;
}

.cmp-node-text h4 {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    transition: all 0.3s;
}

.cmp-node-text p {
    font-size: 12px;
    font-weight: 700;
    margin: 0;
    transition: all 0.3s;
}

/* Node States */
.cmp-node.active .cmp-node-icon {
    background: linear-gradient(135deg, var(--krl-primary), var(--trail-orange));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.3);
}

.cmp-node.active .cmp-node-icon .pulse-ring {
    position: absolute;
    inset: -8px;
    border-radius: 1.5rem;
    background: rgba(var(--krl-primary-rgb), 0.15);
    z-index: -1;
    animation: pulseGlow 2s infinite;
}

.cmp-node.active .cmp-node-text h4 {
    color: var(--trail-dark);
}

.cmp-node.active .cmp-node-text p {
    color: var(--krl-primary);
}

.cmp-node.locked .cmp-node-icon {
    background: var(--trail-card);
    border: 1px solid var(--trail-border);
    color: #94a3b8;
}

.cmp-node.locked .cmp-node-text h4 {
    color: #94a3b8;
}

.cmp-node.locked .cmp-node-text p {
    color: #94a3b8;
}

.cmp-node:not(.active):hover .cmp-node-icon {
    border-color: rgba(var(--krl-primary-rgb), 0.5);
    color: rgba(var(--krl-primary-rgb), 0.7);
}

.cmp-node:not(.active):hover .cmp-node-text h4 {
    color: var(--trail-text);
}

.cmp-node:not(.active):hover .cmp-node-text p {
    color: rgba(var(--krl-primary-rgb), 0.7);
}


.cmp-support {
    margin-top: auto;
    background: var(--trail-card);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--trail-border);
}

.cmp-support-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cmp-support-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--trail-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.cmp-support-icon span {
    font-size: 16px;
    font-weight: 900;
}

.cmp-support-top p {
    font-size: 12px;
    font-weight: 900;
    color: var(--trail-dark);
    text-transform: uppercase;
    margin: 0;
}

.cmp-btn-support {
    width: 100%;
    background: linear-gradient(135deg, var(--krl-primary), var(--trail-orange));
    color: #fff;
    font-weight: 900;
    padding: 12px;
    border-radius: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.cmp-btn-support:hover {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: #fff;
    transform: scale(0.98);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}


/* Ã¢â€â‚¬Ã¢â€â‚¬ TRAIL MAIN HEADER Ã¢â€â‚¬Ã¢â€â‚¬ */
.trail-header {
    padding: 5rem 1.5rem 4rem;
    max-width: 1152px;
    margin: 0 auto;
}

.trail-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(var(--krl-primary-rgb), 0.05);
    border: 1px solid rgba(var(--krl-primary-rgb), 0.2);
    color: var(--krl-primary);
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.ping-dot {
    position: relative;
    display: flex;
    width: 10px;
    height: 10px;
}

.ping-dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--krl-primary);
    border-radius: 50%;
    animation: pingDot 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.75;
}

.ping-dot::after {
    content: '';
    position: relative;
    width: 10px;
    height: 10px;
    background: var(--krl-primary);
    border-radius: 50%;
}

@keyframes pingDot {

    75%,
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.trail-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--trail-dark);
    letter-spacing: -0.05em;
    line-height: 0.95;
    margin-bottom: 2.5rem;
}

.trail-subtitle {
    font-size: 1.25rem;
    color: var(--trail-text);
    line-height: 1.6;
    max-width: 42rem;
    font-weight: 500;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ LEVEL CARDS Ã¢â€â‚¬Ã¢â€â‚¬ */
.trail-steps {
    padding: 0 1.5rem 8rem;
    max-width: 1152px;
    margin: 0 auto;
}

.level-card {
    transition: all 0.3s ease;
    border: 1px solid var(--trail-border);
    border-radius: 3rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.level-card:hover {
    transform: scale(1.02);
    border-color: rgba(var(--krl-primary-rgb), 0.2);
}

.bg-grad-red {
    background: linear-gradient(145deg, var(--trail-bg), rgba(239, 68, 68, 0.05));
}

.bg-grad-orange {
    background: linear-gradient(145deg, var(--trail-bg), rgba(249, 115, 22, 0.05));
}

.bg-grad-amber {
    background: linear-gradient(145deg, var(--trail-bg), rgba(251, 191, 36, 0.05));
}


.bubble-glow {
    position: absolute;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    filter: blur(40px);
}

.bg-red-glow {
    background: rgba(239, 68, 68, 0.05);
}

.bg-orange-glow {
    background: rgba(249, 115, 22, 0.05);
}

.bg-amber-glow {
    background: rgba(251, 191, 36, 0.05);
}

.top-right {
    top: -3rem;
    right: -3rem;
}

.top-left {
    top: -3rem;
    left: -3rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-icon span {
    font-size: 32px;
    font-weight: 700;
}

.icon-red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--trail-red);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.icon-orange {
    background: rgba(249, 115, 22, 0.1);
    color: var(--trail-orange);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.icon-amber {
    background: rgba(251, 191, 36, 0.1);
    color: var(--trail-amber);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.step-meta span {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.step-meta h3 {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--trail-dark);
    margin: 0;
}

.text-red {
    color: var(--trail-red);
}

.text-orange {
    color: var(--trail-orange);
}

.text-amber {
    color: var(--trail-amber);
}

.step-desc {
    font-size: 1.125rem;
    color: var(--trail-text);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.power-up-card {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.05), rgba(249, 115, 22, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.1);
    border-radius: 1rem;
    padding: 1rem;
}

.pu-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pu-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
    background: rgba(249, 115, 22, 0.1);
    color: var(--trail-orange);
    border: 1px solid rgba(249, 115, 22, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pu-header span {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--trail-orange);
}

.pu-desc {
    font-size: 14px;
    color: var(--trail-text);
    font-style: italic;
    margin: 0;
}


/* Imagery Wrappers */
.img-stack {
    position: relative;
    padding: 2rem;
}

.img-stack .blur-bg {
    position: absolute;
    inset: -4px;
    background: linear-gradient(to right, rgba(239, 68, 68, 0.2), rgba(249, 115, 22, 0.2));
    border-radius: 2rem;
    filter: blur(24px);
    opacity: 0.3;
    transition: opacity 0.5s;
}

.img-stack:hover .blur-bg {
    opacity: 0.6;
}

.file-img {
    width: 100%;
    border-radius: 2rem;
    border: 4px solid var(--trail-bg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.7s ease;
    position: relative;
    z-index: 2;
}

.img-stack:hover .file-img {
    filter: grayscale(0%);
}

.grid-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}

.grid-imgs .blur-bg {
    position: absolute;
    inset: -4px;
    background: linear-gradient(to right, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    border-radius: 2rem;
    filter: blur(24px);
    opacity: 0.3;
}

.grid-img {
    border-radius: 1.5rem;
    border: 2px solid var(--trail-bg);
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.grid-img.rot-l {
    transform: rotate(-3deg);
}

.grid-img.rot-r {
    transform: rotate(3deg) translateY(2rem);
}

/* List Secrets */
.secret-list {
    margin-top: 1.5rem;
}

.secret-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: var(--trail-bg);
    border: 1px solid var(--trail-border);
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.2s;
    cursor: help;
}

.secret-item:hover {
    border-color: rgba(249, 115, 22, 0.4);
}

.secret-item span.icon {
    color: var(--trail-orange);
}

.secret-item span.text {
    font-size: 14px;
    font-weight: 700;
    color: var(--trail-dark);
}


/* Specs Section */
.system-specs {
    background: var(--trail-card);
    padding: 8rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.system-specs .container-mx {
    max-width: 1152px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.specs-header {
    text-align: center;
    margin-bottom: 5rem;
}

.specs-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--trail-dark);
}

.specs-header p {
    color: var(--trail-text);
    max-width: 36rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

.spec-proxy {
    background: var(--trail-bg);
}

.spec-loop {
    background: linear-gradient(135deg, var(--trail-red), var(--trail-orange), var(--trail-amber));
    color: #fff;
}

.spec-loop-icon {
    width: 96px;
    height: 96px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

.spec-loop-icon span {
    font-size: 60px;
}

/* Miscellaneous utilities */
.qr-badge {
    background: var(--trail-bg);
    border: 2px dashed var(--trail-border);
    padding: 3rem;
    border-radius: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qr-icon-box {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--trail-bg);
    border: 2px solid rgba(var(--krl-primary-rgb), 0.2);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
    position: relative;
    overflow: hidden;
}

.qr-icon-box span {
    font-size: 120px;
    color: var(--krl-primary);
    opacity: 0.9;
}

.laser-scan {
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--krl-primary);
    box-shadow: 0 0 15px 4px rgba(var(--krl-primary-rgb), 0.5);
    top: 0;
    left: 0;
    animation: scanLine 3s infinite linear;
    z-index: 10;
}

@keyframes scanLine {
    0% {
        top: -5%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 105%;
        opacity: 0;
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.4;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

/* hubungi.css */
/* Removed .hubungi-hero-bg and overlay */

.hubungi-hero {
    position: relative;
    background: #0a0a0f;
    color: #ffffff;
    padding-top: 8rem;
    padding-bottom: 12rem;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

/* Base overlay for Hubungi Kami hero */
.hubungi-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(10, 10, 15, 0.85) 0%,
            rgba(139, 30, 30, 0.55) 35%,
            rgba(220, 80, 25, 0.45) 65%,
            rgba(10, 10, 15, 0.8) 100%);
    z-index: 1;
}

.hubungi-hero .container {
    position: relative;
    z-index: 10;
}

.abstract-shape-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    top: -20rem;
    right: -10rem;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 2;
    animation: shapePulse 8s ease-in-out infinite alternate;
}

.abstract-shape-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    bottom: -10rem;
    left: -10rem;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 2;
    animation: shapePulse 10s ease-in-out infinite alternate-reverse;
}

@keyframes shapePulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 1; }
}

.hubungi-hero-title {
    font-family: var(--krl-font-heading), sans-serif;
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hubungi-hero-title {
        font-size: 5rem;
    }
}

.text-gradient-primary {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: border-box !important;
}

.premium-label-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.premium-label-line {
    height: 1px;
    width: 3rem;
    background-color: #FF5722;
}

.premium-label-text {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* Contact Form Section */
.contact-section {
    margin-top: -8rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 20;
}

.contact-form-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 2rem;
    box-shadow: 0 25px 60px -12px rgba(211, 47, 47, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D32F2F, #FF5722, #D32F2F);
    border-radius: 2rem 2rem 0 0;
}

@media (min-width: 768px) {
    .contact-form-card {
        padding: 3.5rem;
    }
}

.form-group-premium {
    margin-bottom: 2rem;
}

.form-label-premium {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #C5A059;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
    margin-left: 0.25rem;
}

.input-premium {
    width: 100%;
    background-color: #ffffff;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    padding: 1rem 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #212121;
}

.input-premium:focus {
    border-bottom-color: #D32F2F;
}

.input-premium::placeholder {
    color: #94a3b8;
}

.btn-submit-premium {
    width: 100%;
    background: linear-gradient(to right, #D32F2F, #FF5722);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-submit-premium:hover {
    box-shadow: 0 20px 25px -5px rgba(211, 47, 47, 0.3), 0 8px 10px -6px rgba(211, 47, 47, 0.1);
    transform: translateY(-2px);
}

.btn-submit-premium:active {
    transform: scale(0.98);
}

/* Contact Cards */
.contact-card-minimal {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    margin-bottom: 1rem;
}

.contact-card-minimal:hover {
    box-shadow: 0 20px 25px -5px rgba(211, 47, 47, 0.05);
    transform: translateY(-4px);
}

.contact-card-minimal:hover h3 {
    color: #D32F2F !important;
}

.contact-card-minimal:hover p {
    color: #64748b !important;
}

.contact-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #FFF5F3;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D32F2F;
    transition: all 0.3s ease;
}

.contact-card-minimal:hover .contact-icon-box {
    background-color: #D32F2F;
    color: #ffffff;
}

.security-badge-box {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #212121;
    border-radius: 2rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.security-bg-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1.5rem;
    opacity: 0.2;
    font-size: 3.75rem;
}

.security-badge-box h4 {
    font-family: var(--krl-font-heading), sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.security-badge-box p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.stay-protected {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #C5A059;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stay-protected .pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #C5A059;
    border-radius: 50%;
    animation: pulseGold 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseGold {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

/* Hub Stations Section */
.hub-section {
    background: linear-gradient(135deg, #FFF5F3 0%, #FFF0EB 50%, #FEF3E8 100%);
    padding: 8rem 0 6rem;
    padding-top: 10rem;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
    position: relative;
    overflow: hidden;
}

.hub-card-premium {
    background-color: #ffffff;
    border-radius: 2.5rem;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.08);
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.hub-card-premium:hover {
    box-shadow: 0 25px 50px -12px rgba(211, 47, 47, 0.1);
}

.hub-image-wrapper {
    position: relative;
    height: 18rem;
    border-radius: 2rem;
    overflow: hidden;
}

.hub-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.hub-card-premium:hover .hub-image {
    transform: scale(1.1);
}

.hub-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(33, 33, 33, 0.8), transparent);
}

.hub-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    z-index: 10;
}

.hub-badge span {
    background-color: #D32F2F;
    color: white;
    font-size: 0.625rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.hub-badge h3 {
    color: white;
    font-size: 1.5rem;
    font-family: var(--krl-font-heading);
    font-weight: 700;
    margin: 0;
}

.hub-card-body {
    padding: 2rem;
}

.hub-card-body p {
    color: #424242;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hub-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hub-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hub-location i {
    color: #D32F2F;
}

.hub-location span {
    font-size: 0.875rem;
    font-weight: 700;
    color: #212121;
}

.btn-nav-circle {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #D32F2F, #FF5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.btn-nav-circle:hover {
    background: linear-gradient(135deg, #FF5722, #D32F2F);
    color: #ffffff;
    transform: scale(1.1) rotate(45deg);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

/* Banner Mendesak */
.urgent-banner {
    padding: 8rem 0;
    background: linear-gradient(135deg, #D32F2F 0%, #FF5722 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.urgent-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    bottom: -12rem;
    right: -12rem;
    filter: blur(100px);
    opacity: 0.2;
    background: linear-gradient(135deg, #D32F2F 0%, #FF5722 100%);
}

.urgent-title {
    font-size: 3rem;
    font-family: var(--krl-font-heading);
    font-weight: 800;
    color: white;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .urgent-title {
        font-size: 3.75rem;
    }
}

.urgent-title span {
    color: #ffffff; /* pure white for contrast on orange background */
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-decoration-thickness: 8px;
    text-underline-offset: 8px;
}

.urgent-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95); /* highly readable white/off-white */
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.urgent-btns {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 576px) {
    .urgent-btns {
        flex-direction: row;
    }
}

.btn-urgent-primary {
    background-color: #D32F2F;
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(211, 47, 47, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.hub-card-premium:hover {
    box-shadow: 0 25px 50px -12px rgba(211, 47, 47, 0.1);
}

.hub-image-wrapper {
    position: relative;
    height: 18rem;
    border-radius: 2rem;
    overflow: hidden;
}

.hub-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.hub-card-premium:hover .hub-image {
    transform: scale(1.1);
}

.hub-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(33, 33, 33, 0.8), transparent);
}

.hub-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    z-index: 10;
}

.hub-badge span {
    background-color: #D32F2F;
    color: white;
    font-size: 0.625rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.hub-badge h3 {
    color: white;
    font-size: 1.5rem;
    font-family: var(--krl-font-heading);
    font-weight: 700;
    margin: 0;
}

.hub-card-body {
    padding: 2rem;
}

.hub-card-body p {
    color: #424242;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hub-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hub-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hub-location i {
    color: #D32F2F;
}

.hub-location span {
    font-size: 0.875rem;
    font-weight: 700;
    color: #212121;
}

.btn-nav-circle {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #D32F2F, #FF5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.btn-nav-circle:hover {
    background: linear-gradient(135deg, #FF5722, #D32F2F);
    color: #ffffff;
    transform: scale(1.1) rotate(45deg);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

/* Banner Mendesak */
.urgent-banner {
    padding: 8rem 0;
    background: linear-gradient(135deg, #D32F2F 0%, #FF5722 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.urgent-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    bottom: -12rem;
    right: -12rem;
    filter: blur(100px);
    opacity: 0.2;
    background: linear-gradient(135deg, #D32F2F 0%, #FF5722 100%);
}

.urgent-title {
    font-size: 3rem;
    font-family: var(--krl-font-heading);
    font-weight: 800;
    color: white;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .urgent-title {
        font-size: 3.75rem;
    }
}

.urgent-title span {
    color: #ffffff; /* pure white for contrast on orange background */
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-decoration-thickness: 8px;
    text-underline-offset: 8px;
}

.urgent-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95); /* highly readable white/off-white */
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.urgent-btns {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 576px) {
    .urgent-btns {
        flex-direction: row;
    }
}

.btn-urgent-primary {
    background-color: #D32F2F;
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(211, 47, 47, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-urgent-primary:hover {
    background-color: #FF5722;
    color: white;
}

.btn-urgent-secondary {
    border: 2px solid #ffffff; /* Solid white so it's clearly visible */
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-urgent-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

/* Premium Override for Jaminan Keamanan Box */
.security-badge-box {
    background: linear-gradient(135deg, #D32F2F 0%, #FF5722 100%) !important;
    border: none !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.25), inset 0 1px 0 rgba(255,255,255,0.2) !important;
    position: relative;
    overflow: hidden;
}
.security-badge-box::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.2) 0%, transparent 60%);
    pointer-events: none;
}
.security-badge-box h4 {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 700 !important;
    margin-bottom: 0.75rem !important;
    position: relative;
    z-index: 2;
}
.security-badge-box p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    position: relative;
    z-index: 2;
}
.security-bg-icon {
    color: rgba(255, 255, 255, 0.1) !important;
    font-size: 140px !important;
    position: absolute;
    right: -20px;
    bottom: -30px;
    transform: rotate(-15deg);
}
.stay-protected {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 6px 16px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    backdrop-filter: blur(4px);
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

/* =========================================
   GLOBAL RESPONSIVE GRID BALANCING
   ========================================= */
@media (max-width: 991px) {
    .stations-grid {
        grid-template-columns: 1fr;
    }
    .about-image-wrapper {
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hub-grid-2col {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .category-grid,
    .howto-grid-new,
    .findings-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .hero-stat {
        width: 100%;
        justify-content: space-between;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 12px;
    }
    .hero-stat-divider {
        display: none;
    }
    .container {
        padding-left: 16px;
        padding-right: 16px;
        max-width: 100vw;
    }
    .hero-section {
        padding: 40px 0 60px;
    }
}

/* =========================================
   SEARCH BOX & PUBLIC SEARCH RESULTS RESPONSIVE
   ========================================= */
.psr-list::-webkit-scrollbar {
    width: 6px;
}
.psr-list::-webkit-scrollbar-track {
    background: transparent;
}
.psr-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.psr-list::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@media (max-width: 575px) {
    .search-box {
        flex-direction: column;
        border-radius: 16px;
        padding: 12px;
        gap: 8px;
    }
    .search-box .search-icon {
        display: none;
    }
    .search-box input {
        width: 100%;
        padding: 10px 12px;
        background: #f8fafc;
        border-radius: 8px;
        text-align: center;
    }
    .search-box .search-divider {
        width: 100%;
        height: 1px;
        margin: 4px 0;
    }
    .station-select-wrapper {
        width: 100%;
        justify-content: center;
        background: #f8fafc;
        border-radius: 8px;
        padding: 8px;
    }
    .station-select-wrapper select {
        width: 100%;
        text-align: center;
        background-position: right 10px center;
        max-width: 100%;
    }
    .search-box .btn-search {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 16px;
        border-radius: 10px;
        margin-left: 0;
    }
    
    .public-search-results {
        position: absolute;
        top: calc(100% + 12px);
        width: 100%;
        left: 0;
        right: 0;
        border-radius: 16px;
        max-width: 100%;
        max-height: min(420px, calc(100vh - 170px));
        overflow-y: auto;
        margin: 0;
        padding: 16px;
    }
    
    .psr-header {
        padding: 16px;
    }
    
    .psr-item {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px !important;
        padding: 12px !important;
        margin: 0 12px 12px !important;
    }
    
    .psr-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 18px !important;
    }
    
    .psr-list {
        max-height: 280px !important;
    }
}