:root {
    --dp-green-900: #0a5a39;
    --dp-green-700: #1d8850;
    --dp-green-500: #30c27c;
    --dp-green-100: #e6f6ed;
    --dp-sky-500: #3bb0ff;
    --dp-yellow-400: #ffd34d;
    --dp-gray-900: #0f1c2d;
    --dp-gray-700: #475467;
    --dp-gray-500: #7b8a9d;
    --dp-gray-200: #e2e8f0;
    --dp-white: #ffffff;
    --dp-surface: #f4f7f1;
    --dp-radius-lg: 28px;
    --dp-radius-md: 20px;
    --dp-radius-sm: 14px;
    --dp-shadow-soft: 0 16px 45px rgba(15, 28, 45, 0.08);
    --dp-shadow-card: 0 25px 60px rgba(10, 90, 57, 0.12);
    --dp-transition: 0.25s ease;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: var(--dp-surface);
    color: var(--dp-gray-900);
    line-height: 1.6;
}

/* Background gelap di area footer untuk menutupi background putih */
body.has-global-sidebars .saphira-footer ~ *,
body.has-global-sidebars footer ~ * {
    background: transparent;
}

/* Override background putih di area footer */
body.has-global-sidebars::after {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -999 !important;
}

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

img {
    max-width: 100%;
    display: block;
}

