/* ==========================================================================
   DAFTAR ISI (TABLE OF CONTENTS)
   ==========================================================================
   1.  GOOGLE FONTS & VARIABLES ... (Pengaturan Warna & Font)
   2.  BASE STYLES & RESET ........ (Reset bawaan browser)
   3.  UTILITY CLASSES ............ (Container, Section, Grid)
   4.  BUTTONS .................... (Gaya Tombol Primary, Link, dll)
   5.  HEADER & NAVBAR ............ (Menu Navigasi & Dropdown)
   6.  HOME / HERO SECTION ........ (Slider Utama & Gambar Background)
   7.  SECTION: MITRA ............. (Running Logo)
   8.  SECTION: COMPANY PROFILE ... (Tentang Kami)
   9.  SECTION: KEUNGGULAN ........ (Why Us)
   10. SLIDER SYSTEMS ............. (Logika Slider Generic & Marquee)
   11. SECTION: GALERI ............ (Aktivitas)
   12. SECTION: TESTIMONI ......... (Ulasan)
   13. SECTION: PARTS ............. (Produk Unggulan)
   14. SECTION: LOCATION & BRANCH . (Peta & Cabang)
   15. HALAMAN LAIN ............... (About, Contact, Event, Service)
   16. FOOTER ..................... (Bagian Bawah)
   17. ANIMATIONS & SCROLL ........ (Keyframes & Scroll Up Button)
   ========================================================================== */

/* ==========================================================================
   1. GOOGLE FONTS & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --header-height: 4rem;

    /* --- PALET WARNA --- */
    --navy-color: #00032B;
    --gold-color: #DFC1A5;
    --beige-color: #EADBC8;
    --cream-color: #FEFAF6;
    --white-color: #FFFFFF;
    --text-color: #333;
    --text-color-light: #666;

    --body-color: var(--cream-color);
    --container-color: var(--white-color);

    /* --- FONT --- */
    --body-font: 'Poppins', sans-serif;
    --title-font: 'Montserrat', sans-serif;

    /* --- UKURAN FONT (MOBILE DEFAULT) --- */
    --biggest-font-size: 2.5rem;
    --h1-font-size: 1.75rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /* --- KETEBALAN FONT --- */
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* --- MARGIN & SPACING --- */
    --mb-0-25: .25rem;
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;

    /* --- Z-INDEX --- */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

/* Override Ukuran Font untuk Desktop */
@media screen and (min-width: 992px) {
    :root {
        --biggest-font-size: 4rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

/* ==========================================================================
   2. BASE STYLES & RESET
   ========================================================================== */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    transition: background .4s;
}

h1,
h2,
h3,
h4 {
    color: var(--navy-color);
    font-family: var(--title-font);
    font-weight: var(--font-semibold);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

/* ==========================================================================
   3. UTILITY CLASSES
   ========================================================================== */
.section {
    padding: 4.5rem 0 2.5rem;
}

.section__title,
.section__title-center {
    font-size: var(--h1-font-size);
    color: var(--navy-color);
    margin-bottom: var(--mb-2);
}

.section__title-center {
    text-align: center;
}

.section__subtitle {
    display: block;
    font-size: var(--h3-font-size);
    color: var(--gold-color);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    margin-bottom: var(--mb-0-5);
}

.container {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--mb-1-5);
    padding-right: var(--mb-1-5);
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.main {
    overflow-x: hidden;
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.button {
    display: inline-block;
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    font-weight: var(--font-medium);
    transition: all .3s ease;
    text-align: center;
}

.button i {
    vertical-align: middle;
    margin-left: var(--mb-0-25);
}

/* Primary (Gold) */
.button--primary {
    background-color: var(--gold-color);
    color: var(--navy-color);
}

.button--primary:hover {
    background-color: #c9a784;
}

/* Secondary (Navy) */
.button--secondary {
    background-color: var(--navy-color);
    color: var(--cream-color);
}

.button--secondary:hover {
    background-color: #00021a;
}

/* Link Style */
.button--link {
    color: var(--navy-color);
    font-weight: var(--font-semibold);
}

.button--link i {
    transition: transform .3s ease;
    vertical-align: middle;
}

.button--link:hover i {
    transform: translateX(.25rem);
}

/* ==========================================================================
   5. HEADER & NAVBAR
   ========================================================================== */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: transparent;
    transition: all .4s ease;
}

/* --- SCROLLED STATE --- */
.header-scrolled {
    background-color: rgba(0, 3, 43, 0.8);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-scrolled .nav {
    min-height: 3.5rem;
    height: auto;
}

.header-scrolled .nav__logo,
.header-scrolled .nav__toggle {
    color: var(--white-color);
}

.header-scrolled .nav__link:hover,
.header-scrolled .nav__link.active-link {
    color: var(--gold-color);
}

.header-scrolled .nav__dropdown-icon {
    color: var(--white-color) !important;
}

.header-scrolled .nav__dropdown-menu {
    border-top: none;
    background-color: rgba(255, 255, 255, 0.05);
}

.header-scrolled>.nav__list>.nav__item>.nav__link {
    color: var(--white-color) !important;
}

.header-scrolled .nav__dropdown-menu .nav__dropdown-item .nav__link {
    /* Teks Navy agar kontras dengan Background Putih */
    color: var(--navy-color) !important;
}

/* 3. Atur hover item di dropdown saat di-scroll */
.header-scrolled .nav__dropdown-menu .nav__dropdown-item .nav__link:hover {
    color: var(--gold-color) !important;
    /* Teks tetap Gold saat hover */
    background-color: var(--light-color);
    /* Background hover abu-abu muda */
}

/* --- NAV STRUCTURE --- */
.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: var(--font-semibold);
    color: var(--white-color);
    transition: color .4s;
}

.nav__logo-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.nav__toggle,
.nav__close {
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--white-color);
    transition: color .4s;
}

.nav__toggle {
    display: inline-flex;
}

.nav__close {
    display: none;
}

/* --- NAV MENU MOBILE (< 768px) --- */
@media screen and (max-width: 767px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100hv;
        background-color: var(--navy-color);
        padding: 6rem 2rem 4rem;
        transition: right .4s ease;
        overflow-y: auto;
    }

    .show-menu {
        right: 0;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        width: 100%;
    }

    .nav__item {
        width: 100%;
        text-align: center;
    }

    .nav__link {
        font-size: var(--h2-font-size);
        color: var(--white-color);
        font-weight: var(--font-semibold);
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .nav__link.active-link {
        color: var(--gold-color);
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        color: var(--white-color);
        font-size: 2rem;
    }

    /* Mobile Dropdown */
    .nav__dropdown-menu {
        position: static;
        width: 100%;
        padding: 0;
        box-shadow: none;
        border: none;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 0.5rem;

        /* START: Sembunyikan Default */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin-top: 0;
        /* Animasi buka tutup */
        transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    }

    .nav__dropdown.active-dropdown .nav__dropdown-menu {
        max-height: 500px;
        /* Cukup besar untuk menampung isi */
        opacity: 1;
        margin-top: 1rem;
        padding-bottom: 0.5rem;
    }

    .nav__dropdown-item {
        width: 100%;
    }

    .nav__dropdown-item .nav__link {
        color: var(--white-color);
        font-size: var(--normal-font-size);
        padding: 0.8rem 0;
        padding-left: 0;
        justify-content: center;
    }

    .nav__dropdown-item .nav__link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--gold-color);
    }
}

/* --- NAV MENU DESKTOP (>= 768px) --- */
@media screen and (min-width: 768px) {

    .nav__toggle,
    .nav__close {
        display: none;
    }

    .nav__list {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
    }

    .nav__link {
        font-size: var(--normal-font-size);
        color: var(--white-color);
        font-weight: var(--font-medium);
        transition: color .3s;
        position: relative;
    }

    .nav__link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--gold-color);
        transition: width .3s ease;
    }

    .nav__link:hover,
    .nav__link.active-link {
        color: var(--gold-color);
    }

    .nav__link:hover::after,
    .nav__link.active-link::after {
        width: 100%;
    }

    /* Desktop Dropdown */
    .nav__dropdown {
        position: relative;
    }

    .nav__dropdown-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .nav__dropdown-icon {
        font-size: 1.1rem;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .nav__dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 101;

        background-color: var(--navy-color);
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);

        box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.4);
        border-radius: 1rem;
        padding: 0.5rem;
        min-width: 12rem;

        opacity: 0;
        visibility: hidden;
        transform: translateY(10px) scale(0.98);
        transform-origin: top left;
        transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .nav__dropdown-item .nav__link {
        padding: 0.5rem 1rem;
        color: var(--white-color);
        display: block;
        font-size: var(--normal-font-size);
    }

    .nav__dropdown-item .nav__link::after {
        display: none;
    }

    .nav__dropdown-item .nav__link:hover {
        background-color: var(--beige-color);
        color: var(--navy-color);
    }

    /* Aturan KHUSUS untuk item DI DALAM Dropdown saja */

    .nav__dropdown-item .nav__link {
        /* Paksa warna teks jadi putih/terang agar terlihat di background glass gelap */
        color: var(--beige-color) !important;

        /* Opsional: Efek hover khusus dropdown */
        transition: all 0.3s ease;
    }

    /* Saat item dropdown disorot */
    .nav__dropdown-item .nav__link:hover {
        color: var(--gold-color) !important;
        background-color: rgba(255, 255, 255, 0.1);
        /* Background tipis saat hover */
    }

    /* Hover Actions */
    .nav__dropdown:hover>.nav__dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav__dropdown:hover>.nav__dropdown-link .nav__dropdown-icon {
        transform: rotate(180deg);
    }
}

