.text-red{
  color: var(--mitsubishi-red);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
/* BAGIAN NAVBAR */
.navbar-brand img {
    height: 60px;
    width: auto;  
    transition: 0.3s;
}

/* Custom Helpers */
.ls-2 { letter-spacing: 2px; }
.object-fit-cover { object-fit: cover; }

/* Carousel Custom Styling */
.carousel-container {
    scrollbar-width: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.carousel-container::-webkit-scrollbar { display: none; }

.carousel-card {
    width: 60%;
    min-width: 300px;
    max-width: 600px;
    transition: all 0.4s ease;
    opacity: 0.5;
    transform: scale(0.9);
}

.carousel-card.active {
    opacity: 1;
    transform: scale(1);
}

/* Sub-Tab Navigation Scrollable */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }

.spec-detail {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}
.spec-detail.active { display: block; }

.carousel-container {
    scroll-behavior: smooth;
    scrollbar-width: none; /* Sembunyikan scrollbar di Firefox */
    -ms-overflow-style: none; /* Sembunyikan scrollbar di IE/Edge */
}
.carousel-container::-webkit-scrollbar {
    display: none; /* Sembunyikan scrollbar di Chrome/Safari */
}
.carousel-card {
/* Mengatur agar card menempati lebar yang pas (contoh: 3 card di desktop, 1 di mobile) */
    width: calc(33.333% - 1.5rem); 
    min-width: 280px;
    flex: 0 0 25%; /* Agar tidak terlalu kecil di layar hp */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsiveness */
@media (max-width: 768px) {
    .carousel-card { width: 85%;  }
}

    .wa-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 9999;
    }

    .wa-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 22px rgba(0,0,0,0.4);
    }

    .wa-floating svg {
    width: 26px;
    height: 26px;
    }
