@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");

:root {
    --dishub-blue: #0b3d91;
    --dishub-yellow: #f4c542;
    --primary-color: var(--dishub-blue);
    --secondary-color: var(--dishub-yellow);
    --text-dark: #0a0a0a;
    --text-light: #6b7280;
    --extra-light: #f9fafb;
    --white: #ffffff;
    --max-width: 1200px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    font-family: "DM Sans", sans-serif;
    background: var(--white);
    color: var(--text-dark);
    scroll-behavior: smooth;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    transition: 0.3s;
}
ul {
    list-style: none;
}

/* SECTION */
.section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}
.section__header {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.section__description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* BUTTON */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}
.btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.btn i {
    font-size: 1.2rem;
}

/* NAVBAR */
.nav__container {
    max-width: var(--max-width);
    margin: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0;
    height: 70px;
    display: flex;
    align-items: center;
}
.nav__logo .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav__links {
    display: flex;
    gap: 2rem;
}
.nav__links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}
.nav__links a:hover {
    color: var(--dishub-blue);
    transform: scale(1.05);
}
.nav__menu__btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* HEADER */
header {
    margin-top: 3rem;
    background: linear-gradient(120deg, #eef4ff, #ffffff);
    padding: 4rem 1rem;
}
.header__container {
    max-width: var(--max-width);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.header__content {
    flex: 1;
}
.header__content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.header__content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.header__image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.header__image img {
    max-width: 500px;
}

/* SCAN QR CARD */
.showcase__card {
    background: var(--primary-color);
    border-radius: 1.2rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 16px rgba(11, 61, 145, 0.2);
    transition: all 0.4s ease;
    color: var(--white);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.showcase__card:hover {
    background: #062c6f; /* Biru lebih gelap untuk hover */
    box-shadow: 0 10px 28px rgba(6, 44, 111, 0.35);
    transform: translateY(-6px) scale(1.03);
}
.showcase__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1); /* Highlight putih tipis */
    transform: skewX(-45deg);
    transition: left 0.4s ease;
}
.showcase__card:hover::before {
    left: 100%;
}
.showcase__card h2,
.showcase__card p {
    color: var(--white);
}

/* Tombol di dalam Scan QR Card */
.showcase__card .scan-btn {
    margin-top: 2rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}
.showcase__card .scan-btn:hover {
    background: var(--secondary-color); /* Warna kuning saat hover */
    color: var(--primary-color); /* Tulisan biru */
    box-shadow: 0 4px 14px rgba(244, 197, 66, 0.3); /* Efek bayangan */
}

/* CARD STYLE (Tentang, Fitur, Banner) */
.destination__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(
        135deg,
        var(--primary-color) 80%,
        var(--secondary-color) 100%
    );
    border-radius: 1.2rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 16px rgba(11, 61, 145, 0.2);
    transition: all 0.4s ease;
    color: var(--white);
    cursor: pointer;
}
.destination__card:hover {
    background: linear-gradient(
        135deg,
        #062c6f 80%,
        var(--secondary-color) 100%
    );
    box-shadow: 0 10px 28px rgba(6, 44, 111, 0.35),
        0 6px 20px rgba(244, 197, 66, 0.2);
    transform: translateY(-6px) scale(1.03);
}

/* Ikon di atas card */
.destination__card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 2.5rem; /* Perbesar ukuran ikon */
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 1rem; /* Jarak antara ikon dan teks */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.destination__card span:hover {
    transform: scale(1.1); /* Perbesar ikon saat di-hover */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Detail card */
.destination__card__details h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.destination__card__details p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
}

/* CARD ICON STYLE (Tentang, Fitur, Banner) */
.destination__card span,
.journey__card span,
.banner__card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(
        --secondary-color
    ); /* Warna kuning sebagai latar belakang ikon */
    color: var(--primary-color); /* Warna biru untuk ikon */
    font-size: 2rem; /* Perbesar ukuran ikon */
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Membuat ikon berbentuk lingkaran */
    margin-bottom: 1rem; /* Tambahkan jarak di bawah ikon */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Tambahkan efek bayangan */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.destination__card span:hover,
.journey__card span:hover,
.banner__card span:hover {
    transform: scale(1.1); /* Perbesar ikon saat di-hover */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2); /* Tambahkan bayangan saat hover */
}

/* NAVBAR SCROLL */
nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* GRID LAYOUTS */
.destination__grid,
.journey__grid,
.banner__container {
    display: grid;
    gap: 2rem;
}
.destination__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.journey__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.banner__container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* FOOTER */
footer {
    background: var(--primary-color);
    color: var(--white);
}

