        /* ============================================================
                   VARIAVEL PRIN
                   ============================================================ */
        :root {
            --primary: #0a6e3f;
            --primary-dark: #064a2a;
            --primary-light: #e8f5ed;
            --primary-gradient: linear-gradient(135deg, #0a6e3f 0%, #064a2a 100%);
            --secondary: #f5a623;
            --secondary-light: #fff3d6;
            --secondary-gradient: linear-gradient(135deg, #f5a623 0%, #e09515 100%);
            --text: #1a2a3a;
            --text-light: #5a6a7a;
            --bg: #f0f4f8;
            --white: #ffffff;
            --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.14);
            --radius: 20px;
            --radius-sm: 12px;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* ============================================================
                   RESET NO BASE
                   ============================================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* ============================================================
                   BOUTON
                   ============================================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.3px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .btn-primary {
            background: var(--primary-gradient);
            color: var(--white);
            box-shadow: 0 8px 28px rgba(10, 110, 63, 0.35);
        }
        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 14px 38px rgba(10, 110, 63, 0.45);
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }
        .btn-white {
            background: var(--white);
            color: var(--primary-dark);
        }
        .btn-white:hover {
            background: var(--secondary);
            color: var(--text);
            transform: translateY(-3px);
        }
        .btn-sm {
            padding: 8px 16px;
            font-size: 12px;
        }

        /* ============================================================
                   HEADER / NAVBAR
                   ============================================================ */
        header {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 10px 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
        }
        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 16px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 900;
            font-size: 18px;
            color: var(--primary-dark);
            flex-shrink: 0;
        }
        .logo .logo-icon {
            width: 34px;
            height: 34px;
            
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
        }
        .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 20px;
            font-weight: 600;
            font-size: 13px;
            align-items: center;
        }
        .nav-links a {
            transition: var(--transition);
            position: relative;
            color: var(--text);
            padding: 4px 0;
            white-space: nowrap;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            border-radius: 10px;
            transition: var(--transition);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-cta .btn {
            padding: 6px 16px;
            font-size: 12px;
        }

        .hamburger {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary-dark);
            background: none;
            border: none;
            padding: 4px;
        }

        /* Mobile Navigation */
        @media (max-width: 860px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background: var(--white);
                padding: 20px;
                gap: 12px;
                flex-direction: column;
                box-shadow: var(--shadow);
                border-top: 1px solid rgba(0, 0, 0, 0.05);
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links .nav-cta {
                display: flex;
                flex-wrap: wrap;
                width: 100%;
            }
            .nav-links .nav-cta .btn {
                width: 100%;
                justify-content: center;
            }
            .hamburger {
                display: block;
            }
        }

        /* ============================================================
                   SEÇÃO HEADER
                   ============================================================ */
        section {
            padding: 60px 0;
        }
        .section-header {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 32px;
        }
        .section-header .tag {
            display: inline-block;
            background: rgba(10, 110, 63, 0.1);
            color: var(--primary);
            padding: 4px 16px;
            border-radius: 60px;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 8px;
            border: 1px solid rgba(10, 110, 63, 0.1);
        }
        .section-header h2 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
            line-height: 1.2;
        }
        .section-header h2 span {
            color: var(--primary);
            position: relative;
        }
        .section-header h2 span::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 6px;
            background: rgba(245, 166, 35, 0.2);
            border-radius: 10px;
            z-index: -1;
        }
        .section-header p {
            color: var(--text-light);
            font-size: 14px;
        }

        /* ============================================================
                   HERO - SLIDER - PANJANG SESUAI KONTEN
                   ============================================================ */
        .hero-section {
            padding: 60px 0 20px;
            min-height: auto;
            display: flex;
            flex-direction: column;
            background: linear-gradient(135deg, #f0f7f2 0%, #ffffff 50%, #f8fafc 100%);
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: stretch;
            position: relative;
            z-index: 1;
        }

        /* ===== HERO CONTENT - JADI PATOKAN TINGGI ===== */
        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 14px;
            height: 100%;
            min-height: 420px;
        }

        /* ===== SLIDER - TINGGI MENGIKUTI KONTEN ===== */
        .hero-visual {
            display: flex;
            align-items: stretch;
            height: 100%;
        }

        .hero-image-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 420px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-hover);
        }

        .hero-main-image {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 420px;
            overflow: hidden;
            background: var(--primary-light);
        }

        .hero-main-image .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
        }
        .hero-main-image .slide.active {
            opacity: 1;
        }
        .hero-main-image .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Desktop: kiri content, kanan slider - tinggi sama */
        @media (min-width: 861px) {
            .hero-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
                align-items: stretch;
            }
            .hero-content {
                order: 1;
                min-height: 420px;
            }
            .hero-visual {
                order: 2;
            }
            .hero-image-wrapper {
                min-height: 420px;
            }
            .hero-main-image {
                min-height: 420px;
            }
        }

        /* Mobile: slider di atas, konten di bawah */
        @media (max-width: 860px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 20px;
                align-items: center;
            }
            .hero-content {
                order: 2;
                min-height: auto;
            }
            .hero-visual {
                order: 1;
            }
            .hero-image-wrapper {
                min-height: 260px;
                max-height: 320px;
            }
            .hero-main-image {
                min-height: 260px;
                max-height: 320px;
            }
        }

        @media (max-width: 480px) {
            .hero-image-wrapper {
                min-height: 200px;
                max-height: 250px;
            }
            .hero-main-image {
                min-height: 200px;
                max-height: 250px;
            }
            .hero-content {
                min-height: auto;
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(20px);
            padding: 6px 14px 6px 12px;
            border-radius: 60px;
            font-size: 11px;
            font-weight: 700;
            color: var(--primary-dark);
            border: 1px solid rgba(255, 255, 255, 0.3);
            width: fit-content;
        }
        .hero-badge i {
            color: var(--secondary);
            font-size: 12px;
        }
        .badge-dot {
            width: 3px;
            height: 3px;
            background: var(--primary);
            border-radius: 50%;
            display: inline-block;
        }
        .badge-text {
            color: var(--text-light);
            font-weight: 600;
            font-size: 10px;
        }

        .hero-title {
            font-size: 32px;
            font-weight: 900;
            line-height: 1.1;
            margin: 0;
        }
        @media (min-width: 861px) {
            .hero-title {
                font-size: 40px;
            }
        }
        .title-line {
            display: block;
            font-size: 0.6em;
            font-weight: 600;
            color: var(--text-light);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        .title-highlight {
            display: block;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.2em;
        }
        .title-sub {
            display: block;
            font-size: 0.45em;
            font-weight: 700;
            color: var(--text);
            margin-top: 4px;
            -webkit-text-fill-color: var(--text);
        }

        .hero-desc {
            font-size: 15px;
            color: var(--text-light);
            max-width: 480px;
            line-height: 1.8;
            margin: 0;
        }
        @media (min-width: 861px) {
            .hero-desc {
                font-size: 16px;
            }
        }

        .hero-search {
            margin-top: 2px;
        }
        .search-wrapper {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 60px;
            padding: 2px 2px 2px 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border: 2px solid rgba(255, 255, 255, 0.5);
            transition: var(--transition);
            max-width: 100%;
        }
        @media (min-width: 861px) {
            .search-wrapper {
                max-width: 480px;
            }
        }
        .search-wrapper:focus-within {
            border-color: var(--primary);
            box-shadow: 0 8px 40px rgba(10, 110, 63, 0.15);
            background: rgba(255, 255, 255, 0.95);
        }
        .search-icon {
            color: var(--text-light);
            font-size: 14px;
            margin-right: 8px;
        }
        .search-input {
            flex: 1;
            border: none;
            outline: none;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            padding: 10px 0;
            background: transparent;
            color: var(--text);
            min-width: 0;
        }
        @media (min-width: 861px) {
            .search-input {
                font-size: 14px;
                padding: 12px 0;
            }
        }
        .search-input::placeholder {
            color: var(--text-light);
            font-weight: 400;
        }
        .search-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: var(--primary-gradient);
            color: var(--white);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }
        @media (min-width: 861px) {
            .search-btn {
                width: 44px;
                height: 44px;
                font-size: 16px;
            }
        }
        .search-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(10, 110, 63, 0.3);
        }

        .search-suggestions {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 8px;
        }
        .suggestion-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 12px;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            border-radius: 60px;
            font-size: 11px;
            font-weight: 600;
            color: var(--text-light);
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .suggestion-tag:hover {
            background: var(--white);
            color: var(--primary);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }
        .suggestion-tag i {
            font-size: 10px;
            color: var(--primary);
        }

        .hero-quick-actions {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
            margin-top: 2px;
        }
        @media (min-width: 861px) {
            .hero-quick-actions {
                grid-template-columns: repeat(4, 1fr);
                gap: 10px;
            }
        }
        .quick-action {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(20px);
            border-radius: var(--radius-sm);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.3);
            text-decoration: none;
            color: var(--text);
        }
        .quick-action:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            background: rgba(255, 255, 255, 0.9);
            border-color: var(--primary-light);
        }
        .qa-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }
        @media (min-width: 861px) {
            .qa-icon {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
        }
        .qa-text {
            display: flex;
            flex-direction: column;
        }
        .qa-label {
            font-size: 9px;
            font-weight: 600;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        .qa-desc {
            font-size: 11px;
            font-weight: 700;
            color: var(--text);
        }
        @media (min-width: 861px) {
            .qa-desc {
                font-size: 12px;
            }
        }

        /* ===== SLIDER TOMBOL ===== */
        .slide-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            font-size: 14px;
            color: var(--text);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        @media (min-width: 861px) {
            .slide-btn {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }
        .slide-btn:hover {
            background: var(--white);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }
        .slide-btn.prev {
            left: 10px;
        }
        .slide-btn.next {
            right: 10px;
        }

        .slide-indicators {
            position: absolute;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        .slide-indicators .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .slide-indicators .dot.active {
            background: var(--white);
            border-color: var(--primary);
            transform: scale(1.2);
        }
        .slide-indicators .dot:hover {
            background: var(--white);
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 30%;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.15));
            z-index: 2;
            pointer-events: none;
        }
        .hero-main-image .glass-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            padding: 4px 12px;
            border-radius: 60px;
            font-size: 10px;
            font-weight: 700;
            color: var(--primary-dark);
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            gap: 4px;
            z-index: 5;
        }
        .hero-main-image .glass-badge i {
            color: var(--secondary);
            font-size: 10px;
        }

        /* ===== STATS ===== */
        .hero-stats-bar {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            padding: 12px 0;
            margin-top: 16px;
            position: relative;
            z-index: 1;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            align-items: center;
        }
        @media (min-width: 861px) {
            .stats-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }
        .stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 4px 8px;
        }
        .stat-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: var(--primary);
            flex-shrink: 0;
        }
        @media (min-width: 861px) {
            .stat-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }
        .stat-content {
            display: flex;
            flex-direction: column;
        }
        .stat-number {
            font-size: 16px;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1.2;
        }
        @media (min-width: 861px) {
            .stat-number {
                font-size: 20px;
            }
        }
        .stat-label {
            font-size: 10px;
            font-weight: 500;
            color: var(--text-light);
        }
        @media (min-width: 861px) {
            .stat-label {
                font-size: 11px;
            }
        }

        /* ============================================================
                   DETAIL SURAT
                   ============================================================ */
        .surat-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        @media (min-width: 861px) {
            .surat-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
        }

        .surat-card {
            background: var(--white);
            padding: 24px 20px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.02);
            position: relative;
            overflow: hidden;
        }
        .surat-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }
        .surat-card .surat-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            font-size: 24px;
            transition: var(--transition);
        }
        @media (min-width: 861px) {
            .surat-card .surat-icon {
                width: 64px;
                height: 64px;
                font-size: 28px;
            }
        }
        .surat-card h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text);
        }
        @media (min-width: 861px) {
            .surat-card h4 {
                font-size: 18px;
            }
        }
        .surat-card p {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 12px;
            line-height: 1.6;
        }
        .surat-card .surat-requirements {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: center;
            margin-bottom: 14px;
        }
        .surat-card .surat-requirements .req-tag {
            display: inline-block;
            background: var(--bg);
            color: var(--text-light);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 600;
        }
        .surat-card .surat-requirements .req-tag:hover {
            background: var(--primary-light);
            color: var(--primary);
        }
        .surat-card .btn {
            width: 100%;
            justify-content: center;
            font-size: 13px;
            padding: 10px 20px;
        }

        /* ============================================================
                   RESPONSIVO
                   ============================================================ */
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            section {
                padding: 32px 0;
            }
            .hero-section {
                padding: 56px 0 12px;
            }
            .hero-title {
                font-size: 22px;
            }
            .hero-quick-actions {
                grid-template-columns: 1fr 1fr;
                gap: 6px;
            }
            .quick-action {
                padding: 6px 8px;
            }
            .qa-desc {
                font-size: 10px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
            }
            .search-suggestions {
                display: none;
            }
            .hero-badge {
                font-size: 10px;
                padding: 4px 12px;
            }
            .stat-number {
                font-size: 13px;
            }
            .slide-btn {
                width: 26px;
                height: 26px;
                font-size: 11px;
            }
            .slide-btn.prev {
                left: 6px;
            }
            .slide-btn.next {
                right: 6px;
            }
            .slide-indicators .dot {
                width: 7px;
                height: 7px;
            }
            .hero-main-image .glass-badge {
                font-size: 8px;
                padding: 2px 8px;
                top: 8px;
                left: 8px;
            }
            .hero-main-image .glass-badge i {
                font-size: 8px;
            }
            .surat-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        /* ============================================================
                   PERFIL SECTION - FULL WIDTH STRUCTURE
                   ============================================================ */
        .perfil-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        /* Card struktur suku mengambil full width (2 kolom) */
        .perfil-card.full-width {
            grid-column: 1 / -1;
        }

        @media (min-width: 861px) {
            .perfil-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }

        @media (max-width: 860px) {
            .perfil-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .perfil-card.full-width {
                grid-column: 1;
            }
        }

        /* ============================================================
           PERFIL CARDS
           ============================================================ */
        .perfil-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }

        .perfil-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            opacity: 0;
            transition: var(--transition);
        }

        .perfil-card:hover::before {
            opacity: 1;
        }

        .perfil-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        @media (min-width: 861px) {
            .perfil-card {
                padding: 32px 28px;
            }
        }

        /* ============================================================
           PROFILE CARD
           ============================================================ */
        .profile-card .profile-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .profile-card .profile-avatar {
            width: 64px;
            height: 64px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            flex-shrink: 0;
        }

        @media (min-width: 861px) {
            .profile-card .profile-avatar {
                width: 80px;
                height: 80px;
                font-size: 36px;
            }
        }

        .profile-card .profile-header h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--primary-dark);
            margin: 0;
        }

        @media (min-width: 861px) {
            .profile-card .profile-header h3 {
                font-size: 24px;
            }
        }

        .profile-card .profile-header .subtitle {
            font-size: 13px;
            color: var(--text-light);
            margin: 0;
        }

        .profile-card .profile-body p {
            font-size: 14px;
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 12px;
        }

        @media (min-width: 861px) {
            .profile-card .profile-body p {
                font-size: 15px;
            }
        }

        .profile-card .profile-body p strong {
            color: var(--primary-dark);
        }

        .profile-stats-mini {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

        .profile-stats-mini .mini-stat {
            text-align: center;
        }

        .profile-stats-mini .mini-stat .num {
            display: block;
            font-size: 18px;
            font-weight: 800;
            color: var(--primary-dark);
        }

        @media (min-width: 861px) {
            .profile-stats-mini .mini-stat .num {
                font-size: 22px;
            }
        }

        .profile-stats-mini .mini-stat .lbl {
            font-size: 10px;
            color: var(--text-light);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ============================================================
           VISION MISSION CARD
           ============================================================ */
        .vision-mission-card {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .vm-block {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            padding: 16px;
            background: var(--bg);
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }

        .vm-block:hover {
            background: var(--primary-light);
            transform: translateX(4px);
        }

        .vm-block .vm-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        @media (min-width: 861px) {
            .vm-block .vm-icon {
                width: 52px;
                height: 52px;
                font-size: 22px;
            }
        }

        .vm-block h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 4px;
        }

        @media (min-width: 861px) {
            .vm-block h4 {
                font-size: 18px;
            }
        }

        .vm-block p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
            margin: 0;
        }

        @media (min-width: 861px) {
            .vm-block p {
                font-size: 15px;
            }
        }

        .mission-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mission-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 13px;
            color: var(--text-light);
            padding: 6px 0;
            line-height: 1.6;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }

        .mission-list li:last-child {
            border-bottom: none;
        }

        @media (min-width: 861px) {
            .mission-list li {
                font-size: 14px;
            }
        }

        .mission-list li i {
            color: var(--primary);
            font-size: 14px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        /* ============================================================
           STRUCTURE CARD - GRID 4 KOLOM UNTUK LEBAR PENUH
           ============================================================ */
        .structure-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        @media (min-width: 861px) {
            .structure-card h4 {
                font-size: 20px;
            }
        }

        .structure-card h4 i {
            color: var(--primary);
        }

        .structure-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        .structure-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            background: var(--bg);
            border-radius: var(--radius-sm);
            transition: var(--transition);
            border-left: 3px solid var(--primary);
        }

        .structure-item:hover {
            background: var(--primary-light);
            transform: translateX(4px);
        }

        .structure-item .structure-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 3px solid var(--white);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        @media (min-width: 861px) {
            .structure-item .structure-avatar {
                width: 52px;
                height: 52px;
            }
        }

        .structure-item .structure-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .structure-item .structure-info {
            flex: 1;
            min-width: 0;
        }

        .structure-item .structure-role {
            font-size: 10px;
            font-weight: 600;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        @media (min-width: 861px) {
            .structure-item .structure-role {
                font-size: 11px;
            }
        }

        .structure-item .structure-name {
            font-size: 13px;
            font-weight: 700;
            color: var(--text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        @media (min-width: 861px) {
            .structure-item .structure-name {
                font-size: 14px;
            }
        }

        .structure-note {
            margin-top: 14px;
            padding: 12px 16px;
            background: var(--primary-light);
            border-radius: var(--radius-sm);
            font-size: 12px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 8px;
            border-left: 3px solid var(--primary);
        }

        .structure-note i {
            color: var(--primary);
        }

        /* ============================================================
           STRUCTURE RESPONSIVE
           ============================================================ */
        @media (max-width: 1024px) {
            .structure-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .structure-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .perfil-card {
                padding: 16px 14px;
            }

            .profile-card .profile-avatar {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }

            .profile-card .profile-header h3 {
                font-size: 17px;
            }

            .profile-stats-mini {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
            }

            .vm-block {
                flex-direction: column;
                align-items: flex-start;
            }

            .structure-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .structure-item {
                padding: 10px 12px;
            }

            .structure-item .structure-avatar {
                width: 38px;
                height: 38px;
            }

            .structure-item .structure-name {
                font-size: 12px;
            }
        }

        @media (max-width: 380px) {
            .structure-item {
                flex-wrap: wrap;
            }

            .structure-item .structure-info {
                flex: 1 1 100%;
                margin-top: 4px;
            }
        }

        /* ============================================================
                   SISANYA TETAP SAMA
                   ============================================================ */
        .dashboard-section {
            background: var(--white);
        }
        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        @media (min-width: 861px) {
            .dashboard-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }
        }
        .dash-card {
            background: var(--bg);
            padding: 16px 12px;
            border-radius: var(--radius-sm);
            text-align: center;
            transition: var(--transition);
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }
        .dash-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-gradient);
            opacity: 0;
            transition: var(--transition);
        }
        .dash-card:hover::before {
            opacity: 1;
        }
        .dash-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
            border-color: var(--primary-light);
        }
        .dash-card .icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            font-size: 18px;
            color: var(--white);
        }
        @media (min-width: 861px) {
            .dash-card .icon {
                width: 56px;
                height: 56px;
                font-size: 24px;
            }
        }
        .dash-card .number {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary-dark);
            display: block;
        }
        @media (min-width: 861px) {
            .dash-card .number {
                font-size: 28px;
            }
        }
        .dash-card .label {
            font-size: 11px;
            color: var(--text-light);
            font-weight: 600;
        }
        @media (min-width: 861px) {
            .dash-card .label {
                font-size: 13px;
            }
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        @media (min-width: 861px) {
            .services-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
            }
        }
        .service-card {
            background: var(--white);
            padding: 24px 16px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.02);
            position: relative;
            overflow: hidden;
        }
        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-gradient);
            opacity: 0;
            transition: var(--transition);
        }
        .service-card:hover::after {
            opacity: 1;
        }
        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-light);
        }
        .service-card .icon {
            width: 48px;
            height: 48px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            font-size: 20px;
            color: var(--primary);
            transition: var(--transition);
        }
        @media (min-width: 861px) {
            .service-card .icon {
                width: 64px;
                height: 64px;
                font-size: 28px;
            }
        }
        .service-card:hover .icon {
            background: var(--primary-gradient);
            color: var(--white);
        }
        .service-card h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        @media (min-width: 861px) {
            .service-card h4 {
                font-size: 17px;
            }
        }
        .service-card p {
            font-size: 12px;
            color: var(--text-light);
            margin-bottom: 10px;
        }
        @media (min-width: 861px) {
            .service-card p {
                font-size: 13px;
            }
        }
        .service-card a {
            font-weight: 600;
            font-size: 12px;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: var(--transition);
        }
        .service-card a:hover {
            gap: 10px;
        }

        #fasilitas {
            background: var(--bg);
        }
        .facility-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin-bottom: 24px;
        }
        @media (min-width: 861px) {
            .facility-stats {
                grid-template-columns: repeat(8, 1fr);
                gap: 12px;
            }
        }
        .facility-stat-item {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            padding: 10px 12px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.02);
            position: relative;
            overflow: hidden;
        }
        .facility-stat-item::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary-gradient);
            opacity: 0;
            transition: var(--transition);
        }
        .facility-stat-item:hover::before {
            opacity: 1;
        }
        .facility-stat-item:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .fs-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            flex-shrink: 0;
        }
        @media (min-width: 861px) {
            .fs-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }
        .fs-info {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .fs-number {
            font-size: 14px;
            font-weight: 800;
            color: var(--text);
        }
        @media (min-width: 861px) {
            .fs-number {
                font-size: 20px;
            }
        }
        .fs-label {
            font-size: 8px;
            font-weight: 600;
            color: var(--text-light);
        }
        @media (min-width: 861px) {
            .fs-label {
                font-size: 11px;
            }
        }

        .facility-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 20px;
            justify-content: center;
        }
        @media (min-width: 861px) {
            .facility-tabs {
                gap: 8px;
            }
        }
        .facility-tab {
            padding: 6px 12px;
            border-radius: 60px;
            border: 2px solid var(--primary-light);
            background: var(--white);
            font-weight: 700;
            font-size: 10px;
            color: var(--text-light);
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        @media (min-width: 861px) {
            .facility-tab {
                padding: 10px 20px;
                font-size: 13px;
            }
        }
        .facility-tab:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
            transform: translateY(-2px);
        }
        .facility-tab.active {
            background: var(--primary-gradient);
            border-color: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 16px rgba(10, 110, 63, 0.25);
        }
        .facility-tab .tab-count {
            background: rgba(255, 255, 255, 0.2);
            padding: 0 8px;
            border-radius: 20px;
            font-size: 8px;
            font-weight: 700;
        }
        @media (min-width: 861px) {
            .facility-tab .tab-count {
                font-size: 11px;
                padding: 0 10px;
            }
        }
        .facility-tab.active .tab-count {
            background: rgba(255, 255, 255, 0.25);
        }

        .facility-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }
        @media (min-width: 861px) {
            .facility-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
        }

        .facility-card {
            background: var(--white);
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.02);
            display: flex;
            flex-direction: column;
        }
        .facility-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .facility-card .card-image {
            height: 160px;
            background: var(--primary-light);
            position: relative;
            overflow: hidden;
        }
        @media (min-width: 861px) {
            .facility-card .card-image {
                height: 180px;
            }
        }
        .facility-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition);
        }
        .facility-card:hover .card-image img {
            transform: scale(1.05);
        }
        .facility-card .card-image .category-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 3px 12px;
            border-radius: 20px;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }
        @media (min-width: 861px) {
            .facility-card .card-image .category-badge {
                font-size: 10px;
                padding: 4px 14px;
            }
        }
        .facility-card .card-image .rating {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
            z-index: 2;
        }
        .facility-card .card-body {
            padding: 14px 16px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        @media (min-width: 861px) {
            .facility-card .card-body {
                padding: 18px 20px 20px;
            }
        }
        .facility-card .card-body .card-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 2px;
        }
        @media (min-width: 861px) {
            .facility-card .card-body .card-title {
                font-size: 17px;
            }
        }
        .facility-card .card-body .card-address {
            font-size: 12px;
            color: var(--text-light);
            margin-bottom: 6px;
        }
        .facility-card .card-body .card-address i {
            width: 14px;
            color: var(--primary);
        }
        .facility-card .card-body .card-desc {
            font-size: 12px;
            color: var(--text-light);
            margin-bottom: 10px;
            line-height: 1.6;
            flex: 1;
        }
        @media (min-width: 861px) {
            .facility-card .card-body .card-desc {
                font-size: 13px;
            }
        }
        .facility-card .card-body .card-info {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 10px;
            padding-top: 10px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }
        .facility-card .card-body .card-info .info-tag {
            font-size: 11px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        @media (min-width: 861px) {
            .facility-card .card-body .card-info .info-tag {
                font-size: 12px;
            }
        }
        .facility-card .card-body .card-info .info-tag i {
            width: 14px;
            color: var(--primary);
            font-size: 11px;
        }
        .facility-card .card-body .card-actions {
            display: flex;
            gap: 8px;
            margin-top: 2px;
            flex-wrap: wrap;
        }
        .facility-card .card-body .card-actions .btn-map {
            padding: 6px 14px;
            border-radius: 60px;
            background: var(--primary-gradient);
            color: var(--white);
            border: none;
            font-weight: 700;
            font-size: 11px;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        @media (min-width: 861px) {
            .facility-card .card-body .card-actions .btn-map {
                padding: 8px 18px;
                font-size: 12px;
            }
        }
        .facility-card .card-body .card-actions .btn-map:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(10, 110, 63, 0.3);
        }
        .facility-card .card-body .card-actions .btn-detail {
            padding: 6px 14px;
            border-radius: 60px;
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--bg);
            font-weight: 600;
            font-size: 11px;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        @media (min-width: 861px) {
            .facility-card .card-body .card-actions .btn-detail {
                padding: 8px 18px;
                font-size: 12px;
            }
        }
        .facility-card .card-body .card-actions .btn-detail:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* MODAL */
        .facility-detail-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            z-index: 9998;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }
        .facility-detail-modal.active {
            display: flex;
        }
        .facility-detail-content {
            background: var(--white);
            border-radius: var(--radius);
            max-width: 700px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 24px 20px;
            animation: slideUp 0.4s ease;
        }
        @media (min-width: 861px) {
            .facility-detail-content {
                padding: 32px 36px;
            }
        }
        .facility-detail-content .detail-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 12px;
        }
        .facility-detail-content .detail-header h2 {
            font-size: 20px;
            font-weight: 800;
            color: var(--primary-dark);
        }
        @media (min-width: 861px) {
            .facility-detail-content .detail-header h2 {
                font-size: 24px;
            }
        }
        .facility-detail-content .detail-header .close-detail {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-light);
            cursor: pointer;
            transition: var(--transition);
        }
        .facility-detail-content .detail-header .close-detail:hover {
            color: var(--text);
            transform: rotate(90deg);
        }
        .facility-detail-content .detail-body .detail-row {
            display: flex;
            padding: 8px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        @media (min-width: 861px) {
            .facility-detail-content .detail-body .detail-row {
                padding: 10px 0;
            }
        }
        .facility-detail-content .detail-body .detail-row .label {
            width: 100px;
            font-weight: 600;
            color: var(--text-light);
            font-size: 13px;
            flex-shrink: 0;
        }
        @media (min-width: 861px) {
            .facility-detail-content .detail-body .detail-row .label {
                width: 120px;
                font-size: 14px;
            }
        }
        .facility-detail-content .detail-body .detail-row .value {
            color: var(--text);
            font-size: 13px;
        }
        @media (min-width: 861px) {
            .facility-detail-content .detail-body .detail-row .value {
                font-size: 14px;
            }
        }
        .facility-detail-content .detail-body .detail-row .value i {
            margin-right: 6px;
            color: var(--primary);
        }
        .facility-detail-content .detail-body .detail-row .value .facility-tag {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            padding: 2px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            margin: 2px 4px 2px 0;
        }

        .map-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 16px;
            animation: fadeIn 0.3s ease;
        }
        .map-modal-overlay.active {
            display: flex;
        }
        .map-modal {
            background: var(--white);
            border-radius: var(--radius);
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.4s ease;
            position: relative;
        }
        .map-modal-header {
            padding: 16px 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--white);
        }
        @media (min-width: 861px) {
            .map-modal-header {
                padding: 20px 28px;
            }
        }
        .map-modal-header h3 {
            font-size: 17px;
            font-weight: 800;
            color: var(--primary-dark);
        }
        @media (min-width: 861px) {
            .map-modal-header h3 {
                font-size: 20px;
            }
        }
        .map-modal-header h3 i {
            color: var(--secondary);
            margin-right: 6px;
        }
        .map-modal-header .close-modal {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-light);
            cursor: pointer;
            transition: var(--transition);
            padding: 0 4px;
        }
        .map-modal-header .close-modal:hover {
            color: var(--text);
            transform: rotate(90deg);
        }
        .map-modal-body {
            padding: 16px 20px 20px;
            position: relative;
        }
        @media (min-width: 861px) {
            .map-modal-body {
                padding: 20px 28px 28px;
            }
        }
        .map-modal-body .mini-map-container {
            width: 100%;
            height: 200px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            background: #e8f0ec;
            position: relative;
        }
        @media (min-width: 861px) {
            .map-modal-body .mini-map-container {
                height: 380px;
            }
        }
        .map-modal-body .mini-map-container #miniMap {
            width: 100%;
            height: 100%;
        }
        .map-modal-body .location-info {
            margin-top: 12px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
        }
        @media (min-width: 861px) {
            .map-modal-body .location-info {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }
        .map-modal-body .location-info .loc-detail {
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: 13px;
            color: var(--text-light);
        }
        @media (min-width: 861px) {
            .map-modal-body .location-info .loc-detail {
                flex-direction: row;
                gap: 16px;
                font-size: 14px;
            }
        }
        .map-modal-body .location-info .loc-detail i {
            color: var(--primary);
            width: 16px;
        }
        .map-modal-body .location-info .btn-go-map {
            padding: 8px 20px;
            border-radius: 60px;
            background: var(--primary-gradient);
            color: var(--white);
            border: none;
            font-weight: 700;
            font-size: 12px;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            width: 100%;
            justify-content: center;
        }
        @media (min-width: 861px) {
            .map-modal-body .location-info .btn-go-map {
                width: auto;
                padding: 10px 24px;
                font-size: 13px;
            }
        }
        .map-modal-body .location-info .btn-go-map:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(10, 110, 63, 0.3);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.96);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* GIS */
        #gis-utama {
            padding: 0;
            background: var(--bg);
            position: relative;
        }
        .gis-section-header {
            text-align: center;
            padding: 24px 16px 16px;
            max-width: 640px;
            margin: 0 auto;
        }
        @media (min-width: 861px) {
            .gis-section-header {
                padding: 40px 24px 20px;
            }
        }
        .gis-section-header .tag {
            display: inline-block;
            background: rgba(10, 110, 63, 0.1);
            color: var(--primary);
            padding: 4px 16px;
            border-radius: 60px;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 8px;
            border: 1px solid rgba(10, 110, 63, 0.1);
        }
        .gis-section-header h2 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
            line-height: 1.2;
        }
        @media (min-width: 861px) {
            .gis-section-header h2 {
                font-size: 38px;
            }
        }
        .gis-section-header h2 span {
            color: var(--primary);
            position: relative;
        }
        .gis-section-header h2 span::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 6px;
            background: rgba(245, 166, 35, 0.2);
            border-radius: 10px;
            z-index: -1;
        }
        .gis-section-header p {
            color: var(--text-light);
            font-size: 14px;
        }
        @media (min-width: 861px) {
            .gis-section-header p {
                font-size: 16px;
            }
        }

        .gis-full-wrapper {
            position: relative;
            width: 100%;
            height: 55vh;
            min-height: 350px;
            max-height: 700px;
            background: #e8f0ec;
            border-radius: 0;
        }
        @media (min-width: 861px) {
            .gis-full-wrapper {
                height: 85vh;
                min-height: 550px;
                max-height: 850px;
            }
        }
        #mainMap {
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        /* ============================================================
           GIS OVERLAY CONTROLS - RESET DI SAMPING SAUDE, SEARCH DI BAWAH FULL WIDTH
           ============================================================ */
        .gis-overlay-controls {
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1001;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            padding: 6px 10px;
            border-radius: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.3);
            width: 96%;
            gap: 4px;
        }

        @media (min-width: 861px) {
            .gis-overlay-controls {
                padding: 10px 16px;
                gap: 6px;
                top: 20px;
                border-radius: 60px;
                width: auto;
                max-width: 92%;
            }
        }

        .gis-overlay-controls .filter-btn {
            padding: 3px 10px;
            border-radius: 40px;
            border: none;
            font-weight: 700;
            font-size: 9px;
            cursor: pointer;
            transition: var(--transition);
            background: transparent;
            color: var(--text-light);
            display: inline-flex;
            align-items: center;
            gap: 3px;
            white-space: nowrap;
        }

        @media (min-width: 861px) {
            .gis-overlay-controls .filter-btn {
                padding: 6px 16px;
                font-size: 12px;
                gap: 5px;
            }
        }

        .gis-overlay-controls .filter-btn:hover {
            background: var(--primary-light);
            color: var(--primary);
        }

        .gis-overlay-controls .filter-btn.active {
            background: var(--primary-gradient);
            color: var(--white);
            box-shadow: 0 4px 16px rgba(10, 110, 63, 0.3);
        }

        .gis-overlay-controls .filter-btn i {
            font-size: 9px;
        }

        @media (min-width: 861px) {
            .gis-overlay-controls .filter-btn i {
                font-size: 13px;
            }
        }

        .gis-overlay-controls .divider {
            width: 1px;
            height: 20px;
            background: rgba(0, 0, 0, 0.1);
            margin: 0 2px;
        }

        @media (min-width: 861px) {
            .gis-overlay-controls .divider {
                height: 28px;
                margin: 0 4px;
            }
        }

        /* ===== GIS SEARCH - FULL WIDTH DI BAWAH ===== */
        .gis-search-wrapper {
            width: 100%;
            margin-top: 4px;
            padding-top: 4px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

        @media (min-width: 861px) {
            .gis-search-wrapper {
                width: 100%;
                margin-top: 6px;
                padding-top: 6px;
            }
        }

        .gis-search-wrapper input {
            padding: 6px 14px;
            border-radius: 60px;
            border: none;
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            width: 100%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(200, 200, 200, 0.25);
            transition: var(--transition);
            outline: none;
        }

        @media (min-width: 861px) {
            .gis-search-wrapper input {
                padding: 8px 18px;
                font-size: 13px;
            }
        }

        .gis-search-wrapper input:focus {
            background: var(--white);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            border-color: var(--primary);
        }

        .gis-search-wrapper input::placeholder {
            color: var(--text-light);
            font-weight: 500;
            font-size: 9px;
        }

        @media (min-width: 861px) {
            .gis-search-wrapper input::placeholder {
                font-size: 13px;
            }
        }

        /* ===== RESPONSIVE MOBILE ===== */
        @media (max-width: 860px) {
            .gis-overlay-controls {
                flex-wrap: wrap;
                justify-content: center;
                padding: 6px 8px;
                gap: 3px;
                width: 98%;
                top: 6px;
                border-radius: 16px;
            }
            
            .gis-overlay-controls .filter-btn {
                padding: 2px 8px;
                font-size: 7px;
            }
            
            .gis-overlay-controls .filter-btn i {
                font-size: 7px;
            }
            
            .gis-overlay-controls .divider {
                height: 14px;
                margin: 0 1px;
            }
            
            .gis-search-wrapper {
                margin-top: 3px;
                padding-top: 3px;
            }
            
            .gis-search-wrapper input {
                padding: 4px 10px;
                font-size: 8px;
            }
            
            .gis-search-wrapper input::placeholder {
                font-size: 7px;
            }
        }

        @media (max-width: 480px) {
            .gis-overlay-controls {
                padding: 4px 6px;
                gap: 2px;
                border-radius: 12px;
                top: 4px;
                width: 99%;
            }
            
            .gis-overlay-controls .filter-btn {
                padding: 2px 5px;
                font-size: 6px;
                gap: 2px;
            }
            
            .gis-overlay-controls .filter-btn i {
                font-size: 6px;
            }
            
            .gis-overlay-controls .divider {
                height: 12px;
                margin: 0 1px;
            }
            
            .gis-search-wrapper {
                margin-top: 2px;
                padding-top: 2px;
            }
            
            .gis-search-wrapper input {
                padding: 3px 8px;
                font-size: 7px;
                border-radius: 30px;
            }
            
            .gis-search-wrapper input::placeholder {
                font-size: 6px;
            }
        }

        .gis-info-panel {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1001;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            padding: 6px 12px;
            border-radius: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 9px;
            font-weight: 600;
            color: var(--text-light);
            flex-wrap: wrap;
            justify-content: center;
            width: 96%;
        }
        @media (min-width: 861px) {
            .gis-info-panel {
                padding: 14px 28px;
                gap: 24px;
                font-size: 13px;
                bottom: 30px;
                border-radius: 60px;
                width: auto;
            }
        }
        .gis-info-panel .info-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .gis-info-panel .info-item .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
        }
        @media (min-width: 861px) {
            .gis-info-panel .info-item .dot {
                width: 12px;
                height: 12px;
            }
        }
        .gis-info-panel .info-item .dot.wisata {
            background: #0a6e3f;
        }
        .gis-info-panel .info-item .dot.produk {
            background: #f5a623;
        }
        .gis-info-panel .info-item .dot.seni {
            background: #8b5cf6;
        }
        .gis-info-panel .info-item .dot.kesehatan {
            background: #e74c3c;
        }
        .gis-info-panel .info-item .count {
            background: var(--primary-light);
            color: var(--primary-dark);
            padding: 0 6px;
            border-radius: 20px;
            font-size: 9px;
            font-weight: 800;
        }
        @media (min-width: 861px) {
            .gis-info-panel .info-item .count {
                padding: 0 10px;
                font-size: 12px;
            }
        }

        .gis-legend-custom {
            display: none;
        }
        @media (min-width: 861px) {
            .gis-legend-custom {
                display: block;
                position: absolute;
                bottom: 100px;
                right: 20px;
                z-index: 1001;
                background: rgba(255, 255, 255, 0.85);
                backdrop-filter: blur(20px);
                padding: 16px 20px;
                border-radius: var(--radius-sm);
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
                border: 1px solid rgba(255, 255, 255, 0.3);
                min-width: 140px;
            }
            .gis-legend-custom h5 {
                font-size: 12px;
                font-weight: 700;
                color: var(--text-light);
                margin-bottom: 8px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }
            .gis-legend-custom .leg-item {
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 13px;
                font-weight: 600;
                color: var(--text);
                padding: 4px 0;
            }
            .gis-legend-custom .leg-item .dot {
                width: 14px;
                height: 14px;
                border-radius: 50%;
                flex-shrink: 0;
                border: 2px solid rgba(255, 255, 255, 0.8);
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            }
            .gis-legend-custom .leg-item .dot.wisata {
                background: #0a6e3f;
            }
            .gis-legend-custom .leg-item .dot.produk {
                background: #f5a623;
            }
            .gis-legend-custom .leg-item .dot.seni {
                background: #8b5cf6;
            }
            .gis-legend-custom .leg-item .dot.kesehatan {
                background: #e74c3c;
            }
        }

        /* BERITA */
        .berita-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }
        @media (min-width: 861px) {
            .berita-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
        }
        .berita-card {
            background: var(--white);
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .berita-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .berita-card .date {
            padding: 12px 16px 0;
            font-size: 11px;
            color: var(--text-light);
            font-weight: 500;
        }
        @media (min-width: 861px) {
            .berita-card .date {
                padding: 14px 18px 0;
                font-size: 12px;
            }
        }
        .berita-card .date i {
            margin-right: 4px;
        }
        .berita-card h4 {
            padding: 4px 16px 6px;
            font-size: 15px;
            font-weight: 700;
            line-height: 1.4;
        }
        @media (min-width: 861px) {
            .berita-card h4 {
                padding: 4px 18px 8px;
                font-size: 16px;
            }
        }
        .berita-card p {
            padding: 0 16px 10px;
            font-size: 12px;
            color: var(--text-light);
        }
        @media (min-width: 861px) {
            .berita-card p {
                padding: 0 18px 14px;
                font-size: 13px;
            }
        }
        .berita-card .read-more {
            display: block;
            padding: 10px 16px;
            background: var(--bg);
            font-weight: 600;
            font-size: 12px;
            color: var(--primary);
            border-top: 1px solid rgba(0, 0, 0, 0.04);
            transition: var(--transition);
        }
        .berita-card .read-more:hover {
            background: var(--primary-light);
        }

        /* APBDes */
        .apbdes-wrapper {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px 20px;
            box-shadow: var(--shadow);
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            align-items: center;
        }
        @media (min-width: 861px) {
            .apbdes-wrapper {
                grid-template-columns: 1fr 1fr;
                padding: 40px 48px;
                gap: 40px;
            }
        }
        .apbdes-wrapper .left h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
        }
        @media (min-width: 861px) {
            .apbdes-wrapper .left h3 {
                font-size: 28px;
            }
        }
        .apbdes-wrapper .left p {
            color: var(--text-light);
            margin-bottom: 16px;
            font-size: 13px;
        }
        @media (min-width: 861px) {
            .apbdes-wrapper .left p {
                font-size: 14px;
            }
        }
        .apbdes-wrapper .right .progress-item {
            margin-bottom: 12px;
        }
        .apbdes-wrapper .right .progress-item .label {
            display: flex;
            justify-content: space-between;
            font-weight: 600;
            font-size: 12px;
            margin-bottom: 3px;
        }
        @media (min-width: 861px) {
            .apbdes-wrapper .right .progress-item .label {
                font-size: 13px;
            }
        }
        .apbdes-wrapper .right .progress-item .bar {
            height: 6px;
            background: var(--bg);
            border-radius: 20px;
            overflow: hidden;
        }
        .apbdes-wrapper .right .progress-item .bar .fill {
            height: 100%;
            border-radius: 20px;
            background: var(--primary-gradient);
            transition: width 1.5s ease;
        }
        .apbdes-wrapper .right .progress-item .bar .fill.orange {
            background: var(--secondary-gradient);
        }
        .apbdes-wrapper .right .progress-item .bar .fill.blue {
            background: linear-gradient(135deg, #2196F3, #1976D2);
        }
        .apbdes-wrapper .right .progress-item .bar .fill.red {
            background: linear-gradient(135deg, #e74c3c, #c62828);
        }

        /* GALERIA */
        .galeri-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        @media (min-width: 861px) {
            .galeri-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 16px;
            }
        }
        .galeri-grid .item {
            aspect-ratio: 1/0.85;
            background: var(--primary-light);
            border-radius: var(--radius-sm);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
            transition: var(--transition);
            cursor: pointer;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }
        .galeri-grid .item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            transition: var(--transition);
        }
        .galeri-grid .item .overlay {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.3);
            width: 100%;
            height: 100%;
            color: white;
            transition: var(--transition);
        }
        .galeri-grid .item .overlay i {
            font-size: 22px;
            margin-bottom: 2px;
        }
        @media (min-width: 861px) {
            .galeri-grid .item .overlay i {
                font-size: 30px;
            }
        }
        .galeri-grid .item .overlay span {
            font-size: 10px;
            font-weight: 600;
        }
        @media (min-width: 861px) {
            .galeri-grid .item .overlay span {
                font-size: 12px;
            }
        }
        .galeri-grid .item:hover .overlay {
            background: rgba(10, 110, 63, 0.6);
        }
        .galeri-grid .item:hover img {
            transform: scale(1.05);
        }

        /* TESTEMUNHA */
        .testimoni-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }
        @media (min-width: 861px) {
            .testimoni-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
        }
        .testimoni-card {
            background: var(--white);
            padding: 20px 18px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow);
            border: 1px solid rgba(0, 0, 0, 0.02);
            transition: var(--transition);
            position: relative;
        }
        .testimoni-card::before {
            content: '\201C';
            position: absolute;
            top: 4px;
            right: 16px;
            font-size: 40px;
            color: rgba(10, 110, 63, 0.08);
            font-family: Georgia, serif;
        }
        .testimoni-card:hover {
            box-shadow: var(--shadow-hover);
        }
        .testimoni-card .stars {
            color: var(--secondary);
            font-size: 12px;
            margin-bottom: 8px;
        }
        .testimoni-card p {
            font-style: italic;
            color: var(--text);
            font-size: 13px;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        @media (min-width: 861px) {
            .testimoni-card p {
                font-size: 14px;
            }
        }
        .testimoni-card .user {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .testimoni-card .user .avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--white);
            font-size: 12px;
        }
        @media (min-width: 861px) {
            .testimoni-card .user .avatar {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }
        }
        .testimoni-card .user .name {
            font-weight: 700;
            font-size: 13px;
        }
        @media (min-width: 861px) {
            .testimoni-card .user .name {
                font-size: 14px;
            }
        }
        .testimoni-card .user .role {
            font-size: 11px;
            color: var(--text-light);
        }

        /* CTA */
        .cta-section {
            background: var(--primary-gradient);
            border-radius: var(--radius);
            padding: 32px 24px;
            color: var(--white);
            display: flex;
            flex-direction: column;
            text-align: center;
            gap: 16px;
            position: relative;
            overflow: hidden;
        }
        @media (min-width: 861px) {
            .cta-section {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
                padding: 50px 60px;
            }
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }
        .cta-section h3 {
            font-size: 22px;
            font-weight: 800;
            position: relative;
            z-index: 1;
        }
        @media (min-width: 861px) {
            .cta-section h3 {
                font-size: 28px;
            }
        }
        .cta-section p {
            opacity: 0.9;
            font-size: 14px;
            max-width: 420px;
            position: relative;
            z-index: 1;
            margin: 0 auto;
        }
        @media (min-width: 861px) {
            .cta-section p {
                font-size: 16px;
                margin: 0;
            }
        }

        /* FOOTER */
        footer {
            background: var(--text);
            color: rgba(255, 255, 255, 0.7);
            padding: 32px 0 16px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            margin-bottom: 16px;
        }
        @media (min-width: 861px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: 36px;
                padding-bottom: 30px;
                margin-bottom: 20px;
            }
        }
        .footer-grid .brand h3 {
            color: var(--white);
            font-size: 18px;
            margin-bottom: 8px;
        }
        .footer-grid .brand h3 i {
            color: var(--secondary);
            margin-right: 6px;
        }
        .footer-grid .brand p {
            font-size: 12px;
            max-width: 280px;
            line-height: 1.8;
        }
        @media (min-width: 861px) {
            .footer-grid .brand p {
                font-size: 13px;
            }
        }
        .footer-grid .brand .social {
            display: flex;
            gap: 8px;
            margin-top: 10px;
        }
        .footer-grid .brand .social a {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .footer-grid .brand .social a:hover {
            background: var(--secondary);
            color: var(--text);
        }
        .footer-grid .col h4 {
            color: var(--white);
            font-size: 13px;
            margin-bottom: 8px;
        }
        .footer-grid .col ul {
            list-style: none;
        }
        .footer-grid .col ul li {
            margin-bottom: 6px;
            font-size: 12px;
        }
        @media (min-width: 861px) {
            .footer-grid .col ul li {
                font-size: 13px;
            }
        }
        .footer-grid .col ul li a:hover {
            color: var(--white);
        }
        .footer-bottom {
            text-align: center;
            font-size: 11px;
            opacity: 0.6;
        }
        .footer-bottom span {
            color: var(--secondary);
        }

        /* Leaflet popup fix */
        .leaflet-popup-content-wrapper {
            border-radius: 12px !important;
        }
        .leaflet-popup-content {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            line-height: 1.6;
            min-width: 180px;
            max-width: 240px;
        }
        .leaflet-popup-content img {
            border-radius: 8px;
        }

        ::-webkit-scrollbar {
            width: 4px;
            height: 4px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }
   