/* ==========================================================================
   6. HOME / HERO SECTION
   ========================================================================== */
.home {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 1024px) {
    .home {
        min-height: 700px;
    }
}

.hero-slider {
    width: 100%;
    height: 100%;
}

/* --- PENGATURAN GAMBAR & BACKGROUND --- */
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;

    /* Mode Tampilan Gambar (Gunakan 'contain' untuk full image, 'cover' untuk full screen) */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--navy-color);
    /* Fill warna kosong */

    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

/* Overlay Gradasi */
.hero-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 3, 43, 0.8), transparent);
}

@media screen and (max-width: 767px) {
    .hero__data {
        transform: translateY(-100px);
    }
}

/* --- GAMBAR RESPONSIVE (GANTI GAMBAR DISINI) --- */

/* 1. Mobile (Default) */
.hero-slide:nth-child(1) {
    background-image: url('img/hero_section_mobile/1.png');
}

.hero-slide:nth-child(2) {
    background-image: url('img/hero_section_mobile/2.png');
}

.hero-slide:nth-child(3) {
    background-image: url('img/hero_section_mobile/3.png');
}

.hero-slide:nth-child(4) {
    background-image: url('img/hero_section_mobile/4.png');
}

/* 2. Tablet (>= 768px) */
@media screen and (min-width: 768px) {
    .hero-slide:nth-child(1) {
        background-image: url('img/hero_section_tablet/1.png');
    }

    .hero-slide:nth-child(2) {
        background-image: url('img/hero_section_tablet/2.png');
    }

    .hero-slide:nth-child(3) {
        background-image: url('img/hero_section_tablet/3.png');
    }

    .hero-slide:nth-child(4) {
        background-image: url('img/hero_section_tablet/4.png');
    }
}

/* 3. Desktop (>= 1200px) */
@media screen and (min-width: 1200px) {
    .hero-slide:nth-child(1) {
        background-image: url('img/section_carousel/1.png');
    }

    .hero-slide:nth-child(2) {
        background-image: url('img/section_carousel/2.png');
    }

    .hero-slide:nth-child(3) {
        background-image: url('img/section_carousel/3.png');
    }

    .hero-slide:nth-child(4) {
        background-image: url('img/section_carousel/4.png');
    }
}

/* --- HERO CONTENT & NAV --- */
.hero__container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

@media screen and (min-width: 1024px) {
    .hero__container {
        padding-left: 2rem;
    }
}

.hero__data {
    max-width: 500px;
}

.hero__title {
    font-size: var(--biggest-font-size);
    color: var(--white-color);
    margin-bottom: var(--mb-1-5);
    line-height: 1.2;
}

.hero-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: .75rem;
}

.hero-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color .3s;
}

.hero-nav-dot.active {
    background-color: var(--gold-color);
}

/* ==========================================================================
   7. SECTION: MITRA (RUNNING LOGO)
   ========================================================================== */
.mitra {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: var(--container-color);
    border-top: 1px solid var(--beige-color);
    border-bottom: 1px solid var(--beige-color);
}

.mitra__container {
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.mitra__slider {
    display: flex;
    width: max-content;
    /* Animasi didefinisikan di bagian bawah file */
    animation: mitra-scroll 30s linear infinite;
}

.mitra__slider img {
    height: 40px;
    margin: 0 2rem;
    opacity: 0.7;
    transition: filter .3s, opacity .3s;
}

.mitra__slider img:hover {
    opacity: 1;
}

/* ==========================================================================
   8. SECTION: COMPANY PROFILE (TENTANG KAMI)
   ========================================================================== */
.profile__container {
    align-items: center;
}

@media screen and (min-width: 768px) {
    .profile__container {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
}

.profile__description {
    position: relative;
    margin-bottom: var(--mb-1);
    text-align: justify;
}

/* Logic Toggle Read More */
.profile__desc-full {
    display: none;
}

.profile__description.expanded .profile__desc-short {
    display: none;
}

.profile__description.expanded .profile__desc-full {
    display: block;
}

.profile__image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.profile__image {
    transition: transform .4s ease;
    width: 100%;
}

.profile__image-wrapper:hover .profile__image {
    transform: scale(1.05);
}

/* ==========================================================================
   9. SECTION: KEUNGGULAN (WHY US)
   ========================================================================== */
.unggulan {
    background-color: var(--container-color);
}

.unggulan__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media screen and (min-width: 768px) {
    .unggulan__container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.unggulan__card {
    background-color: var(--body-color);
    padding: 1.5rem;
    border-radius: .5rem;
    border: 1px solid var(--beige-color);
    text-align: center;
    transition: transform .3s ease;
}

.unggulan__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(0, 0, 0, 0.10);
}

.unggulan__icon {
    font-size: 4rem;
    color: var(--gold-color);
    margin-bottom: var(--mb-0-75);
}

.unggulan__title {
    font-size: var(--h3-font-size);
    color: var(--navy-color);
    margin-bottom: var(--mb-0-25);
}

.unggulan__description {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

/* ==========================================================================
   10. SLIDER SYSTEMS (GENERIC & MARQUEE)
   ========================================================================== */

/* --- BASE SLIDER CONTAINER --- */
.slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* Track Utama */
.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* Diperhalus sesuai request */
    will-change: transform;
}

.slider-slide {
    flex: 0 0 100%;
    padding: 0 .5rem;
}

/* Tombol Navigasi */
.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background-color: rgba(0, 3, 43, 0.5);
    color: var(--white-color);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color .3s;
}

.slider-button:hover {
    background-color: var(--navy-color);
}

.slider-button.prev {
    left: 1rem;
}

.slider-button.next {
    right: 1rem;
}

/* --- MARQUEE MODIFIER (Running Image: Galeri & Parts) --- */
/* Class ini ditambahkan via HTML jika ingin slider berjalan otomatis */
.marquee-track {
    width: max-content;
    animation: mitra-scroll 60s linear infinite;
    transition: none !important;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track .slider-slide {
    flex: 0 0 auto !important;
    padding: 0 .5rem;
    cursor: default;
}

/* ==========================================================================
   11. SECTION: GALERI
   ========================================================================== */
.galeri {
    padding-bottom: 0;
}

.tag-break {
    display: block;
}

/* Container Utama */
#gallery-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    /* Efek pudar kiri-kanan */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Track Animasi */
#galeri-track {
    display: flex;
    width: max-content;
    /* Agar track memanjang sesuai isi */
    animation: mitra-scroll 40s linear infinite;
    will-change: transform;
    transition: none;
}

/* 🚨 KUNCI PERBAIKAN DI SINI 🚨 */
#galeri-track .slider-slide {
    /* Kita gunakan !important untuk mengalahkan aturan slider generic */
    flex: 0 0 auto !important;
    width: 240px !important;
    /* Paksa lebar tetap 240px */
    max-width: 240px !important;
    padding: 0 .5rem;
    cursor: default;
}

.galeri img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: .5rem;
    display: block;
    /* Menghilangkan celah bawah gambar */
}

/* --- RESPONSIVE TABLET (>= 768px) --- */
@media (min-width: 768px) {
    #galeri-track .slider-slide {
        width: 280px !important;
        /* Lebar sedikit naik */
        max-width: 280px !important;
    }

    .galeri img {
        height: 250px;
    }

    .tag-break {
        display: block;
    }
}

/* --- RESPONSIVE DESKTOP (>= 992px) --- */
@media (min-width: 992px) {
    #galeri-track .slider-slide {
        width: 320px !important;
        /* Lebar maksimal desktop */
        max-width: 320px !important;
    }

    .galeri img {
        height: 350px;
    }

    .tag-break {
        display: none;
    }
}

