.note-editor.note-airframe .note-editing-area,
.note-editor.note-frame .note-editing-area {
    background-color: white !important;
}

.note-editable ul {
    list-style: disc !important;
    list-style-position: inside !important;
}

.note-editable ol {
    list-style: decimal !important;
    list-style-position: inside !important;
}

@media print {
    body {
        display: none;
    }
}

.note-editable li {
    list-style: style;
}

/*.note-editor.note-frame .note-editing-area .note-editable {*/
/*    padding: 25px;*/
/*}*/

.editor {
    font-size: 18px;
    margin-left: 24.4rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fadeIn {
    animation: fadeIn 0.2s ease-out;
}

#scoreChart {
    max-height: 300px;
    width: 100%;
}

#kategoriChart {
    max-height: 300px;
    width: 100%;
}

:root {
    --color-primary: #0a5c36;
    --color-secondary: #f4a100;
    --color-accent: #e8f5ee;
    --color-dark: #0d1f16;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #1a1a2e;
}

.font-display {
    font-family: "Playfair Display", serif;
}

/* Custom Tailwind config */
.bg-primary-custom {
    background-color: var(--color-primary);
}
.text-primary-custom {
    color: var(--color-primary);
}
.bg-secondary-custom {
    background-color: var(--color-secondary);
}
/* ===== HERO ===== */
.hero-bg {
    background: linear-gradient(
        135deg,
        #0a5c36 0%,
        #0d7a48 40%,
        #1a6b3a 70%,
        #0a3d22 100%
    );
    position: relative;
    overflow: hidden;
}
.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.12;
    pointer-events: none;
}
.geo-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

/* ===== BUTTONS ===== */
.btn-cta {
    background: linear-gradient(135deg, #f4a100, #e08800);
    color: #0d1f16;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: 0.625rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.95rem;
}
.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(244, 161, 0, 0.45);
}
.btn-outline-white {
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 0.625rem;
    border: 2px solid rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: white;
}

/* ===== STATS ===== */
.stat-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(10, 92, 54, 0.12);
    border-bottom-color: #0a5c36;
}
.stat-number {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a5c36;
    line-height: 1;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: default;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10, 92, 54, 0.15);
}

/* ===== NILAI CARDS ===== */
.nilai-card {
    border-top: 4px solid #0a5c36;
    border-radius: 1.25rem;
    padding: 1.5rem;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.nilai-card:hover {
    border-top-color: #f4a100;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(10, 92, 54, 0.12);
}

/* ===== FEATURE ICON ===== */
.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #0a5c36;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.feature-row:hover .feature-icon {
    background: #0a5c36;
    color: white;
}

/* ===== TICKER / MARQUEE ===== */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: inline-flex;
    animation: marquee 50s linear infinite;
    gap: 2rem;
}
.marquee-track:hover {
    animation-play-state: paused;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== MISI TIMELINE ===== */
.misi-item {
    position: relative;
}
.misi-item::before {
    content: "";
    position: absolute;
    left: 1.25rem;
    top: 2.5rem;
    bottom: -0.75rem;
    width: 2px;
    background: linear-gradient(to bottom, #0a5c36, transparent);
}
.misi-item:last-child::before {
    display: none;
}

/* ===== SECTION LABEL ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: #e8f5ee;
    color: #0a5c36;
    margin-bottom: 1rem;
}

/* ===== PARTNER LOGOS ===== */
.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.875rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    color: #4b5563;
    font-size: 0.85rem;
    white-space: nowrap;
    transition:
        border-color 0.2s,
        color 0.2s;
}
.partner-item:hover {
    border-color: #0a5c36;
    color: #0a5c36;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #0a5c36, #0d3d22);
    border-radius: 2rem;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}
.cta-banner::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(244, 161, 0, 0.08);
}

/* Produk preview card */
.produk-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s;
}
.produk-chip:hover {
    background: #e8f5ee;
    color: #0a5c36;
}

/* Progress bar */
.stok-bar {
    height: 6px;
    border-radius: 9999px;
    background: #e5e7eb;
    overflow: hidden;
}
.stok-fill {
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(90deg, #0a5c36, #16a34a);
}

/* ===== STAT COUNTER ===== */
.stat-pill {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}
.stat-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(10, 92, 54, 0.12);
}

/* ===== STRATEGI TABS ===== */
.strategi-tab-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: 1.5px solid #e5e7eb;
    background: white;
    color: #6b7280;
    white-space: nowrap;
}
.strategi-tab-btn.active,
.strategi-tab-btn:hover {
    background: #0a5c36;
    color: white;
    border-color: #0a5c36;
}
.strategi-content {
    display: none;
}
.strategi-content.active {
    display: block;
}

