.elementor-7543 .elementor-element.elementor-element-5262f1c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-dff798f *//* --- CSS FINAL CALIBRATED --- */

/* 1. Reset Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* 2. Navbar (Kunci utama rata tengah) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Meratakan semua elemen ke tengah secara vertikal */
    padding: 0 5%;
    background-color: #fff;
    height: 80px; /* Gunakan height tetap agar stabil */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px; /* Sesuaikan ukuran logo */
    width: auto;
}

/* 3. Navigasi */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    height: 100%;
}

.nav-links li {
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center; /* Memastikan teks menu selalu di tengah baris */
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center; /* Meratakan teks dan icon panah */
    transition: 0.3s;
}

/* 4. Icon Panah (Dibuat sejajar teks) */
.arrow {
    display: inline-block;
    margin-left: 6px;
    font-size: 10px;
    line-height: 1; /* Menghapus sisa ruang bawah pada icon */
}

/* 5. Tombol Test Drive (Rata Tengah Sempurna) */
.cta-button {
    background-color: #E30613;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    
    /* Gunakan Flexbox untuk perataan teks dalam tombol */
    display: flex !important;
    align-items: center;
    justify-content: center;
    
    height: 42px; /* Tinggi tombol */
    padding: 0 25px;
    border: none;
    line-height: 1; /* Reset line height */
    transition: 0.3s;
}

/* 6. Dropdown Menu (Desktop) */
.has-dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    list-style: none;
    display: none;
    border-radius: 0 0 4px 4px;
    padding: 10px 0;
}

.has-dropdown:hover .dropdown-menu { display: block; }
.has-dropdown:hover .arrow { transform: rotate(180deg); color: #E30613; }

/* 7. Mobile View */
@media screen and (max-width: 992px) {
    /* MEMUNCULKAN KEMBALI TOMBOL MENU */
    .menu-toggle {
        display: flex !important; /* Paksa muncul di mobile */
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 18px;
        z-index: 10001; /* Pastikan berada di atas elemen lain */
    }

    /* Mengatur garis hamburger agar terlihat */
    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #333; /* Pastikan warna kontras dengan background putih */
        border-radius: 5px;
    }
}/* End custom CSS */