/* --- GLOBAL STYLES --- */
* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body { margin: 0; padding: 0; }

/* --- NAVBAR --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    border-bottom: 1px solid #000;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu {
    display: flex;
    gap: 0;
}

.menu a {
    text-decoration: none;
    color: black;
    border: 1px solid #000;
    padding: 5px 15px;
    display: block;
}

/* --- SECTIONS --- */
section {
    padding: 40px 5%;
    border-bottom: 1px solid #ccc;
}

.banner-placeholder {
    background: #ffffff;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

/* --- HEADQUARTER (CIRCLE FIX) --- */
.hq-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0;
    width: 100%;
}

.hq-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.circle {
    width: 150px; 
    height: 150px; 
    border: 2px solid #000;
    border-radius: 50%;
    overflow: hidden; /* MEMOTONG GAMBAR JADI BULAT */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: all 0.3s ease;
}

.hq-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* AGAR GAMBAR KOTA TIDAK GEPENG */
}

.hq-item p {
    font-weight: bold;
    margin: 0;
    font-size: 1.1rem;
}

/* --- MESSAGE US --- */
.message-us {
    padding: 50px 10%; 
    background-color: #fff;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* Lebar label agar semua titik dua lurus vertikal */
.form-group label {
    width: 120px;
    font-size: 14px;
}

/* Jarak titik dua */
.form-group span {
    margin-right: 10px;
}

/* Styling Input Tanggal agar Ikon Kalender terlihat jelas */
input[type="date"] {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    cursor: pointer; /* Biar user tahu ini bisa diklik */
}

/* Memastikan ikon kalender bawaan browser muncul di sisi kanan */
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding: 5px;
    filter: invert(0); /* Memastikan ikon tidak hilang jika background gelap */
}

button {
    width: 100%;
    padding: 10px;
    background: #e0e0e0;
    cursor: pointer;
}

.result-box {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid #000;
    padding: 25px;
    min-height: 250px;
    box-sizing: border-box;
}

/* --- OUR TEAM --- */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    width: 200px;
}

.profile-img {
    width: 150px; 
    height: 150px;
    border-radius: 50%;
    object-fit: cover; 
    border: 2px solid #000;
    margin-bottom: 15px;
}

.company-image {
    width: 60%;
    max-width: 200px;
    height: auto;
    border-radius: 180px;
}

footer {
    text-align: right;
    padding: 20px 5%;
    font-size: 12px;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-group label {
    width: 120px; /* Kunci agar label sejajar vertikal */
}

.form-group span {
    margin-right: 10px; /* Jarak untuk titik dua (:) */
}

input[type="text"], input[type="date"], textarea {
    flex: 1; /* Input akan mengisi sisa ruang */
    padding: 8px;
    border: 1px solid #000;
}

/* --- RESPONSIVE FIX --- */
@media (max-width: 768px) {
    .content-wrapper, .hq-container {
        flex-direction: column;
        align-items: center;
    }
}

