* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Sesuaikan Header agar tetap bersih */
header {
    padding: 15px 10%;
    background: #ffffff; /* Putih bersih agar logo terlihat menonjol */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Styling Logo Baru */
.logo-container {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800; /* Tebal sesuai gambar */
    letter-spacing: 1px;
}

.text-orange {
    color: #FF9800; /* Warna Oranye Terang */
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: #9C27B0; /* Warna Ungu/Pink untuk tagline */
    letter-spacing: 4px; /* Memberikan jarak antar huruf sesuai desain */
    margin-top: 4px;
}
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px; /* Jarak antara gambar logo dan teks */
}

.main-logo-img {
    height: 45px; /* Sesuaikan ukuran logo */
    width: auto;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1; /* Menghilangkan spasi berlebih antar baris */
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 600;
    color: #9C27B0;
    letter-spacing: 2px; /* Dikurangi agar tidak terlalu lebar */
    margin-top: 2px; /* Jarak rapat antara baris 1 dan baris 2 */
    line-height: 1;
}

/* Memastikan teks orange terlihat tajam */
.text-orange {
    color: #FF9800;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Update Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 30%, rgba(255,255,255,0.2) 60%), 
                url('https://images.unsplash.com/photo-1577705998148-6da4f3963bc8?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    z-index: 2;
}

/* Update Stats Bar agar berada di bawah tombol */
.stats-bar {
    display: flex;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px); /* Efek kaca modern */
    padding: 30px;
    margin-top: 50px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}

.stat-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.1);
}

.stat-item:last-child { border: none; }

.stat-item h3 {
    color: #003366;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #555;
    font-weight: 600;
}

.stat-icon {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 5px;
}

/* Vision & Mission Styling */
/* Vision & Mission Layout Baru */
.vision-mission {
    padding: 60px 10%;
    background: #ffffff;
}

.vm-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Vision (Full Width Row) */
.vision-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.vm-icon-large {
    font-size: 3.5rem;
    color: #FF9800; /* Oranye */
    background: #fff8f0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.15);
}

/* Mission (Grid 2 Kolom) */
.mission-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Kolom Sejajar */
    gap: 30px;
}

.mission-col {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fcfcfc;
    border-radius: 12px;
    transition: 0.3s;
}

.mission-col:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.vm-icon-small {
    font-size: 1.5rem;
    color: #9C27B0; /* Ungu */
    margin-top: 5px;
}

.mission-item h4 {
    color: #003366;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.mission-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Divider */
.vm-horizontal-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #eee, transparent);
    margin: 40px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .vision-row { flex-direction: column; text-align: center; }
    .mission-row { grid-template-columns: 1fr; }
}
/* Styling Baru untuk Baris Judul Misi */
.mission-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px; /* Jarak ke box poin-poin di bawahnya */
}

.vm-icon-medium {
    font-size: 2rem;
    color: #FF9800; /* Oranye nge-jreng */
    background: #fff8f0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.1);
}

.mission-title-row h2 {
    color: #003366;
    font-size: 1.8rem;
    font-weight: 800;
}

.mission-title-row h2 span {
    color: #9C27B0; /* Ungu logo */
}

/* Memastikan grid mission tetap rapi di bawahnya */
.mission-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mission-col {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    padding: 25px;
    border-radius: 15px;
}
/* Commodities Section */
.commodities {
    padding: 20px 10% 20px 10%; /* Atas hanya 20px agar dekat dengan Visi Misi */
    background: #f9f9f9;
}

.commodities h2 {
    margin-bottom: 30px;
    color: #003366;
}