/* ==========================================================================
   12. SECTION: TESTIMONI
   ========================================================================== */
.testimoni {
    background-color: var(--container-color);
}

.testimoni__card {
    background-color: var(--body-color);
    padding: 1.5rem;
    border-radius: .5rem;
    border: 1px solid var(--beige-color);
    min-height: 180px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimoni__header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: var(--mb-1);
}

.testimoni__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimoni__name {
    font-size: var(--normal-font-size);
    font-weight: var(--font-semibold);
    color: var(--navy-color);
}

.testimoni__rating {
    color: var(--gold-color);
}

.testimoni__comment {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    font-style: italic;
}

/* Jumlah Slide Testimoni */
#testimoni-track .slider-slide {
    flex-basis: 100%;
}

@media (min-width: 768px) {
    #testimoni-track .slider-slide {
        flex-basis: 50%;
    }
}

@media (min-width: 992px) {
    #testimoni-track .slider-slide {
        flex-basis: 33.33%;
    }
}

/* ==========================================================================
   13. SECTION: PARTS (PRODUK UNGGULAN)
   ========================================================================== */
.parts__card {
    border: 1px solid var(--beige-color);
    border-radius: .5rem;
    overflow: hidden;
    background-color: var(--container-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parts__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.parts__title {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    color: var(--navy-color);
    padding: 1rem;
    text-align: center;
}

/* Override Khusus Parts Track (Jika menggunakan Marquee) */
#parts-track .slider-slide {
    width: 250px;
    /* Jika mode marquee */
}

/* Responsive Parts (Jika mode Normal Slider) */
@media (min-width: 768px) {
    .parts__img {
        height: 300px;
    }
}

@media (min-width: 992px) {
    .parts__img {
        height: 400px;
    }
}

/* ==========================================================================
   14. SECTION: LOCATION & BRANCH (FINAL)
   ========================================================================== */

/* --- UMUM: LOCATION --- */
.location__container {
    align-items: center;
    gap: 2rem;
}

.location__data {
    padding: 2rem;
    background-color: var(--container-color);
    border-radius: .5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.location__title {
    font-size: var(--h3-font-size);
    color: var(--navy-color);
    margin-bottom: var(--mb-0-5);
}

.location__address,
.location__hours,
.location__contact {
    color: var(--text-color-light);
    margin-bottom: var(--mb-1);
    line-height: 1.6;
}

.location__map-wrapper {
    height: 350px;
    /* Tinggi map utama */
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location__map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- UMUM: KARTU CABANG --- */
.branch__card {
    background-color: var(--container-color);
    border-radius: 1rem;
    /* Radius lebih membulat modern */
    overflow: hidden;
    border: 1px solid var(--beige-color);
    box-shadow: 0 4px 12px rgba(0, 3, 43, 0.05);
    height: 100%;
    /* Agar tinggi seragam */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.branch__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 3, 43, 0.1);
}

.branch__map-wrapper {
    height: 200px;
    width: 100%;
    flex-shrink: 0;
    /* Mencegah peta gepeng */
    background-color: #f0f0f0;
}

.branch__map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Container Data Cabang (Flexbox untuk Dorong Tombol) */
.branch__data {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Mengisi sisa ruang kartu */
}

.branch__title {
    font-size: var(--h3-font-size);
    color: var(--navy-color);
    margin-bottom: 0.25rem;
}

.branch__specialty {
    font-size: var(--small-font-size);
    font-weight: var(--font-semibold);
    color: var(--gold-color);
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.branch__list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    /* Mendorong tombol ke bawah */
}

.branch__list li {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    display: flex;
    align-items: flex-start;
    /* Rata atas jika teks panjang */
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    text-align: left;
    /* Gunakan Left agar lebih rapi daripada Justify untuk alamat pendek */
    line-height: 1.5;
}

.branch__list li i {
    font-size: 1.2rem;
    color: var(--gold-color);
    margin-top: 2px;
    /* Penyesuaian posisi ikon */
    flex-shrink: 0;
}

/* Tombol CTA (Whatsapp) */
.branch__cta {
    margin-top: auto;
    /* KUNCI: Dorong ke paling bawah */
    width: 100%;
    /* Full width di mobile */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gold-color);
    border-radius: 50px;
    /* Pill shape */

    font-size: var(--normal-font-size);
    font-weight: var(--font-semibold);
    gap: 0.5rem;

    background-color: var(--navy-color);
    color: var(--cream-color);
    transition: all 0.3s ease;
}

.branch__cta:hover {
    background-color: var(--gold-color);
    color: var(--navy-color);
    border-color: var(--navy-color);
}

/* --- RESPONSIVE LOGIC (TABLET & DESKTOP) --- */
@media screen and (min-width: 768px) {

    /* Layout Location (Kiri Teks, Kanan Peta) */
    .location__container {
        grid-template-columns: 1fr 1.5fr;
    }

    /* Layout Cabang: Ubah Slider jadi Grid 3 Kolom */
    .branch-slider .slider-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;

        /* 🚨 PERBAIKAN LEBAR: */
        width: 100% !important;
        /* Paksa lebar pas container */
        max-width: 100% !important;
        /* Jangan biarkan melebihi layar */
        margin: 0 !important;
        /* Reset margin geser */

        transform: none !important;
        /* Matikan geser JS */
        transition: none !important;
    }

    .branch-slider .slider-slide {
        width: auto !important;
        padding: 0;
        height: 100%;
        /* Kartu mengisi tinggi grid */
    }

    /* Sembunyikan tombol slider */
    .branch-slider .slider-button {
        display: none;
    }

    /* Penyesuaian Ukuran Font di Tablet */
    .branch-slider .branch__title {
        font-size: 1rem;
    }

    .branch-slider .branch__specialty,
    .branch-slider .branch__list li {
        font-size: 0.813rem;
    }

    /* Tombol CTA di Tablet/Desktop: Tidak Full Width */
    .branch__cta {
        width: fit-content;
        /* Sesuai konten */
        align-self: center;
        /* Tengah horizontal */
        padding: 0.6rem 1.5rem;
        font-size: 0.813rem;
    }

    .branch__cta i {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   15. HALAMAN LAIN (About, Contact, Event, Service)
   ========================================================================== */

/* ==========================================================================
   NEW SERVICE CARD STYLES (GRID SYSTEM)
   ========================================================================== */

/* 1. Grid System (2 Mobile, 3 Tablet, 4 Desktop) */
.service__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    /* Default Mobile: 2 Kolom */
}

@media screen and (min-width: 768px) {
    .service__grid {
        grid-template-columns: repeat(3, 1fr);
        /* Tablet: 3 Kolom */
        gap: 1.5rem;
    }
}

@media screen and (min-width: 1024px) {
    .service__grid {
        grid-template-columns: repeat(4, 1fr);
        /* Desktop: 4 Kolom */
    }
}

/* 2. Kartu Service Design */
.service-card {
    background-color: var(--body-color);
    /* Warna Cream/Putih sesuai tema */
    border: 1px solid var(--beige-color);
    border-radius: 0.75rem;
    overflow: hidden;
    /* Agar tombol bawah tidak keluar radius */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-color);
}

/* Bagian Atas Kartu (Icon + Teks) */
.service-card__content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