.footer__container {
    max-width: var(--max-width);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.footer__logo .logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer__col h4 {
    margin-bottom: 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.footer__links li {
    margin-bottom: 0.6rem;
}

.footer__links a {
    color: var(--white);
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer__links a:hover {
    color: var(--secondary-color);
    padding-left: 4px;
}

/* social icons */
.footer__socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.footer__socials a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.4s ease, transform 0.4s ease;
}
.footer__socials a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

/* form pertanyaan */
.footer__col form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer__col input {
    padding: 0.8rem 1rem;
    border-radius: 0.7rem;
    border: none;
    outline: none;
    font-size: 0.95rem;
}
.footer__col input:focus {
    box-shadow: 0 0 0 3px rgba(244, 197, 66, 0.5);
}
.footer__col button {
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 0.7rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}
.footer__col button:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* tagline */
.footer__tagline {
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

/* footer bar */
.footer__bar {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}
.footer__bar a {
    color: var(--secondary-color);
    font-weight: 600;
}

/* INSTALL APP SECTION */
.install__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: var(--extra-light);
    padding: 2rem;
    border-radius: 1.2rem;
    margin: 2rem auto;
    max-width: var(--max-width);
    box-shadow: 0 6px 16px rgb(0, 0, 0, 0.2);
}

.install__content h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.install__content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.install__action .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    border: none;
    color: var(--dishub-blue);
    background: var(--dishub-yellow);
    box-shadow: 0 3px 8px var(--dishub-yellow);
    animation: pulse 1.5s infinite ease-in-out;
}

.install__action .btn:hover {
    background: var(--dishub-blue);
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 18px var(--dishub-blue);
    cursor: pointer;
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .install__container {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
        padding: 1.5rem;
    }

    .install__content h2 {
        font-size: 1.3rem;
    }

    .install__content p {
        font-size: 0.95rem;
    }

    .install__action {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .install__action .btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .install__container {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .install__content h2 {
        font-size: 1.1rem;
    }

    .install__content p {
        font-size: 0.9rem;
    }

    .install__action .btn {
        font-size: 0.9rem;
        padding: 0.7rem;
        width: 80%;
    }
} /* Section Scan Result */
#scan-result {
    text-align: center;
    margin-bottom: 3rem;
}

#scan-result h2 {
    font-size: 1.8rem;
    color: #0b3d91;
    font-weight: 700;
    margin-bottom: 5px;
}

#scan-result h4 {
    font-weight: 500;
    color: #7f8c8d;
    margin-bottom: 1.8rem;
}

/* Card Kendaraan */
.kendaraan-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    padding: 2.2rem;
    margin: 1.5rem auto;
    max-width: 100%;
    width: 100%;
}

.kendaraan-card h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0b3d91;
    margin-bottom: 1.4rem;
    letter-spacing: 1px;
    text-align: center;
}

/* Body: foto + detail */
.kendaraan-body {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
}

.kendaraan-foto {
    flex: 0 0 auto; /* foto fix ukurannya */
}

.kendaraan-foto img {
    width: 220px;
    height: 160px;
    object-fit: contain; /* biar gambar full kelihatan */
    border-radius: 14px;
    border: 2px solid #e6e9ef;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Kendaraan Info 2 Kolom */
.kendaraan-info-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    margin-top: 0.5rem;
    width: 100%;
    max-width: 500px;
    flex: 1; /* info bisa melebar */
}

.kendaraan-info-2col .row {
    display: grid;
    grid-template-columns: minmax(220px, 160px) 1fr;
    align-items: center;
    background: #f4f7fb;
    border-radius: 8px;
    margin: 0.3rem 0;
    padding: 0.6rem 0.9rem;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.kendaraan-info-2col .row:hover {
    background: #eaf1fa;
}

.kendaraan-info-2col .label {
    color: #0b3d91;
    font-weight: 600;
    text-align: left;
}

.kendaraan-info-2col span:not(.label) {
    color: #2c3e50;
    font-weight: 500;
    text-align: left;
}

/* Button */
#scan-result .btn {
    display: inline-block;
    margin: 2rem 0;
    padding: 0.75rem 1.8rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #0b3d91, #1a73e8);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(11, 61, 145, 0.3);
}

#scan-result .btn:hover {
    background: linear-gradient(135deg, #093170, #1558c0);
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(11, 61, 145, 0.4);
}

/* ====================== */
/*  TABEL RIWAYAT         */
/* ====================== */

.riwayat-container {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f9fbff;
    border-radius: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.riwayat-title {
    color: #0a2e75;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.riwayat-table-wrapper {
    overflow-x: auto;
}

.riwayat-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 0.8rem;
    font-size: 0.95rem;
}

.riwayat-table thead {
    background-color: #0a2e75;
    border: 1px solid #062c6f;
    color: #fff;
}