.commodities h2 span { color: #004a99; border-bottom: 3px solid #004a99; }

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.card.large { grid-column: span 1.5; height: 250px; } /* Simplifikasi grid */

.card-info {
    position: absolute;
    bottom: 0;
    background: white;
    width: 100%;
    padding: 15px;
}

.card-info h3 { font-size: 1rem; color: #003366; }
.card-info p { font-size: 0.8rem; color: #777; }
/* Market Coverage */
.market-coverage {
    position: relative;
    padding: 80px 10%;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Ganti URL di bawah dengan gambar peta/logistik pilihanmu */
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
}

/* Layer Gradasi Opacity: Kiri (Solid White) ke Kanan (Transparent) */
/* Memperhalus gradasi agar transparan di sisi kanan */
.market-coverage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.8) 40%, 
        rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.market-container {
    position: relative;
    z-index: 2; /* Agar teks di atas gradasi */
    width: 100%;
}

.market-content {
    display: flex;
    gap: 40px;
}

.market-cards {
    flex: 1;
    max-width: 450px; /* Membatasi kartu di sisi kiri yang solid */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.market-spacer {
    flex: 1.5; /* Memberikan ruang agar gambar di background kanan terlihat */
}
.market-cards-row {
    display: flex;
    flex-direction: row; /* Membuat box sejajar kiri-kanan */
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Agar aman di layar HP */
}
/* Mempertajam warna kartu agar kontras */
.m-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 12px;
    gap: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(255, 152, 0, 0.2); /* Border tipis warna oranye */
    flex: 0 1 auto; /* Ukuran menyesuaikan konten */
    min-width: 280px;
}
.market-header {
    max-width: 100%;
}
.market-header h2 span {
    color: #9C27B0; /* Warna Ungu sesuai logo */
    border-bottom: 3px solid #FF9800; /* Garis bawah oranye */
}
.icon-circle {
    background: #FF9800; /* Oranye nge-jreng sesuai logo */
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

/* Why Choose Us */
.why-us {
    padding: 80px 10%;
    background: #f9f9f9;
    text-align: center;
}

.why-us h2 { color: #003366; margin-bottom: 40px; }
.why-us span { border-bottom: 3px solid #004a99; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-item {
    background: white;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
}

.why-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.why-item p {
    padding: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

.icon-overlay {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: #004a99;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid white;
}
/* Styling Slider Teks */
.slider-text-container {
    margin-top: 40px;
    min-height: 120px; /* Biar layout tidak lompat saat teks ganti */
    transition: all 0.5s ease;
}

#hero-slider-text {
    font-size: 3.5rem; /* Ukuran besar sesuai gambar */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}
.blue-text { color: #1C0770; }
.white-text { color: #ffffff; }
.highlight-blue { color: #1e88e5; } /* Warna Biru */
.highlight-green { color: #8bc34a; } /* Warna Hijau */

#hero-subtext {
    font-size: 1.1rem;
    color: #1C0770;
    max-width: 600px;
}

/* Animasi Fade */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Contact Us Section */
.contact-us {
    padding: 60px 10%;
    background: #ffffff;
    text-align: center;
}

.contact-us h2 { color: #003366; margin-bottom: 10px; }
.contact-us h2 span { color: #9C27B0; border-bottom: 3px solid #FF9800; }
.contact-subtitle { color: #777; font-size: 0.9rem; margin-bottom: 40px; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Card Sejajar */
    gap: 30px;
}

.contact-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-card:hover { transform: translateY(-10px); }

.contact-img-container {
    position: relative;
    height: 180px;
}

.contact-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #FF9800; /* Oranye Nge-jreng */
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-info {
    padding: 30px 20px 20px;
    text-align: left;
}

.contact-info h4 {
    color: #003366;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-info p {
    color: #9C27B0; /* Ungu Logo */
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-detail {
    display: block;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Footer Styling */
.main-footer {
    padding: 40px 10%;
    background: #1a1a1a;
    color: white;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }

}
/* ============================================================
   MOBILE RESPONSIVE OPTIMIZATION (Screens under 768px)
   ============================================================ */

@media (max-width: 768px) {
    /* 1. Reset Global untuk Mobile */
    header, .hero, .vision-mission, .commodities, .market-coverage, .why-us, .contact-us {
        padding: 40px 5% !important; /* Kurangi padding samping agar konten lebih luas */
    }

    /* 2. Header & Logo Optimization */
    nav {
        flex-direction: column;
        gap: 15px;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.75rem;
    }

    /* 3. Hero Section Adjustment */
    .hero {
        text-align: center;
        min-height: auto;
        padding-top: 120px !important;
        background-position: 70% center; /* Geser background agar gambar kapal tetap terlihat */
    }

    #hero-slider-text {
        font-size: 2rem !important; /* Kecilkan judul besar agar tidak terpotong */
        line-height: 1.2;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* 4. Stats Bar (Menjadi 1 atau 2 kolom) */
    .stats-bar {
        flex-direction: column;
        margin-top: 30px;
        padding: 20px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 15px 0;
    }

    .stat-item:last-child { border-bottom: none; }

    /* 5. Vision & Mission (1 Kolom Sesuai Permintaan) */
    .vision-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .vm-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .mission-row {
        grid-template-columns: 1fr !important; /* Paksa jadi 1 kolom di HP */
    }

    .mission-title-row {
        flex-direction: column;
        text-align: center;
    }

    /* 6. Commodities Grid */
    .grid-container {
        grid-template-columns: 1fr !important; /* 1 kolom penuh */
    }

    .card.large {
        grid-column: span 1;
        height: 200px;
    }

    /* 7. Market Coverage */
    .market-coverage {
        background-position: center;
    }

    .market-cards-row {
        flex-direction: column;
    }

    .m-card {
        min-width: 100%;
    }

    /* 8. Why Choose Us (Grid 2x2) */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* 9. Contact Us */
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Tambahan untuk layar sangat kecil (iPhone SE/Fold) */
@media (max-width: 480px) {
    #hero-slider-text {
        font-size: 1.6rem !important;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
}
3. Perbaikan agar Lebih "Smooth"
Agar pergerakan saat di-scroll terasa ringan, tambahkan properti ini di bagian paling atas style.css Anda:

CSS
html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent; /* Hilangkan kotak abu-abu saat klik di HP */
}

body {
    overflow-x: hidden; /* Mencegah layar bisa digeser ke samping (putih-putih kosong) */
}

img {
    max-width: 100%;
    height: auto; /* Memastikan semua gambar tidak penyet */
}