/* Icon Box (Kotak Kuning dengan Icon Navy) */
.service-card__icon-box {
    width: 45px;
    height: 45px;
    background-color: var(--gold-color);
    /* Latar Kuning/Gold */
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card__icon-box i {
    font-size: 1.5rem;
    color: var(--navy-color);
    /* Icon Warna Navy */
}

/* Info Teks */
.service-card__info {
    width: 100%;
}

.service-card__title {
    font-size: var(--normal-font-size);
    font-weight: var(--font-bold);
    color: var(--navy-color);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

/* Khusus Mobile, kecilkan font judul sedikit agar muat 2 kolom */
@media screen and (max-width: 576px) {
    .service-card__title {
        font-size: var(--small-font-size);
    }

    .service-card__content {
        padding: 1rem;
        gap: 0.75rem;
    }

    .service-card__icon-box {
        width: 38px;
        height: 38px;
    }

    .service-card__icon-box i {
        font-size: 1.2rem;
    }
}

.service-card__price {
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
    display: block;
}

/* 3. Tombol Detail (Full Width di Bawah) */
.service-card__button {
    width: 100%;
    background-color: var(--gold-color);
    /* Warna Kuning/Gold */
    color: var(--navy-color);
    /* Teks Navy */
    padding: 0.75rem 1rem;
    font-size: var(--small-font-size);
    font-weight: var(--font-semibold);
    display: flex;
    justify-content: space-between;
    /* Teks kiri, panah kanan */
    align-items: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.service-card__button:hover {
    background-color: #c9a784;
    /* Warna hover gold agak gelap */
}

.service-card__button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.service-card__button:hover i {
    transform: translateX(5px);
    /* Efek panah gerak kanan */
}

/* ------------------------------------------ */
.page-header {
    height: 30vh;
    min-height: 250px;
    background-color: var(--navy-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: url('https://via.placeholder.com/1920x400/00032B/DFC1A5?text=BAJM');
    background-size: cover;
    background-position: center;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 3, 43, 0.7);
}

.page-header__container {
    position: relative;
    z-index: 2;
    margin-top: 5rem;
}

.page-header__title {
    font-size: var(--biggest-font-size);
    color: var(--white-color);
    margin-bottom: var(--mb-0-5);
}

.page-header__subtitle {
    font-size: var(--normal-font-size);
    color: var(--gold-color);
}

.page-content {
    background-color: var(--container-color);
    padding: 2.5rem 0;
}

/* About Styles */
.visi-misi__container {
    background-color: var(--body-color);
    padding: 2rem;
    border-radius: .5rem;
    border: 1px solid var(--beige-color);
}

.visi-misi__title {
    font-size: var(--h2-font-size);
    color: var(--navy-color);
    margin-bottom: var(--mb-1);
    border-bottom: 2px solid var(--gold-color);
    padding-bottom: .5rem;
    display: inline-block;
}

.visi-misi__list {
    list-style: disc;
    padding-left: 1.5rem;
    color: var(--text-color-light);
}

.visi-misi__list li {
    margin-bottom: var(--mb-0-75);
}

/* Event Styles */
.event__container {
    grid-template-columns: repeat(2, 1fr);
}

@media screen and (min-width: 768px) {
    .event__container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.event__card {
    background-color: var(--body-color);
    border-radius: .5rem;
    overflow: hidden;
    border: 1px solid var(--beige-color);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.event__data {
    padding: 1.5rem;
}

.event__date {
    font-size: var(--small-font-size);
    font-weight: var(--font-semibold);
    color: var(--gold-color);
    margin-bottom: var(--mb-0-25);
}

.event__title {
    font-size: var(--h3-font-size);
    color: var(--navy-color);
    margin-bottom: var(--mb-0-5);
}

.event__description {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    margin-bottom: var(--mb-1);
}

/* Contact Styles */
.contact__container {
    grid-template-columns: 1fr;
}

@media screen and (min-width: 768px) {
    .contact__container {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
    }
}

.contact__info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: var(--mb-2);
}

@media screen and (min-width: 768px) {
    .contact__info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact__info-card {
    background-color: var(--body-color);
    padding: 1.5rem;
    border-radius: .5rem;
    border: 1px solid var(--beige-color);
}

.contact__info-card i {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: var(--mb-0-5);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact__info-title {
    font-size: var(--normal-font-size);
    font-weight: var(--font-semibold);
    color: var(--navy-color);
    margin-bottom: var(--mb-0-25);
}

.contact__info-desc {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    line-height: 1.6;
}

.contact__form-container {
    background-color: var(--body-color);
    padding: 2rem;
    border-radius: .5rem;
}

.contact__form-group {
    margin-bottom: var(--mb-1-5);
}

.contact__form-label {
    display: block;
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    color: var(--navy-color);
    margin-bottom: var(--mb-0-25);
}

.contact__form-input {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid var(--beige-color);
    border-radius: .25rem;
    background-color: var(--cream-color);
    color: var(--text-color);
}

.contact__form-input:focus {
    outline: none;
    border-color: var(--gold-color);
}

textarea.contact__form-input {
    height: 120px;
    resize: vertical;
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.footer {
    background-color: var(--navy-color);
    color: var(--beige-color);
    padding: 4rem 0 2rem;
}

.footer__container {
    gap: 2.5rem;
}


.footer__links li {
    margin-bottom: var(--mb-0-5);
    position: relative;
}

.footer__dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__dropdown-icon {
    font-size: 1.1rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.footer__sub-links {
    list-style: none;
    padding-left: 0;
    margin-top: .5rem;
    margin-bottom: 0;
    margin-left: 0.8rem;

    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out, visibility 0.4s;
}

.footer__links li:last-child {
    margin-bottom: 0;
}

.footer__sub-links {
    list-style: none;
    padding-left: 0;
    margin-top: .5rem;
    margin-bottom: 0;
    margin-left: 0.8rem;
}

.footer__sub-links li {
    margin-bottom: .4rem;
}

.footer__sub-links {
    list-style: none;
    padding-left: 0;
    margin-top: .5rem;
    margin-bottom: 0;
    margin-left: 0.8rem;

    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out, visibility 0.4s;
}

.footer__dropdown:hover>.footer__sub-links {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
}

.footer__dropdown:hover>.footer__dropdown-link .footer__dropdown-icon {
    transform: rotate(180deg);
}

@media screen and (min-width: 1024px) {
    .footer__container {
        grid-template-columns: repeat(1fr, 3fr);
        gap: 2.5rem;
    }

    .footer__content {
        gap: 2rem;
    }
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: var(--font-semibold);
    font-family: var(--title-font);
    color: var(--white-color);
    margin-bottom: var(--mb-1);
}

.footer__logo-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.footer__description {
    font-size: var(--small-font-size);
    max-width: 300px;
}

.footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--mb-1-5);
}

@media screen and (min-width: 768px) {
    .footer__content {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--mb-1-5);
    }
}

.footer__title {
    font-size: var(--h3-font-size);
    color: var(--white-color);
    margin-bottom: var(--mb-1);
}

.footer__link {
    font-size: var(--small-font-size);
    color: var(--beige-color);
    transition: color .3s;
    display: block;
    margin-bottom: var(--mb-0-5);
}

.footer__link:hover {
    color: var(--gold-color);
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    font-size: 1.5rem;
    color: var(--beige-color);
    transition: color .3s, transform .3s;
}

.footer__social-link:hover {
    color: var(--gold-color);
    transform: translateY(-2px);
}

.footer__copy {
    display: block;
    margin-top: 3rem;
    text-align: center;
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
}

/* ==========================================================================
   17. ANIMATIONS & SCROLL
   ========================================================================== */

/* Scroll Up Button */
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -30%;
    background-color: var(--gold-color);
    color: var(--navy-color);
    padding: .5rem;
    border-radius: .25rem;
    z-index: var(--z-tooltip);
    opacity: .8;
    transition: bottom .4s, opacity .4s, transform .3s;
}

.scrollup:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.scrollup__icon {
    font-size: 1.25rem;
}

.show-scroll {
    bottom: 3rem;
}

/* Reveal Animation (AOS Style) */
.reveal-fade,
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal-fade {
    transform: translateY(20px);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Keyframes untuk Marquee (Running Image) */
@keyframes mitra-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Pindah setengah karena duplikasi */
}

/* ==================== LAYOUT KHUSUS LAYAR BESAR (1920px) ==================== */
@media screen and (min-width: 1200px) {
    .container {
        /* Meningkatkan lebar container agar lebih memenuhi layar laptop/PC */
        max-width: 1400px;
    }
}

@media screen and (min-width: 1600px) {
    .container {
        /* Meningkatkan lebar container untuk layar Full HD 1920px */
        max-width: 1600px;
    }
}

/* ==================== FIX KHUSUS MOBILE (BRANCH SLIDER) ==================== */
@media screen and (max-width: 767px) {

    /* 1. Hilangkan padding container agar slider bisa lebar penuh */
    #branch.section .branch-slider.container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
        overflow: hidden;
    }

    /* 2. Pastikan Kartu ada di tengah-tengah layar */
    #branch-track .slider-slide {
        display: flex;
        justify-content: center;
        /* Tengahkan kartu secara horizontal */
        width: 100vw !important;
        /* Paksa slide selebar layar HP */
        padding: 0 1rem;
        /* Beri sedikit jarak kiri-kanan agar kartu tidak nempel pinggir */
        box-sizing: border-box;
    }

    /* 3. Atur ulang lebar kartu agar proporsional di HP */
    .branch__card {
        width: 100%;
        max-width: 340px;
        /* Batas maksimal agar tidak terlalu besar */
        margin: 0 auto;
    }

    /* 4. Rapikan tombol navigasi di mobile agar tidak menutupi konten */
    .branch-slider .slider-button {
        width: 2rem;
        height: 2rem;
        font-size: 1.2rem;
    }

    .branch-slider .slider-button.prev {
        left: 5px;
    }

    .branch-slider .slider-button.next {
        right: 5px;
    }
}

/* ==================== FIX FINAL: SEMBUNYIKAN DUPLIKAT DI DESKTOP ==================== */
/* Saat layar Tablet (768px) ke atas, sembunyikan kartu hasil cloning JS */
@media screen and (min-width: 768px) {
    .branch-slider .slider-track .clone-slide {
        display: none !important;
    }

    /* Pastikan Grid tetap 3 kolom rapi */
    .branch-slider .slider-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        transform: none !important;
        /* Matikan geseran slider */
        width: 100% !important;
    }
}

/* ==================== KHUSUS TAMPILAN 2 KOLOM MOBILE ==================== */
@media screen and (max-width: 767px) {

    /* --- 1. TESTIMONI KECIL (Agar muat 2 kolom) --- */
    .testimoni-slider .testimoni__card {
        padding: 0.75rem;
        /* Kurangi padding kartu */
        min-height: 150px;
        /* Tinggi minimal disesuaikan */
    }

    .testimoni-slider .testimoni__header {
        flex-direction: column;
        /* Foto di atas nama (biar muat) */
        align-items: flex-start;
        gap: 0.25rem;
        margin-bottom: 0.5rem;
    }

    .testimoni-slider .testimoni__avatar {
        width: 35px;
        /* Perkecil foto profil */
        height: 35px;
    }

    .testimoni-slider .testimoni__name {
        font-size: 0.75rem;
        /* Perkecil nama */
        line-height: 1.2;
    }

    .testimoni-slider .testimoni__rating {
        font-size: 0.7rem;
        /* Bintang lebih kecil */
    }

    .testimoni-slider .testimoni__comment {
        font-size: 0.7rem;
        /* Komentar lebih kecil */
        line-height: 1.4;
    }

    /* --- 2. PARTS KECIL (Agar muat 2 kolom) --- */
    .parts-slider .parts__img {
        height: 250px;
        /* Kurangi tinggi gambar */
    }

    .parts-slider .parts__title {
        font-size: 0.8rem;
        /* Perkecil font judul */
        padding: 0.5rem;
    }
}

/* ==================== TAMBAHAN CSS UNTUK LOGO E-COMMERCE ==================== */

/* Style untuk link pembungkus gambar */
.footer__store-link {
    display: inline-block;
    /* Samakan efek transisi dengan icon sosmed */
    transition: transform .3s ease, opacity .3s ease;
    /* Opsional: membuat logo agak redup sedikit saat normal */
    opacity: 0.8;
}

/* Pengaturan Ukuran Gambar Logo */
.footer__store-link img {
    /* ATUR TINGGI LOGO DISINI.
       30px biasanya ukuran yang pas, tidak terlalu kecil tapi tetap rapi.
       Silakan ubah angkanya jika dirasa kurang pas. */
    height: 40px;
    width: auto;
    /* Menjaga proporsi gambar agar tidak gepeng */
    display: block;
}

/* Efek Hover */
.footer__store-link:hover {
    /* Efek naik sedikit, sama seperti icon sosmed */
    transform: translateY(-2px);
    /* Membuat logo menjadi terang penuh saat disorot */
    opacity: 1;
}

/* ==================== PENYESUAIAN HALAMAN EVENT ==================== */

/* --- 1. Event Image Scaling (Tampilan Kartu Awal) --- */
.event__img-box {
    /* Atur tinggi tetap untuk box gambar agar ada patokan */
    height: 200px;
    /* Sesuaikan tinggi ini sesuai selera Anda */
    overflow: hidden;
}

.event__card .event__image {
    width: 100%;
    height: 100%;
    /* KUNCI SCALING: Memaksa gambar menutupi seluruh box dan memotong sisanya */
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event__card:hover .event__image {
    transform: scale(1.05);
    /* Efek zoom saat hover */
}


/* --- 2. Gaya Modal (Popup Detail Event) --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Background gelap transparan */
    z-index: 9999;
    /* Pastikan modal selalu di atas */
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show-modal {
    visibility: visible;
    opacity: 1;
}

.modal__content {
    background-color: var(--body-color);
    /* Warna latar belakang body/putih */
    border-radius: 1rem;
    width: 90%;
    max-width: 700px;
    /* Lebar maksimal modal */
    max-height: 90vh;
    /* Tinggi maksimal modal (agar bisa di-scroll) */
    overflow-y: auto;
    /* Kunci: Konten di dalam modal bisa di-scroll */
    padding: 1.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show-modal .modal__content {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--title-color);
}

.modal__image-wrapper {
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
}

/* === MODAL CAROUSEL === */
.modal__carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0.75rem;
    background-color: #000;
}

.modal__carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.modal__carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.modal__image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

/* Tombol Prev / Next */
.modal__carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 3, 43, 0.55);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 5;
}

