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

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #111827;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR & LOGO KOREKSI */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 44px;       
    width: auto;        
    object-fit: contain;
}

.logo div {
    display: flex;
    flex-direction: column;
}

.logo strong {
    font-size: 16px;
    color: #0b3b60;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.logo span {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.2;
}

/* HERO SECTION */
.hero {
    padding: 80px 0;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #0f172a;
}

.hero p {
    color: #4b5563;
    font-size: 18px;
    max-width: 680px;
}

.buttons {
    margin-top: 32px;
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: #0B3B60;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #082b47;
    transform: translateY(-1px);
}

.btn-secondary {
    border: 1px solid #d1d5db;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.hero-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.hero-card h3 {
    margin-bottom: 16px;
    font-size: 18px;
    color: #1e293b;
}

.metric {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}

.metric span {
    color: #64748b;
    font-size: 14px;
}

.metric strong {
    color: #0f172a;
    font-size: 16px;
}

.status {
    margin-top: 24px;
    padding: 12px;
    background: #f0fdf4;
    color: #166534;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* STATS SECTION */
.stats {
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    border: 1px solid #e5e7eb;
    padding: 32px 20px;
    border-radius: 16px;
    text-align: center;
    background: #ffffff;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
}

.card h2 {
    font-size: 36px;
    color: #0B3B60;
    margin-bottom: 8px;
}

.card p {
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
}

/* SECTION GLOBAL */
.section {
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
}

.section h2 {
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 12px;
}

.subtitle {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 36px;
}

/* MAP BOX CONTAINER FIX */
.map-box {
    height: 550px; 
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    overflow: hidden; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    background: #ffffff;
}

/* IFRAME STYLING */
.map-iframe {
    width: 100%;
    height: 100%;
    border: none; 
    display: block;
}

/* GRIDS FOR COMMODITY & IMPACT */
.commodity-grid,
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

/* KARTU KOMODITAS & WISATA DENGAN ELEMEN GAMBAR NYATA */
.commodity-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 0; /* Diubah menjadi 0 agar gambar menempel pas ke tepi atas kartu */
    overflow: hidden; /* Memastikan sudut gambar ikut melengkung rapi */
    background: #ffffff;
    transition: all 0.3s ease;
}

.commodity-card:hover {
    border-color: #0B3B60;
    box-shadow: 0 10px 25px rgba(11, 59, 96, 0.08);
    transform: translateY(-4px);
}

/* STYLE PENGATURAN GAMBAR PADA KARTU WISATA */
.commodity-img {
    width: 100%;
    height: 180px; /* Membatasi tinggi gambar secara seragam */
    object-fit: cover; /* Mencegah gambar menjadi gepeng atau distorsi */
    border-bottom: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.commodity-card:hover .commodity-img {
    transform: scale(1.03); /* Efek perbesaran gambar halus saat di-hover */
}

/* KUSTOMISASI TEKS DI DALAM KARTU KOMODITAS */
.commodity-card h3 {
    font-size: 18px;
    color: #1e293b;
    margin: 20px 20px 8px 20px;
}

.commodity-card p {
    color: #64748b;
    font-size: 14px;
    margin: 0 20px 24px 20px;
}

/* KARTU DAMPAK PARTNERSHIP (TETAP MENGGUNAKAN PADDING ORIGINAL) */
.impact-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    background: #ffffff;
    transition: all 0.2s ease;
}

.impact-card:hover {
    border-color: #0B3B60;
    box-shadow: 0 4px 12px rgba(11, 59, 96, 0.05);
}

.impact-card h3 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 8px;
}

.impact-card p {
    color: #64748b;
    font-size: 14px;
}

/* FOOTER */
footer {
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: #64748b;
    font-size: 14px;
    background: #f8fafc;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .map-box {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .buttons {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 34px;
    }
}