.dp-container {
    width: min(1100px, 88vw);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* When sidebars are present, 5px gap between sidebar and container */
body.has-global-sidebars .dp-container {
    width: calc(100vw - var(--sidebar-left-width) - var(--sidebar-right-width) - 10px);
    max-width: calc(100vw - var(--sidebar-left-width) - var(--sidebar-right-width) - 10px);
    margin-left: calc(var(--sidebar-left-width) + 5px);
    margin-right: calc(var(--sidebar-right-width) + 5px);
    padding-left: 0;
    padding-right: 0;
}

/* Mobile: Remove sidebar adjustments */
@media (max-width: 768px) {
    body.has-global-sidebars .dp-container {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 16px;
        padding-right: 16px;
    }
}

.dp-body {
    background: var(--dp-surface);
}

/* Header */
.dp-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(7, 19, 33, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile: Fixed header */
@media (max-width: 768px) {
    .dp-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    body {
        padding-top: 70px;
    }
}

.dp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 0;
}

.dp-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dp-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.dp-brand-text strong {
    display: block;
    font-size: 0.95rem;
    color: #e6f4ff;
    line-height: 1.2;
}

.dp-brand-text span {
    display: block;
    font-size: 0.75rem;
    color: rgba(230, 244, 255, 0.75);
    line-height: 1.2;
}

.dp-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.dp-nav a {
    padding: 8px 4px;
    color: rgba(230, 244, 255, 0.75);
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dp-nav a:hover,
.dp-nav a:focus-visible,
.dp-nav a[aria-current="page"] {
    color: #3b82f6;
    border-color: #3b82f6;
}

.dp-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dp-search {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 8px 16px 8px 38px;
    background: rgba(0, 0, 0, 0.3);
    min-width: 200px;
    transition: all 0.3s ease;
}

.dp-search:focus-within {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.dp-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    translate: 0 -50%;
    color: rgba(230, 244, 255, 0.6);
    font-size: 0.9rem;
}

.dp-search input {
    border: none;
    outline: none;
    width: 100%;
    font-family: inherit;
    font-size: 0.9rem;
    background: transparent;
    color: #e6f4ff;
    color: var(--dp-gray-700);
}

.dp-btn {
    border: none;
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: transform var(--dp-transition), box-shadow var(--dp-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.dp-btn:hover {
    transform: translateY(-1px);
}

.dp-btn-solid {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    border: none;
}

.dp-btn-ghost {
    background: rgba(0, 0, 0, 0.3);
    color: #e6f4ff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dp-btn-ghost:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    color: #3b82f6;
}

.dp-nav-toggle {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.dp-nav-toggle:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.dp-nav-toggle span,
.dp-nav-toggle span::before,
.dp-nav-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: #e6f4ff;
    transition: all var(--dp-transition);
    content: '';
}

.dp-nav-toggle span::before {
    transform: translateY(-6px);
}

.dp-nav-toggle span::after {
    transform: translateY(6px);
}

.dp-nav-toggle.is-active span {
    background: transparent;
}

.dp-nav-toggle.is-active span::before {
    transform: rotate(45deg);
}

.dp-nav-toggle.is-active span::after {
    transform: rotate(-45deg);
}

.dp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1002;
    pointer-events: none;
    display: none !important;
}

.dp-overlay.is-open,
.dp-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block !important;
}

.dp-mobile-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 85vh;
    background: rgba(7, 19, 33, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: none;
    border-right: none;
    padding: 32px 20px 24px;
    padding-top: 48px;
    padding-bottom: max(24px, calc(24px + env(safe-area-inset-bottom) + 70px));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1003;
    display: none;
    flex-direction: column;
    border-radius: 24px 24px 0 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.dp-mobile-menu.is-open,
.dp-mobile-menu.active {
    transform: translateY(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
    pointer-events: auto !important;
}

.dp-mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dp-mobile-menu nav a {
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(230, 244, 255, 0.75);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dp-mobile-menu nav a:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    color: #3b82f6;
}

.dp-mobile-search {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dp-mobile-search i {
    color: rgba(230, 244, 255, 0.6);
}

.dp-mobile-search input {
    border: none;
    outline: none;
    flex: 1;
    font-family: inherit;
    background: transparent;
    color: #e6f4ff;
}

.dp-mobile-search input::placeholder {
    color: rgba(230, 244, 255, 0.5);
}

/* Mobile menu header drag handle */
.dp-mobile-menu::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    z-index: 1;
}

/* Mobile menu animations */
@media (max-width: 768px) {
    .dp-mobile-menu {
        will-change: transform;
    }
    
    .dp-mobile-menu.active {
        transform: translateY(0);
    }
    
    /* Smooth scroll untuk menu items */
    .dp-mobile-menu nav a {
        animation: slideUp 0.3s ease forwards;
        opacity: 0;
    }
    
    .dp-mobile-menu.active nav a {
        opacity: 1;
    }
    
    .dp-mobile-menu.active nav a:nth-child(1) { animation-delay: 0.05s; }
    .dp-mobile-menu.active nav a:nth-child(2) { animation-delay: 0.1s; }
    .dp-mobile-menu.active nav a:nth-child(3) { animation-delay: 0.15s; }
    .dp-mobile-menu.active nav a:nth-child(4) { animation-delay: 0.2s; }
    .dp-mobile-menu.active nav a:nth-child(5) { animation-delay: 0.25s; }
    .dp-mobile-menu.active nav a:nth-child(6) { animation-delay: 0.3s; }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hero */
.dp-main {
    padding-bottom: 80px;
}

.dp-hero {
    padding: 64px 0 48px;
}

.dp-hero-grid {
    display: grid;
    gap: 48px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.dp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dp-green-700);
    background: rgba(48, 194, 124, 0.14);
}

.dp-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin: 18px 0 16px;
    line-height: 1.12;
}

.dp-highlight {
    color: var(--dp-green-700);
}

.dp-hero p {
    font-size: 1.05rem;
    color: var(--dp-gray-700);
    margin-bottom: 30px;
}

.dp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.dp-hero-meta {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.dp-meta-card {
    padding: 16px 20px;
    border-radius: var(--dp-radius-md);
    background: var(--dp-white);
    box-shadow: var(--dp-shadow-soft);
}

.dp-meta-label {
    font-size: 0.85rem;
    color: var(--dp-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dp-meta-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dp-green-900);
}

.dp-hero-visual {
    background: linear-gradient(145deg, #1b7b4d, #32c37f);
    border-radius: var(--dp-radius-lg);
    padding: 32px;
    color: var(--dp-white);
    position: relative;
    min-height: 320px;
    overflow: hidden;
    box-shadow: var(--dp-shadow-card);
}

.dp-hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15), transparent 45%);
    pointer-events: none;
}

.dp-calendar-card {
    position: relative;
    z-index: 2;
    width: 220px;
    margin: 0 auto;
    text-align: center;
    background: var(--dp-white);
    color: var(--dp-gray-900);
    border-radius: 26px;
    padding: 22px 18px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.dp-calendar-month {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--dp-green-700);
    letter-spacing: 0.15em;
}

.dp-calendar-day {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 6px 0 0;
}

.dp-hero-checklist {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dp-hero-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.dp-hero-check i {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Metric cards */
.dp-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin: 32px auto 0;
}

.dp-metric-card {
    background: var(--dp-white);
    border-radius: var(--dp-radius-md);
    padding: 20px 22px;
    box-shadow: var(--dp-shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dp-metric-label {
    font-size: 0.9rem;
    color: var(--dp-gray-500);
}

.dp-metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dp-gray-900);
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.dp-metric-badge {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dp-green-700);
}

.dp-metric-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dp-white);
}

.dp-metric-icon.sun {
    background: linear-gradient(135deg, #ff8d3b, #ffd34d);
}

.dp-metric-icon.people {
    background: linear-gradient(135deg, #4f46e5, #818cf8);
}

.dp-metric-icon.harvest {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* Sections */
.dp-section {
    margin-top: 72px;
}

.dp-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 32px;
}

.dp-section-title {
    margin: 0;
    font-size: 1.6rem;
}

.dp-link {
    font-weight: 600;
    color: var(--dp-green-700);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dp-innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.dp-innovation-card {
    background: var(--dp-white);
    border-radius: var(--dp-radius-md);
    padding: 20px;
    box-shadow: var(--dp-shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.dp-card-media {
    border-radius: var(--dp-radius-md);
    overflow: hidden;
    position: relative;
    height: 160px;
}

.dp-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dp-card-status {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dp-white);
    background: rgba(15, 28, 45, 0.3);
    backdrop-filter: blur(6px);
}

.dp-status-success {
    background: rgba(34, 197, 94, 0.9);
}

.dp-status-warning {
    background: rgba(251, 191, 36, 0.9);
}

.dp-card-body h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.dp-card-tag {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--dp-green-100);
    color: var(--dp-green-700);
    font-size: 0.8rem;
    font-weight: 600;
}

.dp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.dp-service-card {
    background: var(--dp-white);
    border-radius: var(--dp-radius-md);
    padding: 20px;
    text-align: center;
    box-shadow: var(--dp-shadow-soft);
}

.dp-service-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dp-white);
}

.dp-service-card h4 {
    margin: 0 0 6px;
}

.dp-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.dp-news-card {
    background: var(--dp-white);
    border-radius: var(--dp-radius-md);
    overflow: hidden;
    box-shadow: var(--dp-shadow-soft);
    display: flex;
    flex-direction: column;
}

.dp-news-media {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.dp-news-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dp-news-body h3 {
    margin: 0;
    font-size: 1.1rem;
}

.dp-news-meta {
    font-size: 0.9rem;
    color: var(--dp-gray-500);
    display: flex;
    gap: 8px;
    align-items: center;
}

.dp-news-link {
    color: var(--dp-green-700);
    font-weight: 600;
}

.dp-video-grid,
.dp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.dp-video-card,
.dp-gallery-card {
    background: var(--dp-white);
    border-radius: var(--dp-radius-md);
    box-shadow: var(--dp-shadow-soft);
    overflow: hidden;
}

.dp-video-frame {
    position: relative;
    padding-top: 56.25%;
}

.dp-video-frame iframe,
.dp-video-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.dp-video-body {
    padding: 16px 18px 20px;
}

.dp-gallery-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.dp-gallery-card figcaption {
    padding: 14px 16px;
    font-weight: 600;
}

.dp-map-wrapper {
    border-radius: var(--dp-radius-lg);
    overflow: hidden;
    box-shadow: var(--dp-shadow-card);
}

.dp-map-wrapper iframe {
    width: 100%;
    min-height: 380px;
    border: none;
}

.saphira-footer {
    margin-top: 80px;
    background: #0a1f1a;
    color: var(--dp-white);
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .dp-header-inner {
        flex-wrap: wrap;
    }

    .dp-nav {
        display: none;
    }

    .dp-nav-toggle {
        display: inline-flex;
    }

    .dp-header-actions {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .dp-header-actions {
        display: none;
    }
    
    /* Sembunyikan menu di header mobile */
    .dp-nav {
        display: none !important;
    }
    
    .dp-nav-toggle {
        display: none !important;
    }

    .dp-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Adjust semua hero sections untuk fixed header */
    .dp-hero,
    .profil-hero,
    .contact-hero,
    .berita-hero,
    .layanan-hero,
    .perangkat-hero,
    .idm-hero,
    .informasi-hero,
    .penduduk-hero,
    .dpt-hero,
    .potensi-hero,
    .laporan-hero,
    .produk-hero,
    .umkm-hero,
    .lembaga-hero,
    .video-hero,
    .galeri-hero,
    .kategori-hero,
    .dokumen-hero,
    .pbb-hero,
    .bansos-hero,
    .agenda-hero,
    .pembangunan-hero,
    .sosmed-hero,
    .aspirasi-hero {
        padding-top: 100px !important;
    }

    .dp-hero-grid {
        gap: 32px;
    }
    
    /* Adjust container untuk fixed header */
    .dp-container {
        padding: 0 16px;
    }
    
    .dp-header-inner {
        padding: 10px 0;
    }
    
    .dp-brand {
        flex: 1;
    }
    
    .dp-logo {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .dp-brand-text strong {
        font-size: 0.85rem;
    }
    
    .dp-brand-text span {
        font-size: 0.7rem;
    }
    
    /* Perbaiki ukuran proporsional untuk mobile */
    .dp-hero h1,
    .profil-hero h1,
    .contact-hero h1,
    .berita-hero h1,
    .layanan-hero h1,
    .perangkat-hero h1,
    .idm-hero h1,
    .informasi-hero h1,
    .penduduk-hero h1,
    .dpt-hero h1,
    .potensi-hero h1,
    .laporan-hero h1,
    .produk-hero h1,
    .umkm-hero h1,
    .lembaga-hero h1,
    .video-hero h1,
    .galeri-hero h1,
    .kategori-hero h1,
    .dokumen-hero h1,
    .pbb-hero h1,
    .bansos-hero h1,
    .agenda-hero h1,
    .pembangunan-hero h1,
    .sosmed-hero h1,
    .aspirasi-hero h1 {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
        line-height: 1.3 !important;
    }
    
    .dp-hero p,
    .profil-hero p,
    .contact-hero p,
    .berita-hero p {
        font-size: 0.9rem !important;
    }
    
    /* Perbaiki grid layout untuk mobile */
    .dp-hero-grid,
    .profil-hero__grid,
    .contact-hero__grid,
    .berita-hero__grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    /* Perbaiki main content untuk mobile */
    .dp-main {
        padding-top: 0 !important;
    }
    
    /* Perbaiki wrapper untuk mobile */
    .berita-wrapper,
    .profil-wrapper,
    .contact-wrapper,
    .layanan-wrapper {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    /* Perbaiki sidebar untuk mobile */
    .berita-sidebar,
    .profil-sidebar,
    .contact-sidebar,
    .layanan-sidebar {
        position: static !important;
    }
}
}

/* Import zoom-responsive fixes for browser zoom 150%+ */
@import url('zoom-responsive.css');