.riwayat-table th,
.riwayat-table td {
    padding: 10px 14px;
    text-align: center;
    border-bottom: 1px solid #e6e9f0;
}

.riwayat-table tbody tr:nth-child(even) {
    background-color: #f3f6fb;
}

.riwayat-table tbody tr:hover {
    background-color: #eaf0ff;
    transition: 0.2s;
}

/* Tombol lihat selengkapnya */
.riwayat-button-wrapper {
    text-align: center;
    margin-top: 1rem;
}

.lihat-btn {
    background-color: #0a2e75;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.3s;
}

.lihat-btn:hover {
    background-color: #0c3b99;
}

/* Hidden row class (untuk JS toggle) */
.d-none {
    display: none !important;
}

/* Responsive Tablet */
@media (max-width: 700px) {
    .kendaraan-info-2col {
        grid-template-columns: 1fr;
    }
    .kendaraan-info-2col .row {
        grid-template-columns: 1fr;
    }
    .kendaraan-body {
        flex-direction: column;
        align-items: center;
    }
    .kendaraan-card h1 {
        font-size: 2rem;
    }
}

/* Responsive: HP */
@media (max-width: 600px) {
    .kendaraan-body {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .kendaraan-foto img {
        max-width: 180px;
        height: auto;
        margin-bottom: 1rem;
    }
    .kendaraan-card h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
}

/* Responsive: Laptop Lebar */
@media (min-width: 1024px) {
    .kendaraan-body {
        justify-content: flex-start;
        gap: 3rem;
    }
    .kendaraan-card {
        padding: 3rem;
    }
}

/* RESPONSIVE FIX */
@media (max-width: 992px) {
    .nav__btns {
        display: none;
    }
    .nav__btns-mobile {
        display: block;
        width: 100%;
        text-align: left;
        margin-top: 1rem;
        padding-left: 2rem;
    }
    .nav__btns-mobile .btn {
        text-decoration: none; /* Hilangkan garis bawah */
        width: 90%; /* Lebar tombol di layar kecil */
        margin: 1rem auto; /* Tambahkan margin atas dan bawah */
        text-align: center;
        padding: 0.75rem 1.5rem;
        border-radius: 2rem;
        background: var(--primary-color); /* Warna biru */
        color: var(--white); /* Warna putih untuk teks */
        font-weight: 600;
        font-size: 1rem;
        transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }

    .nav__btns-mobile .btn:hover {
        background: var(--secondary-color); /* Warna kuning saat hover */
        color: var(--primary-color); /* Warna biru untuk teks */
        transform: translateY(-3px); /* Efek naik saat hover */
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15); /* Tambahkan bayangan */
        text-decoration: none; /* Pastikan garis bawah tetap hilang saat hover */
    }
    .nav__menu__btn {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 2rem;
        z-index: 1001;
    }
    .nav__links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        display: none;
        z-index: 999;
    }
    .nav__links.open {
        display: flex;
    }
    .nav__links li {
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: left;
    }
    .nav__links a {
        padding: 1rem 2rem;
        display: block;
    }
}
@media (min-width: 993px) {
    .nav__btns-mobile {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .section__container {
        padding: 3rem 0.5rem;
    }
    .section__header {
        font-size: 1.5rem;
    }
    .header__container {
        flex-direction: column;
        gap: 1.5rem;
        min-height: unset;
        padding: 0;
    }
    .header__content {
        max-width: 100%;
        padding: 2rem 1rem;
        border-radius: 1rem;
        margin: 0;
        align-items: center;
        text-align: center;
    }
    .header__content h1,
    .header__content p {
        text-align: center;
    }
    .header__btns {
        justify-content: center;
    }
    .header__image {
        max-width: 300px;
        margin: 0 auto;
    }
    .header__image img {
        max-width: 250px;
    }
    .showcase__card,
    .destination__card,
    .journey__card,
    .banner__card {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    .destination__grid,
    .journey__grid,
    .banner__container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .footer__container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 2rem 0.5rem;
        text-align: center;
    }
    .footer__logo .logo {
        font-size: 1.1rem;
    }
    .footer__col h4 {
        font-size: 1rem;
    }
    .footer__links a {
        font-size: 0.9rem;
    }
    .footer__bar {
        font-size: 0.85rem;
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.7rem 1rem;
    }
    .nav__menu__btn {
        top: 1rem;
        right: 1rem;
        font-size: 1.3rem;
    }
    .nav__links a {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    .btn,
    .nav__btns-mobile .btn {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
        border-radius: 1.2rem;
    }
    .header__content {
        padding: 1.2rem 0.5rem;
    }
    .header__image img {
        max-width: 180px;
    }
    .showcase__card,
    .destination__card,
    .journey__card,
    .banner__card {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    .footer__container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.2rem 0.5rem;
        text-align: center;
    }
    .footer__logo .logo {
        font-size: 1rem;
        justify-content: center;
        margin-bottom: 0.7rem;
    }
    .footer__col {
        margin-bottom: 1.2rem;
        padding: 0 0.5rem;
    }
    .footer__col h4 {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
    }
    .footer__links {
        padding: 0;
        margin: 0 auto;
    }
    .footer__links a {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        display: block;
        text-align: center;
    }
    .footer__socials {
        justify-content: center;
        gap: 0.7rem;
        margin-top: 1rem;
    }
    .footer__socials a {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    .footer__col form {
        gap: 0.5rem;
        align-items: center;
    }
    .footer__col input {
        font-size: 0.85rem;
        padding: 0.6rem 0.7rem;
        width: 90%;
        margin: 0 auto;
    }
    .footer__col button {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        width: 90%;
        margin: 0 auto;
    }
    .footer__tagline {
        font-size: 0.8rem;
        margin-top: 0.3rem;
    }
    .footer__bar {
        font-size: 0.8rem;
        padding: 0.5rem;
        text-align: center;
    }
}

/* Pastikan grid dan flex tetap responsif */
@media (max-width: 1200px) {
    .section__container {
        max-width: 98vw;
    }
    .header__container {
        max-width: 98vw;
    }
    .footer__container {
        max-width: 98vw;
    }
}

/* JOURNEY (Fitur Utama) */
.journey__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(
        135deg,
        var(--primary-color) 80%,
        var(--secondary-color) 100%
    );
    border-radius: 1.2rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 16px rgba(11, 61, 145, 0.2);
    transition: all 0.4s ease;
    color: var(--white);
    cursor: pointer;
}

.journey__card:hover {
    background: linear-gradient(
        135deg,
        #062c6f 80%,
        /* Biru lebih gelap */ var(--secondary-color) 100%
    );
    box-shadow: 0 10px 28px rgba(6, 44, 111, 0.35),
        0 6px 20px rgba(244, 197, 66, 0.2);
    transform: translateY(-6px) scale(1.03);
}

/* Ikon di atas card */
.journey__card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 2.5rem; /* Perbesar ukuran ikon */
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 1rem; /* Jarak antara ikon dan teks */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey__card span:hover {
    transform: scale(1.1); /* Perbesar ikon saat di-hover */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Detail card */
.journey__card__content h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.journey__card__content p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
}

/* BANNER */
.banner__container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.banner__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(
        135deg,
        var(--primary-color) 80%,
        var(--secondary-color) 100%
    );
    border-radius: 1.2rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 16px rgba(11, 61, 145, 0.2);
    transition: all 0.4s ease;
    color: var(--white);
    cursor: pointer;
}

.banner__card:hover {
    background: linear-gradient(
        135deg,
        #062c6f 80%,
        /* Biru lebih gelap */ var(--secondary-color) 100%
    );
    box-shadow: 0 10px 28px rgba(6, 44, 111, 0.35),
        0 6px 20px rgba(244, 197, 66, 0.2);
    transform: translateY(-6px) scale(1.03);
}

/* Responsive: Hilangkan garis bawah pada tombol Login di HP */
@media (max-width: 768px) {
    .nav__btns-mobile .btn {
        text-decoration: none; /* Hilangkan garis bawah */
        width: 90%; /* Lebar tombol di layar kecil */
        margin: 1rem auto; /* Tambahkan margin atas dan bawah */
        text-align: center;
        padding: 0.75rem 1.5rem;
        border-radius: 2rem;
        background: var(--primary-color); /* Warna biru */
        color: var(--white); /* Warna putih untuk teks */
        font-weight: 600;
        font-size: 1rem;
        transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }

    .nav__btns-mobile .btn:hover {
        background: var(--secondary-color); /* Warna kuning saat hover */
        color: var(--primary-color); /* Warna biru untuk teks */
        transform: translateY(-3px); /* Efek naik saat hover */
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15); /* Tambahkan bayangan */
        text-decoration: none; /* Pastikan garis bawah tetap hilang saat hover */
    }

    .nav__btns-mobile a {
        text-decoration: none; /* Hilangkan garis bawah pada elemen <a> */
    }
}

/* Tambahkan di style.css jika ingin grid responsif satu kolom di HP */
@media (max-width: 600px) {
    .kendaraan-card {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }
    .kendaraan-foto img {
        max-width: 180px;
        margin-bottom: 1rem;
    }
    .kendaraan-detail h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    .kendaraan-info {
        grid-template-columns: 1fr;
    }
}