/* CTA gradient button */
.btn-cta {
    background: linear-gradient(135deg, #f4a100, #e08800);
    color: #0d1f16;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 161, 0, 0.4);
}

/* Mobile Dock */
.mobile-dock {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
}

.dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.5rem;
    border-radius: 0.75rem;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    flex: 1;
    position: relative;
}

.dock-item:hover,
.dock-item.active {
    color: #0a5c36;
}

.dock-item.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: #0a5c36;
    border-radius: 0 0 4px 4px;
}

.dock-item i {
    font-size: 1.25rem;
    line-height: 1;
}

.dock-item span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
}

/* Dock center CTA button */
.dock-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    text-decoration: none;
    flex: 1;
}

.dock-cta-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a5c36, #0d7a48);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(10, 92, 54, 0.4);
    transition: all 0.2s ease;
    margin-top: -12px;
}

.dock-cta:hover .dock-cta-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(10, 92, 54, 0.5);
}

.dock-cta i {
    font-size: 1.1rem;
    color: white;
}

.dock-cta span {
    font-size: 0.6rem;
    font-weight: 600;
    color: #0a5c36;
    letter-spacing: 0.02em;
}

/* Add padding to body on mobile so content isn't hidden behind dock */
@media (max-width: 1023px) {
    body {
        padding-bottom: 70px;
    }
}

/* Navbar scroll */
.navbar-scroll {
    transition: all 0.3s ease;
}

.btn-outline-white {
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.page-hero {
    background: linear-gradient(135deg, #0a5c36 0%, #0d7a48 50%, #0a3d22 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
}

/* Filter tab */
.filter-tab {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1.5px solid #e5e7eb;
    background: white;
    color: #6b7280;
    white-space: nowrap;
}

.filter-tab:hover,
.filter-tab.active {
    background: #0a5c36;
    color: white;
    border-color: #0a5c36;
}

/* Product card */
.produk-card {
    background: white;
    border: 1.5px solid #f3f4f6;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.produk-card:hover {
    border-color: #0a5c36;
    box-shadow: 0 12px 32px rgba(10, 92, 54, 0.12);
    transform: translateY(-4px);
}

.produk-card .emoji-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    padding: 2rem 1rem;
    background: #f9fafb;
    position: relative;
}

/* Badge stok */
.stok-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.stok-tersedia {
    background: #e8f5ee;
    color: #0a5c36;
}

.stok-terbatas {
    background: #fff7ed;
    color: #c2410c;
}

.stok-habis {
    background: #f3f4f6;
    color: #9ca3af;
}

/* Stok bar */
.stok-bar {
    height: 6px;
    border-radius: 9999px;
    background: #e5e7eb;
    overflow: hidden;
}

.stok-fill {
    height: 100%;
    border-radius: 9999px;
    transition: width 1s ease;
}

/* Search input */
.search-wrap {
    position: relative;
}

.search-wrap i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.9rem;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    background: white;
}

.search-input:focus {
    border-color: #0a5c36;
}

/* Section label */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: #e8f5ee;
    color: #0a5c36;
    margin-bottom: 1rem;
}

/* No result */
#no-result {
    display: none;
}

/* Btn CTA */
.btn-cta {
    background: linear-gradient(135deg, #f4a100, #e08800);
    color: #0d1f16;
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: 0.625rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(244, 161, 0, 0.4);
}

.btn-green {
    background: linear-gradient(135deg, #0a5c36, #0d7a48);
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: 0.625rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(10, 92, 54, 0.35);
}

/* ===== MISI TIMELINE ===== */
.misi-timeline-item {
    display: flex;
    gap: 1.25rem;
    position: relative;
}
.misi-timeline-item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 1.375rem;
    top: 2.75rem;
    bottom: -0.5rem;
    width: 2px;
    background: linear-gradient(to bottom, #0a5c36, rgba(10, 92, 54, 0.1));
}
.misi-num {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #e8f5ee;
    border: 2px solid #0a5c36;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #0a5c36;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.misi-timeline-item:hover .misi-num {
    background: #0a5c36;
    color: white;
}

/* ===== SOP CARDS ===== */
.sop-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1.5px solid #f3f4f6;
    transition: all 0.3s ease;
}
.sop-card:hover {
    border-color: #0a5c36;
    box-shadow: 0 8px 24px rgba(10, 92, 54, 0.1);
    transform: translateY(-3px);
}

/* ===== KOMITMEN STRIP ===== */
.komitmen-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.875rem;
    transition: background 0.2s;
}
.komitmen-item:hover {
    background: rgba(255, 255, 255, 0.14);
}

/* ===== LAYANAN UTAMA CARD ===== */
.layanan-card {
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.35s ease;
    cursor: default;
}
.layanan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(10, 92, 54, 0.18);
}
.layanan-card .card-header {
    padding: 2rem 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.layanan-card .card-body {
    padding: 1.5rem 2rem 2rem;
    background: white;
}
.layanan-card .card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.layanan-card ul li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}
.layanan-card ul li:last-child {
    border-bottom: none;
}