.modal__carousel-btn:hover {
    background-color: rgba(0, 3, 43, 0.85);
}

.modal__carousel-btn--prev {
    left: 0.6rem;
}

.modal__carousel-btn--next {
    right: 0.6rem;
}

/* Dots */
.modal__carousel-dots {
    position: absolute;
    bottom: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.modal__carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.modal__carousel-dot.active {
    background-color: var(--gold-color);
    transform: scale(1.3);
}

.modal__title {
    font-size: var(--h2-font-size);
    margin-bottom: 0.5rem;
    color: var(--first-color);
}

.modal__date {
    display: block;
    font-size: var(--small-font-size);
    color: var(--text-color);
    margin-bottom: 1rem;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 0.5rem;
}

.modal__description {
    /* Jika deskripsi sangat panjang, ini yang akan di-scroll */
    line-height: 1.6;
    color: var(--text-color);
    font-size: var(--normal-font-size);
    /* Mengatasi tag <p> di dalam deskripsi */
    padding-right: 0.5rem;
}

.modal__description p {
    margin-bottom: 1rem;
}

/* --- Tweak Responsive untuk Modal --- */
@media screen and (max-width: 576px) {
    .modal__content {
        padding: 1rem;
        max-width: 95%;
    }

    .modal__title {
        font-size: var(--h3-font-size);
    }
}

/* ==================== PENYESUAIAN HALAMAN EVENT & MODAL ==================== */

/* --- 1. Event Image Scaling (Tampilan Kartu Awal) --- */
.event__img-box {
    /* Atur tinggi tetap agar gambar terlihat seragam */
    height: 200px;
    overflow: hidden;
    border-radius: var(--border-radius);
    /* Opsional: sesuaikan dengan radius kartu */
    margin-bottom: 1rem;
}

.event__card .event__image {
    width: 100%;
    height: 100%;
    /* KUNCI SCALING: Memaksa gambar menutupi seluruh box dan memotong sisanya */
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event__card:hover .event__image {
    transform: scale(1.05);
    /* Efek zoom saat hover */
}

/* --- 2. Gaya Modal (Popup Detail Event) --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Background gelap transparan */
    z-index: 9999;
    /* Pastikan modal selalu di atas */
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show-modal {
    visibility: visible;
    opacity: 1;
}

.modal__content {
    background-color: var(--body-color);
    /* Warna latar belakang body/putih */
    border-radius: 1rem;
    width: 90%;
    max-width: 700px;
    /* Lebar maksimal modal */
    max-height: 90vh;
    /* Tinggi maksimal modal (agar bisa di-scroll) */
    overflow-y: auto;
    /* Kunci: Konten di dalam modal bisa di-scroll */
    padding: 1.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show-modal .modal__content {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--title-color);
}

.modal__image-wrapper {
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
}

.modal__image {
    width: 100%;
    height: auto;
    /* Kunci: Gambar mengikuti rasio aslinya (berapapun tingginya) */
    object-fit: contain;
}

.modal__title {
    font-size: var(--h2-font-size);
    margin-bottom: 0.5rem;
    color: var(--first-color);
}

.modal__date {
    display: block;
    font-size: var(--small-font-size);
    color: var(--text-color);
    margin-bottom: 1rem;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 0.5rem;
}

.modal__description {
    /* Deskripsi yang menampung paragraf panjang */
    line-height: 1.6;
    color: var(--text-color);
    font-size: var(--normal-font-size);
    /* Mengatasi tag <p> di dalam deskripsi */
    padding-right: 0.5rem;
}

.modal__description p {
    margin-bottom: 1rem;
}

/* ==================== SERVICE MODAL POPUP (RESPONSIVE) ==================== */

/* --- 1. Container & Overlay --- */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 3, 43, 0.85);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Posisi Vertikal Tengah */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
    /* Jarak aman dari pinggir layar HP */
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal__container {
    background-color: var(--white-color);
    width: 100%;
    /* Default Mobile: Lebar Penuh */
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;

    /* --- UKURAN DEFAULT (MOBILE) --- */
    max-width: 500px;
    /* Batas lebar di HP */
    height: 85vh;
    /* Tinggi 85% layar HP */
}

.service-modal.active .service-modal__container {
    transform: translateY(0);
}

/* --- 2. Responsive Size (Tablet & Desktop) --- */

/* TABLET (Lebar >= 768px) */
@media screen and (min-width: 768px) {
    .service-modal__container {
        max-width: 700px;
        /* Perlebar modal */
        height: 80vh;
        /* Tinggi sedikit dikurangi biar proporsional */
    }

    .service-modal__img-wrapper {
        height: 260px;
        /* Gambar lebih tinggi di tablet */
    }
}

/* DESKTOP (Lebar >= 1024px) */
@media screen and (min-width: 1024px) {
    .service-modal__container {
        max-width: 950px;
        /* SANGAT LEBAR di Desktop */
        height: 85vh;
    }

    /* Layout 2 Kolom di Dalam Body Modal Desktop */
    .service-modal__body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2.5rem;
        align-items: start;
        /* Kolom kiri rata atas, tidak mengikuti tinggi kolom kanan */
    }

    /* Kolom Kiri: wrapper gambar + deskripsi */
    .service-modal__left-col {
        display: flex;
        flex-direction: column;
    }

    /* Gambar di desktop */
    .service-modal__img-wrapper {
        height: 260px;
        /* <-- UBAH NILAI INI untuk tinggi gambar di desktop */
        margin-bottom: .5rem;
    }

    /* Kolom Kanan: Tabel Harga */
    .service-modal__section {
        border-left: 1px solid var(--beige-color);
        padding-left: 2rem;
        margin-top: 0;
    }

    /* Judul section tabel di desktop */
    .service-modal__section h4 {
        margin-top: 0;
        font-size: 1.1rem;
    }
}


