/* --- CONTAINER UTAMA --- */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    height: 70px; /* Tinggi tetap 70px */
    width: 100%;
    position: sticky; 
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex; 
    align-items: center; 
}

/* --- WRAPPER TENGAH (PENGATUR LEBAR - DIPERBARUI) --- */
.header-inner {
    width: 100%;
    
    /* --- PERUBAHAN UTAMA DI SINI --- */
    /* Saya naikkan dari 1100px menjadi 1200px agar lebih lebar dan sejajar */
    /* Jika masih kurang pas, coba ganti angkanya jadi 1170px atau 1250px */
    max-width: 1200px; 
    
    margin: 0 auto; /* Posisi tengah otomatis */
    padding: 0 15px; 
    height: 100%; 
    
    display: flex;
    align-items: center; 
    justify-content: space-between; 
}

/* --- 1. LOGO AREA --- */
.desktop-logo {
    display: flex;
    align-items: center; 
    flex-shrink: 0; 
    margin-right: 30px; 
}

.desktop-logo img {
    max-height: 40px; /* Tinggi logo tetap 40px */
    width: auto;
    display: block; 
}

/* Fallback Teks */
.desktop-logo h2 a {
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    color: #cc0000;
    text-transform: uppercase;
    line-height: 1; 
}

/* --- 2. MENU AREA --- */
.desktop-menu {
    flex-grow: 1; 
    height: 100%; 
    display: flex;
    align-items: center; 
    justify-content: flex-end; /* Menu tetap merapat ke kanan */
}

.desktop-nav-ul {
    display: flex;
    gap: 20px; /* Jarak antar menu tetap rapi (20px) */
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center; 
}

.desktop-nav-ul li {
    display: flex; 
    align-items: center;
}

.desktop-nav-ul li a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    padding: 10px 0; 
    transition: color 0.3s ease;
}

.desktop-nav-ul li a:hover {
    color: #003399;
}

/* --- 3. SEARCH AREA --- */
.desktop-search {
    flex-shrink: 0;
    margin-left: 25px; 
    padding-left: 25px; 
    border-left: 1px solid #eee;
    display: flex;
    align-items: center; 
}

.search-btn-desktop {
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    padding: 5px; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, color 0.2s;
}

.search-btn-desktop:hover {
    transform: scale(1.1);
    color: #003399;
}