/* ===== SUPPORTING SERVICES ===== */
.support-card {
    background: white;
    border: 1.5px solid #f3f4f6;
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.support-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0a5c36, #16a34a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.support-card:hover {
    border-color: #e8f5ee;
    box-shadow: 0 12px 28px rgba(10, 92, 54, 0.1);
    transform: translateY(-4px);
}
.support-card:hover::before {
    transform: scaleX(1);
}
.support-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0a5c36;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.support-card:hover .support-icon {
    background: #0a5c36;
    color: white;
}

/* ===== PROSES STEPS ===== */
.proses-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
}
.proses-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 1.5rem;
    top: 3.5rem;
    bottom: -1rem;
    width: 2px;
    background: linear-gradient(to bottom, #0a5c36, rgba(10, 92, 54, 0.1));
}
.step-num {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: white;
    border: 2px solid #0a5c36;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #0a5c36;
    font-size: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(10, 92, 54, 0.15);
}
.proses-step:hover .step-num {
    background: #0a5c36;
    color: white;
}
.step-content {
    background: white;
    border: 1.5px solid #f3f4f6;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    flex: 1;
    transition: all 0.3s ease;
}
.proses-step:hover .step-content {
    border-color: #e8f5ee;
    box-shadow: 0 6px 20px rgba(10, 92, 54, 0.08);
}

/* ===== PAKET KERJASAMA ===== */
.paket-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.paket-card:hover {
    border-color: #0a5c36;
    box-shadow: 0 16px 40px rgba(10, 92, 54, 0.12);
    transform: translateY(-4px);
}
.paket-card.featured {
    border-color: #0a5c36;
    background: linear-gradient(135deg, #0a5c36, #0d7a48);
    color: white;
}
.paket-card.featured:hover {
    box-shadow: 0 20px 48px rgba(10, 92, 54, 0.3);
}
.paket-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.paket-card.featured .paket-feature {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}
.paket-feature:last-child {
    border-bottom: none;
}

/* ===== MITRA TARGET ===== */
.mitra-card {
    background: white;
    border: 1.5px solid #f3f4f6;
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}
.mitra-card:hover {
    border-color: #0a5c36;
    box-shadow: 0 10px 28px rgba(10, 92, 54, 0.1);
    transform: translateY(-4px);
}
.mitra-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #0a5c36;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}
.mitra-card:hover .mitra-icon {
    background: #0a5c36;
    color: white;
}

/* ===== KEUNGGULAN BAND ===== */
.keunggulan-item {
    text-align: center;
    padding: 2rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.2s;
}
.keunggulan-item:last-child {
    border-right: none;
}
.keunggulan-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* ===== ACCORDION ===== */
.faq-item {
    border-bottom: 1px solid #f3f4f6;
}
.faq-btn {
    width: 100%;
    text-align: left;
    padding: 1.25rem 0;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.faq-btn:hover {
    color: #0a5c36;
}
.faq-btn .faq-icon {
    transition: transform 0.3s ease;
    color: #0a5c36;
}
.faq-btn.open .faq-icon {
    transform: rotate(45deg);
}
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-body.open {
    max-height: 300px;
}
.faq-body p {
    padding: 0 0 1.25rem;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== MITRA CARDS ===== */
.mitra-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}
.mitra-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a5c36, #16a34a);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}
.mitra-card:hover {
    border-color: #c7e8d4;
    box-shadow: 0 16px 40px rgba(10, 92, 54, 0.12);
    transform: translateY(-5px);
}
.mitra-card:hover::after {
    transform: scaleX(1);
}
.mitra-card .mitra-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #0a5c36;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}
.mitra-card:hover .mitra-icon {
    background: #0a5c36;
    color: white;
}

/* ===== FORM STYLES ===== */
.form-group {
    margin-bottom: 1.25rem;
}
.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}
.form-label .required {
    color: #ef4444;
    margin-left: 2px;
}
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    color: #1f2937;
    background: white;
    transition: all 0.2s ease;
    outline: none;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.form-control:focus {
    border-color: #0a5c36;
    box-shadow: 0 0 0 3px rgba(10, 92, 54, 0.1);
}
.form-control::placeholder {
    color: #9ca3af;
}
textarea.form-control {
    resize: vertical;
    min-height: 130px;
}
select.form-control {
    cursor: pointer;
}

.form-control-icon {
    position: relative;
}
.form-control-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.85rem;
    pointer-events: none;
}
.form-control-icon .form-control {
    padding-left: 2.75rem;
}

/* ===== PROSES KERJASAMA ===== */
.proses-card {
    background: white;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}