/* --- 3. Komponen Modal (Header, Body, Footer) --- */

/* Header (Fixed) */
.service-modal__header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--beige-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white-color);
    flex-shrink: 0;
}

.service-modal__header h3 {
    font-size: 1.1rem;
    color: var(--navy-color);
}

.service-modal__close {
    font-size: 1.8rem;
    color: var(--text-color-light);
    cursor: pointer;
    transition: color 0.3s;
}

.service-modal__close:hover {
    color: red;
}

/* Body (Scrollable) */
.service-modal__body {
    flex-grow: 1;
    overflow-y: auto;
    /* Scroll aktif jika konten panjang */
    padding: 1.5rem;
}

/* Gambar */
.service-modal__img-wrapper {
    height: 290px;
    width: 100%;
    /* Tinggi default mobile ada di media query atas (implicit auto/css lama) */
    /* Kita set default mobile disini: */
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: #f0f0f0;
}

.service-modal__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Teks & Judul */
.service-modal__section h4 {
    font-size: 1rem;
    color: var(--navy-color);
    margin-bottom: 0.75rem;
    border-left: 4px solid var(--gold-color);
    padding-left: 0.5rem;
}

.service-modal__section p {
    font-size: var(--small-font-size);
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Tabel Harga */
.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--small-font-size);
    margin-bottom: 0.5rem;
}

.price-table th,
.price-table td {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.price-table th {
    color: var(--text-color-light);
    font-weight: var(--font-medium);
    background-color: #fafafa;
    /* Sedikit background di header tabel */
}

.price-table td {
    color: var(--navy-color);
    font-weight: var(--font-semibold);
}

.price-table .text-right {
    text-align: right;
}

.service-modal__note {
    font-size: 0.75rem !important;
    color: #888 !important;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Footer (Fixed Button) */
.service-modal__footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--beige-color);
    background-color: var(--white-color);
    flex-shrink: 0;
}

/* Button Full Width */
.button--block {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

/* ==========================================================================
   18. SECTION: APPAREL PAGE (NEW)
   ========================================================================== */

/* --- Filter Tombol --- */
.apparel__filters {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    /* Agar rapi di mobile */
    gap: 1rem;
}

.apparel__item {
    color: var(--navy-color);
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: var(--font-medium);
    cursor: pointer;
    background-color: var(--white-color);
    border: 1px solid var(--beige-color);
    transition: 0.3s;
}

.apparel__item:hover {
    background-color: var(--gold-color);
    color: var(--navy-color);
    border-color: var(--gold-color);
}

.active-apparel {
    background-color: var(--navy-color);
    color: var(--white-color);
    border-color: var(--navy-color);
}

.active-apparel:hover {
    background-color: var(--navy-color);
    color: var(--white-color);
}

/* --- Grid Container --- */
.apparel__container {
    grid-template-columns: repeat(2, 1fr);
    /* Mobile: 2 Kolom */
    gap: 1.5rem;
}

@media screen and (min-width: 768px) {
    .apparel__container {
        grid-template-columns: repeat(3, 1fr);
        /* Tablet: 3 Kolom */
    }
}

@media screen and (min-width: 1024px) {
    .apparel__container {
        grid-template-columns: repeat(4, 1fr);
        /* Desktop: 4 Kolom */
    }
}

/* --- Kartu Produk Apparel --- */
.apparel__card {
    background-color: var(--white-color);
    border: 1px solid var(--beige-color);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.apparel__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-color);
}

/* Gambar */
.apparel__img-box {
    position: relative;
    width: 100%;
    padding-top: 80.0741%;
    /* Aspek rasio 1081:1350 (Portrait) */
    overflow: hidden;
    background-color: #f9f9f9;
}

.apparel__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.apparel__card:hover .apparel__img {
    transform: scale(1.1);
}

/* Tag/Label (Misal: Best Seller) */
.apparel__tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--gold-color);
    color: var(--navy-color);
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    z-index: 5;
}

/* Konten Teks */
.apparel__content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Agar tombol selalu di bawah */
}

