.whychoose-list-item {
  margin-top: 18px !important;
  margin-bottom: 18px !important;
}

.banner-1 {
    width: 100%;
    min-height: 100vh;

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    position: relative;
}

.banner-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), transparent);
}

.banner-1 .container-fluid {
    position: relative;
    z-index: 2;
}

.product-img {
    width: 100%;
    height: 40vh;
    background: #f5f5f5;
}


.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    height: 100%;
}

.why-card img {
    width: 40px;
    margin-bottom: 15px;
}

.why-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: #777;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* icon checklist kiri */
.icon-box {
    width: 28px;
    height: 28px;
    background: #facc15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
}

.map-wrapper {
    position: relative;
}

.map-img {
    opacity: 0.35;
    filter: brightness(1.2);
}

/* PIN */
.pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background: red;
    border-radius: 50%;
    cursor: pointer;
}

/* PULSE EFFECT */
.pin::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid red;
    border-radius: 50%;
    top: -6px;
    left: -6px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* TOOLTIP */
.tooltip {
    position: absolute;
    top: -28px;
    left: -20px;
    background: #000;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    display: none;
    white-space: nowrap;
}

.pin:hover .tooltip {
    display: block;
}

/* LIST */
.footprint-list {
    margin: 0;
    padding: 0;
}

.footprint-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footprint-flag {
    display: block;
    width: 34px;
    height: 22px;
    border-radius: 6px;
    flex: 0 0 auto;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

/* Header desktop alignment */
.header .main-header {
    min-height: 80px;
}

.header .main-header .header-left {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 24px;
    flex-wrap: nowrap;
}

.header .main-header .header-left .header-logo {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    min-width: 0;
}

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

.header .main-header .header-left .header-logo a img {
    display: block;
    height: 56px;
    width: auto;
    max-width: none;
    min-height: 0;
}

.header .main-header .header-left .header-nav {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    padding-left: 0;
    margin-left: auto;
}

.header .nav-main-menu {
    display: flex;
    justify-content: flex-end;
}

.header .main-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    width: 100%;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.header .main-menu li {
    float: none;
    flex: 0 0 auto;
    padding-right: 0;
}

.header .main-menu li a {
    white-space: nowrap;
    padding: 28px 12px;
}

.header .main-header .header-left .header-right {
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
    margin-left: 16px;
}

@media (max-width: 1199.98px) {
    .header .main-header .header-left {
        gap: 16px;
    }

    .header .main-menu li a {
        padding: 28px 10px;
        font-size: 15px;
    }
}