.proses-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(10, 92, 54, 0.12);
    border-top-color: #0a5c36;
}
.proses-num {
    position: absolute;
    top: -1.125rem;
    left: 2rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a5c36, #0d7a48);
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(10, 92, 54, 0.35);
}

/* ===== BENTUK KERJASAMA ===== */
.bentuk-card {
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.bentuk-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

/* ===== KEUNTUNGAN LIST ===== */
.keuntungan-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem;
    border-radius: 0.875rem;
    background: white;
    border: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}
.keuntungan-item:hover {
    border-color: #c7e8d4;
    box-shadow: 0 4px 12px rgba(10, 92, 54, 0.08);
}
.keuntungan-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a5c36;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.keuntungan-item:hover .keuntungan-icon {
    background: #0a5c36;
    color: white;
}

/* ===== FORM CARD SHADOW ===== */
.form-card {
    background: white;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

/* ===== RADIO/CHECKBOX CUSTOM ===== */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}
.radio-option input[type="radio"] {
    display: none;
}
.radio-option label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}
.radio-option input[type="radio"]:checked + label {
    border-color: #0a5c36;
    background: #e8f5ee;
    color: #0a5c36;
    font-weight: 700;
}
.radio-option label:hover {
    border-color: #0a5c36;
    color: #0a5c36;
}

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
    display: none;
    background: linear-gradient(135deg, #e8f5ee, #d1f0dd);
    border: 1.5px solid #86efac;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

/* ===== KONTAK CHANNEL CARDS ===== */
.channel-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.channel-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}

.channel-card.whatsapp::before {
    background: linear-gradient(90deg, #25d366, #128c7e);
}

.channel-card.email::before {
    background: linear-gradient(90deg, #0a5c36, #16a34a);
}

.channel-card.phone::before {
    background: linear-gradient(90deg, #f4a100, #e08800);
}

.channel-card.office::before {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.channel-card:hover {
    border-color: #e5e7eb;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.channel-card:hover::before {
    transform: scaleX(1);
}

.channel-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.channel-card.whatsapp .channel-icon {
    background: #dcfce7;
    color: #16a34a;
}

.channel-card.email .channel-icon {
    background: #e8f5ee;
    color: #0a5c36;
}

.channel-card.phone .channel-icon {
    background: #fff7ed;
    color: #f4a100;
}

.channel-card.office .channel-icon {
    background: #ede9fe;
    color: #7c3aed;
}

.channel-card:hover .channel-icon {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* ===== FORM STYLES ===== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-label .required {
    color: #ef4444;
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    color: #1f2937;
    background: white;
    transition: all 0.2s ease;
    outline: none;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.form-control:focus {
    border-color: #0a5c36;
    box-shadow: 0 0 0 3px rgba(10, 92, 54, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

select.form-control {
    cursor: pointer;
}

.form-control-icon {
    position: relative;
}

.form-control-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.85rem;
    pointer-events: none;
}

.form-control-icon .form-control {
    padding-left: 2.75rem;
}

/* ===== FORM CARD ===== */
.form-card {
    background: white;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

/* ===== TOPIC PILLS ===== */
.topic-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topic-option input[type="radio"] {
    display: none;
}

.topic-option label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.875rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.topic-option input[type="radio"]:checked + label {
    border-color: #0a5c36;
    background: #e8f5ee;
    color: #0a5c36;
    font-weight: 700;
}

.topic-option label:hover {
    border-color: #0a5c36;
    color: #0a5c36;
}

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
    background: linear-gradient(135deg, #e8f5ee, #d1ead8);
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin {
    text-align: center;
    position: relative;
    z-index: 2;
}

.map-pin-dot {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a5c36, #0d7a48);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    box-shadow: 0 8px 24px rgba(10, 92, 54, 0.4);
    animation: pulse-pin 2s infinite;
}

@keyframes pulse-pin {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(10, 92, 54, 0.4);
    }

    50% {
        box-shadow: 0 0 0 16px rgba(10, 92, 54, 0);
    }
}

.map-grid {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(10, 92, 54, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 92, 54, 0.5) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ===== INFO ITEM ===== */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 1rem;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.info-item:hover {
    background: #e8f5ee;
    border-color: #c7e8d4;
}

.info-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a5c36;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.info-item:hover .info-icon {
    background: #0a5c36;
    color: white;
}

/* ===== JAM OPERASIONAL ===== */
.jam-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.88rem;
}

.jam-row:last-child {
    border-bottom: none;
}

.jam-status {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
}

.jam-open {
    background: #e8f5ee;
    color: #0a5c36;
}

.jam-close {
    background: #f3f4f6;
    color: #9ca3af;
}

/* ===== SUCCESS MSG ===== */
.success-msg {
    display: none;
    background: linear-gradient(135deg, #e8f5ee, #d1f0dd);
    border: 1.5px solid #86efac;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

/* ===== SOCIAL LINKS ===== */
.social-btn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-3px);
}