.apparel__title {
    font-size: var(--normal-font-size);
    font-weight: var(--font-semibold);
    color: var(--navy-color);
    margin-bottom: 0.25rem;
    /* Batasi teks jadi 2 baris */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.apparel__category {
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
    margin-bottom: 0.5rem;
}

.apparel__price {
    font-size: 1.1rem;
    font-weight: var(--font-bold);
    color: var(--gold-color);
    margin-bottom: 1rem;
    display: block;
}

/* Tombol Beli */
.apparel__button {
    margin-top: auto;
    /* Dorong ke bawah */
    width: 100%;
    padding: 0.6rem;
    font-size: var(--small-font-size);
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

/* Hide element saat di filter */
.apparel__card.hide-product {
    display: none;
}

/* Tombol Aksi (Detail + Beli) */
.apparel__actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.apparel__actions .apparel__detail-btn {
    flex: 0 0 auto;
    padding: 0.6rem 0.75rem;
    font-size: var(--small-font-size);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.apparel__actions .apparel__button {
    flex: 1;
    padding: 0.6rem;
    font-size: var(--small-font-size);
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
}

/* Tombol outline (untuk Detail) */
.button--outline {
    background-color: transparent;
    border: 1.5px solid var(--navy-color);
    color: var(--navy-color);
    cursor: pointer;
    font-family: var(--body-font);
    font-weight: var(--font-medium);
    transition: 0.3s;
}

.button--outline:hover {
    background-color: var(--navy-color);
    color: var(--white-color);
}

/* Quick View hover button di atas gambar */
.apparel__quick-view {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy-color);
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 5;
}

.apparel__card:hover .apparel__quick-view {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MODAL DETAIL PRODUK APPAREL ===== */
.apparel-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.apparel-modal.active {
    pointer-events: all;
    opacity: 1;
}

.apparel-modal__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 3, 43, 0.75);
    backdrop-filter: blur(4px);
}

.apparel-modal__box {
    position: relative;
    background-color: var(--white-color);
    border-radius: 1rem;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.apparel-modal.active .apparel-modal__box {
    transform: scale(1) translateY(0);
}

.apparel-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background-color: var(--beige-color);
    color: var(--navy-color);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.2s;
}

.apparel-modal__close:hover {
    background-color: var(--gold-color);
}

.apparel-modal__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media screen and (min-width: 640px) {
    .apparel-modal__content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Galeri Kiri */
.apparel-modal__gallery {
    background-color: #f5f5f5;
    border-radius: 1rem 1rem 0 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media screen and (min-width: 640px) {
    .apparel-modal__gallery {
        border-radius: 1rem 0 0 1rem;
    }
}

.apparel-modal__main-img-box {
    width: 100%;
    padding-top: 133.33%;
    /* Aspek rasio 1081:1350 (Portrait) */
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #eee;
}

.apparel-modal__main-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.25s;
}

.apparel-modal__thumbs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.apparel-modal__thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.4rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.65;
}

.apparel-modal__thumb:hover {
    opacity: 1;
}

.apparel-modal__thumb.active-thumb {
    border-color: var(--navy-color);
    opacity: 1;
}

/* Info Kanan */
.apparel-modal__info {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.apparel-modal__category {
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: var(--font-medium);
}

.apparel-modal__title {
    font-family: var(--title-font);
    font-size: var(--h2-font-size);
    color: var(--navy-color);
    line-height: 1.3;
    margin-top: 0.25rem;
}

.apparel-modal__price {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--gold-color);
    display: block;
    margin: 0.25rem 0;
}

.apparel-modal__desc {
    font-size: var(--small-font-size);
    color: var(--text-color);
    line-height: 1.7;
    border-top: 1px solid var(--beige-color);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

.apparel-modal__specs-title {
    font-size: var(--small-font-size);
    font-weight: var(--font-semibold);
    color: var(--navy-color);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.apparel-modal__specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.apparel-modal__specs li {
    display: flex;
    justify-content: space-between;
    font-size: var(--smaller-font-size);
    border-bottom: 1px dashed var(--beige-color);
    padding-bottom: 0.3rem;
    gap: 1rem;
}

.apparel-modal__specs li .spec-key {
    color: var(--text-color-light);
    flex-shrink: 0;
}

.apparel-modal__specs li .spec-val {
    color: var(--navy-color);
    font-weight: var(--font-medium);
    text-align: right;
}

.apparel-modal__cta {
    margin-top: auto;
    padding-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--normal-font-size);
}

/* ==========================================================================
   19. HALAMAN KARIR (LIST VIEW & MODAL)
   ========================================================================== */

/* Container List */
.career-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    /* Tengah halaman */
}

/* Item List (Baris) */
.career-item {
    background-color: var(--white-color);
    border: 1px solid var(--beige-color);
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Kiri info, Kanan tombol */
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.career-item:hover {
    border-color: var(--gold-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

/* Bagian Kiri (Icon + Teks) */
.career-item__left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.career-item__icon {
    width: 50px;
    height: 50px;
    background-color: var(--navy-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: var(--gold-color);
    font-size: 1.5rem;
}

.career-item__title {
    font-size: 1.1rem;
    color: var(--navy-color);
    font-weight: var(--font-bold);
    margin-bottom: 0.25rem;
}

/* Badge Status */
.career-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.career-badge.open {
    background-color: #e6f4ea;
    color: #1e7e34;
    border: 1px solid #1e7e34;
}

.career-badge.closed {
    background-color: #fdecea;
    color: #c0392b;
    border: 1px solid #c0392b;
}

/* Responsive Mobile (Stack ke bawah) */
@media screen and (max-width: 576px) {
    .career-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .career-item__left {
        width: 100%;
    }

    .career-detail-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   20. MODAL KARIR - PROFESSIONAL & CLEAN LOOK
   ========================================================================== */

/* 1. Backdrop (Latar Belakang Gelap & Blur) */
#career-modal {
    background-color: rgba(0, 3, 43, 0.7);
    /* Warna Navy Transparan */
    backdrop-filter: blur(5px);
    /* Efek Blur Kekinian */
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    padding: 1rem;
    /* Jarak aman di HP */
}

/* 2. Kotak Modal (Card Utama) */
.career-modal-content {
    background-color: var(--white-color);
    width: 100%;
    max-width: 500px;
    /* Lebar ideal untuk form bacaan */
    border-radius: 16px;
    /* Sudut membulat modern */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Agar konten tidak keluar radius */
    max-height: 85vh;
    /* Maksimal tinggi 85% layar */
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    padding: 0;
    /* Reset padding default */
}

#career-modal.show-modal .career-modal-content {
    transform: translateY(0);
}

/* 3. Tombol Close (Pojok Kanan Atas) */
#career-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f3f4f6;
    color: var(--text-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

#career-modal-close:hover {
    background-color: #fee2e2;
    /* Merah muda lembut saat hover */
    color: #ef4444;
    /* Ikon merah */
    transform: rotate(90deg);
}

/* 4. Bagian Header (Judul & Badge Status) */
/* Kita atur margin/padding elemen HTML yang sudah ada agar terlihat seperti Header */

#career-modal-title {
    margin-top: 0;
    padding: 2.5rem 2rem 0.5rem 2rem;
    /* Ruang atas lega */
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-color);
    line-height: 1.3;
}

#career-modal-status {
    display: table;
    /* Trik agar width menyesuaikan konten (bukan full) */
    margin: 0.5rem auto 1.5rem auto;
    /* Posisi tengah */
    font-size: 0.75rem;
    padding: 0.35rem 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Warna Badge Status */
.career-badge.open {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.career-badge.closed {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* 5. Bagian Body (Daftar Kualifikasi) */
.career-modal__body {
    padding: 0 2rem 2rem 2rem;
    overflow-y: auto;
    /* Scroll jika konten panjang */
    flex-grow: 1;
    /* Mengisi sisa ruang */
    /* Scrollbar Cantik */
    scrollbar-width: thin;
    scrollbar-color: var(--gold-color) transparent;
}

.career-modal__body h4 {
    font-size: 0.95rem;
    color: var(--text-color-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* Styling List Kualifikasi (Bullet Points Rapi) */
#career-modal-specs {
    list-style: none;
    /* Hilangkan bullet bawaan */
    padding: 0;
    margin: 0;
}

#career-modal-specs li {
    position: relative;
    padding-left: 1.75rem;
    /* Ruang untuk ikon bullet */
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Custom Bullet Icon (Checklist) */
#career-modal-specs li::before {
    content: '\e947';
    /* Kode ikon Boxicons (Centang) */
    font-family: 'boxicons';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gold-color);
    font-size: 1.2rem;
}

/* 6. Bagian Footer (Tombol Aksi) */
.career-modal__footer {
    padding: 1.25rem 2rem;
    background-color: var(--white-color);
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

/* Mempercantik Tombol di Footer */
.career-modal__footer .button {
    width: 100%;
    justify-content: center;
    padding: 0.85rem;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(223, 193, 165, 0.4);
    /* Shadow Gold */
}

.career-modal__footer .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(223, 193, 165, 0.6);
}

/* Tombol Disabled (Jika Lowongan Tutup) */
.career-modal__footer .button--disabled {
    background-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
}

.career-modal__footer .button--disabled:hover {
    transform: none;
}

/* Responsive Mobile */
@media screen and (max-width: 576px) {
    .career-modal-content {
        max-height: 90vh;
        width: 95%;
        /* Agak lebar di HP */
    }

    #career-modal-title {
        font-size: 1.25rem;
        padding: 2rem 1.5rem 0.5rem 1.5rem;
    }

    .career-modal__body {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .career-modal__footer {
        padding: 1rem 1.5rem;
    }
}

/* TAMBAHAN UNTUK MODAL FORM KARIR */

/* Header Form */
.reseller-modal__header {
    border-bottom: 1px solid var(--beige-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

/* Style Input File agar rapi */
#file_dummy {
    width: 100%;
    padding: 0.5rem;
    border: 1px dashed var(--gold-color);
    background-color: #fffbf5;
    border-radius: 0.5rem;
    cursor: pointer;
}

/* Pastikan style Checkbox Pill (yang dipakai di script.js) sudah ada */
/* Jika belum, pastikan kode ini ada di style2.css Anda (sudah ada di kode original tapi pastikan ini) */

.checkbox-group-container {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background-color: var(--white-color);
    border: 1px solid var(--beige-color);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-pill i {
    font-size: 1.1rem;
    color: var(--gold-color);
}

.checkbox-pill input[type="radio"] {
    display: none;
    /* Sembunyikan radio asli */
}

/* Efek saat dipilih (Checked) */
.checkbox-pill:has(input:checked) {
    background-color: var(--navy-color);
    color: var(--gold-color);
    border-color: var(--navy-color);
    box-shadow: 0 4px 10px rgba(0, 3, 43, 0.2);
}

/* Fallback untuk browser lama yang tidak support :has */
.checkbox-pill input:checked+i {
    color: var(--white-color);
}

/* ==========================================================================
    RESELLER PAGE STYLES (TOTAL REVAMP)
    ========================================================================== */

/* --- 1. RESELLER HERO SECTION --- */
.reseller-hero {
    padding-top: 3rem;
    /* Jarak dari navbar */
    padding-bottom: 3rem;
    background: linear-gradient(to bottom, var(--body-color), #fff);
}

.reseller-hero__container {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.reseller-hero__image {
    max-width: 420px;
    margin-left: auto;
}


@media screen and (min-width: 992px) {
    .reseller-hero__container {
        grid-template-columns: 1.2fr 1fr;
        /* Teks kiri lebih lebar */
    }
}

.reseller-hero__badge {
    display: inline-block;
    background-color: rgba(223, 193, 165, 0.15);
    color: var(--navy-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: var(--font-bold);
    font-size: var(--small-font-size);
    margin-bottom: 1.5rem;
    border: 1px solid var(--gold-color);
    letter-spacing: 0.5px;
}

.reseller-hero__title {
    font-size: var(--h1-font-size);
    color: var(--navy-color);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.reseller-hero__title span {
    position: relative;
    z-index: 1;
}

.reseller-hero__title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--beige-color);
    z-index: -1;
    opacity: 0.6;
}

.reseller-hero__desc {
    color: var(--text-color-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.reseller-hero__stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--gold-color);
    padding-left: 1.5rem;
}

.stat-item h3 {
    font-size: 1.75rem;
    color: var(--navy-color);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    font-weight: var(--font-medium);
}

.hero-img-rounded {
    width: 100%;
    border-radius: 2rem 0 2rem 0;
    box-shadow: -15px 15px 0 var(--gold-color), 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-img-rounded:hover {
    transform: translateY(-5px);
}

/* --- 2. KEUNTUNGAN SECTION (ICONS) --- */
.unggulan__card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
    /* Ubah jadi rata kiri agar lebih formal */
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.unggulan__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-color);
}

.icon-box-reseller {
    width: 60px;
    height: 60px;
    background-color: var(--navy-color);
    /* Ubah background jadi Navy */
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--gold-color);
    /* Icon jadi Emas */
}

/* --- 3. PRICING / PAKET USAHA --- */
.pricing__container {
    gap: 2rem;
    margin-top: 3rem;
}

#paket-usaha {
    background-color: white;
}

@media screen and (min-width: 768px) {
    .pricing__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing__card {
    background-color: var(--white-color);
    border: 1px solid var(--beige-color);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 3, 43, 0.1);
}

/* Kartu Aktif / Paling Laris */
.pricing__card-active {
    border: 2px solid var(--gold-color);
    background: linear-gradient(to bottom right, #fff, #fffbf5);
    transform: scale(1.05);
    /* Sedikit lebih besar */
    z-index: 2;
    box-shadow: 0 15px 30px rgba(223, 193, 165, 0.2);
}

.pricing__card-active:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing__badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background-color: var(--navy-color);
    color: var(--gold-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pricing__header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px dashed var(--beige-color);
    padding-bottom: 1.5rem;
}

.pricing__subtitle {
    display: block;
    font-size: 1rem;
    color: var(--text-color-light);
    margin-bottom: 0.5rem;
}

.pricing__title {
    font-size: 2rem;
    color: var(--navy-color);
    margin-bottom: 0.5rem;
    font-weight: var(--font-bold);
}

.pricing__list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    /* Icon di atas jika teks panjang */
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
}

.pricing__list li i {
    color: var(--gold-color);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}


/* ==========================================================================
   4. MODAL & FORM STYLE (THE BIG UPDATE)
   ========================================================================== */

/* Background Overlay */
.reseller-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 3, 43, 0.85);
    /* Navy Gelap Transparan */
    backdrop-filter: blur(5px);
    /* Efek Blur Kekinian */
    display: none;
    /* JS akan mengubah ini jadi flex */
    justify-content: center;
    align-items: center;
    /* Vertikal Center */
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 1rem;
}

.reseller-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

/* Modal Content Box */
.reseller-modal__content {
    background-color: var(--white-color);
    width: 100%;
    max-width: 500px;
    /* Default Mobile */
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    max-height: 90vh;
    /* Agar bisa discroll jika layar pendek */
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Efek mantul dikit */
}

/* Animasi masuk */
.reseller-modal.active .reseller-modal__content {
    transform: translateY(0);
}

/* Desktop Width */
@media screen and (min-width: 768px) {
    .reseller-modal__content.content-wide {
        max-width: 850px;
        /* Lebih lebar untuk 2 kolom */
        padding: 2.5rem 3rem;
    }
}

/* Close Button */
.reseller-modal__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    background-color: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-color-light);
    cursor: pointer;
    transition: all 0.2s;
}

