.navbar .logo img {
    width: 120px;
    height: auto; /* biar proporsional */
    display: block; /* rapikan perataan */
}

.navbar.navbar-scrolled {
    padding: 10px 0;
    /* Kita biarkan <nav> transparan, atau berikan background transparan tipis */
    background-color: rgba(255, 255, 255, 0.1); /* Transparan sangat tipis */
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-brown);
    font-size: 1.8rem;
}

.navbar-brand span {
    color: var(--secondary-brown);
}

.nav-link {
    color: var(--primary-brown);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-brown);
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover:before {
    visibility: visible;
    width: 100%;
}

.nav-link.active:before {
    visibility: visible;
    width: 100%;
}

.content-header {
    /* margin-top: 150px; */
    max-width: 100%;
    /* padding: 0px 93px; */
    width: 100%;
    margin-inline: auto;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navbar - Tetapkan sebagai dasar transparan */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar:not(.navbar-scrolled) {
    background-color: var(--white);
    box-shadow: var(--soft-shadow);
}

.navbar.navbar-scrolled {
    background-color: transparent;
    box-shadow: none;
    padding: 10px 0;
}

/* Container DEFAULT (Ketika Belum Discroll) */
.navbar .container {
    max-width: 100%;
    margin: 0;
    padding: 8px 24px;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}

/* Container SCROLLED (Ketika Sudah Discroll) */
.navbar-scrolled .container {
    max-width: 90%;
    margin: 10px auto 0 auto;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 30px;
    padding: 10px 20px;
}

.btn-book-call {
    background: var(--primary-brown);
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    align-items: center;
}

.btn-book-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Foto profil bulat */
.btn-book-call .person-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Warna teks nama & jabatan */
.btn-book-call .person-name,
.btn-book-call .person-role {
    color: #fff !important;
}

/* Kotak kecil "Book a Call" */
.btn-book-call .book-call-text {
    background: #fff;
    color: var(--primary-brown);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
    white-space: nowrap;
}