.reseller-modal__close:hover {
    background-color: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

/* Header Text */
.reseller-modal__header h3 {
    font-size: 1.5rem;
    color: var(--navy-color);
    margin-bottom: 0.5rem;
}

.reseller-modal__header p {
    color: var(--text-color-light);
    font-size: 0.95rem;
}

/* --- FORM ELEMENTS STYLING --- */

/* Grid Layout */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media screen and (min-width: 768px) {
    .form-grid-2 {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Section Title with Line */
.form-section-title {
    font-family: var(--title-font);
    font-size: 1rem;
    color: var(--navy-color);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 2rem 0 1.25rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-section-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: var(--beige-color);
}

/* Inputs & Selects */
.reseller-modal__content input[type="text"],
.reseller-modal__content input[type="tel"],
.reseller-modal__content input[type="email"],
.reseller-modal__content input[type="date"],
.reseller-modal__content textarea,
.reseller-modal__content select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-family: var(--body-font);
    font-size: 0.95rem;
    background-color: #f9fafb;
    color: var(--navy-color);
    transition: all 0.3s ease;
}

.reseller-modal__content input:focus,
.reseller-modal__content textarea:focus,
.reseller-modal__content select:focus {
    outline: none;
    border-color: var(--gold-color);
    background-color: var(--white-color);
    box-shadow: 0 0 0 4px rgba(223, 193, 165, 0.15);
    /* Glow Effect */
}

/* Labels */
.form-group label {
    display: block;
    font-weight: var(--font-medium);
    color: var(--navy-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Helper Text */
.text-danger {
    color: #ef4444;
}

.form-text {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* --- CHECKBOX PILLS (STYLE ALA STARTUP) --- */
.checkbox-group-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* 1. Sembunyikan Checkbox Asli */
.checkbox-pill input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* 2. Styling Label sebagai Tombol */
.checkbox-pill {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background-color: var(--white-color);
    border: 1px solid var(--beige-color);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: var(--font-medium);
    user-select: none;
}

/* 3. Efek Hover */
.checkbox-pill:hover {
    border-color: var(--gold-color);
    background-color: #fffbf5;
    transform: translateY(-2px);
}

/* 4. Efek Checked (Aktif) */
/* Menggunakan selector :has() untuk browser modern */
.checkbox-pill:has(input:checked) {
    background-color: var(--navy-color);
    color: var(--gold-color);
    border-color: var(--navy-color);
    box-shadow: 0 4px 6px rgba(0, 3, 43, 0.2);
}

/* Fallback untuk browser lama (jika :has tidak support) */
/* Pastikan di HTML strukturnya: <input> <label> jika ingin support legacy tanpa JS */
/* Tapi kode :has sudah support 90%+ browser modern sekarang */

/* Agreement Checkbox */
.form-check {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
}

.form-check-input {
    width: 20px !important;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--navy-color);
    cursor: pointer;
}

/* Submit Button Customization */
#btnSubmit {
    margin-top: 1.5rem;
    padding: 1rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(223, 193, 165, 0.3);
}

#btnSubmit:hover {
    box-shadow: 0 15px 25px rgba(223, 193, 165, 0.5);
    transform: translateY(-2px);
}

/* Scrollbar di Modal */
.reseller-modal__content::-webkit-scrollbar {
    width: 8px;
}

.reseller-modal__content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.reseller-modal__content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.reseller-modal__content::-webkit-scrollbar-thumb:hover {
    background: var(--gold-color);
}

/* ==================== STYLE TAMBAHAN UNTUK FORM KARIR DINAMIS ==================== */

/* Container Kartu Dinamis */
.dynamic-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.dynamic-card:hover {
    border-color: var(--gold-color);
    background-color: #fffbf5;
    /* Sedikit kuning saat hover */
}

/* Header di dalam kartu (Judul Kiri, Tombol Hapus Kanan) */
.dynamic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 0.5rem;
}

.dynamic-header span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-color);
    text-transform: uppercase;
}

/* Tombol Hapus Row */
.btn-delete-row {
    color: #ff4d4f;
    background: none;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 2px;
    border-radius: 4px;
    transition: 0.2s;
}

.btn-delete-row:hover {
    background-color: #ffccc7;
}

/* Tombol Tambah Kecil */
.button--small-outline {
    background: transparent;
    border: 1px solid var(--navy-color);
    color: var(--navy-color);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.button--small-outline:hover {
    background-color: var(--navy-color);
    color: var(--white-color);
}