html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    position: relative;
    background-color: #f4faf6;
}

/* =========================
   MONOGRAM LOGO COLOR ORIGINAL
========================= */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background-image: url("/assets/images/logomitra.png");
    background-repeat: repeat;

    /* ukuran pattern logo */
    background-size: 140px;

    /* 🔥 warna asli (TANPA grayscale) */
    opacity: 0.08;

    /* tetap soft tapi tidak merusak warna */
    filter: brightness(1.05) contrast(1.05);
}

/* Section tetap di atas */
section {
    position: relative;
    z-index: 1;
}

/* Hide scrollbar (optional) */
::-webkit-scrollbar {
    display: none;
}

/* ========================= */
/* MENU */
/* ========================= */
.menu {
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* ========================= */
/* DOCTOR CARD */
/* ========================= */
.doctor-card {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.3s;
    padding: 15px;
    background: #fff;
}

.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.15);
}

.doctor-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.doctor-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.doctor-specialty {
    font-size: 0.8rem;
    color: #777;
}

.doctor-btn {
    background: #5E227F;
    color: #fff;
    border-radius: 6px;
    padding: 8px;
    border: none;
    width: 100%;
    transition: 0.3s;
}

.doctor-btn:hover {
    background: #7b2cbf;
}

/* ========================= */
/* TABLE */
/* ========================= */
.table-doctor-schedule {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.table-doctor-schedule th {
    background: linear-gradient(135deg, #5E227F, #9333ea);
    color: #fff;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.table-doctor-schedule td {
    padding: 12px;
    font-size: 14px;
    vertical-align: middle;
}

.table-doctor-schedule tbody tr {
    transition: 0.3s;
}

.table-doctor-schedule tbody tr:nth-child(odd) {
    background: #fafafa;
}

.table-doctor-schedule tbody tr:hover {
    background: #f3e8ff;
}

/* ========================= */
/* KARTU LAYANAN */
/* ========================= */
.kartu-wrapper {
    padding: 10px;
}

.kartu-item {
    list-style: none;
}

.kartu-link {
    display: block;
    background: #fff;
    padding: 18px;
    margin-right: 90px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.kartu-gambar {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
}

.badge {
    display: inline-block;
    margin: 10px 0;
    padding: 5px 10px;
    font-size: 0.75rem;
    border-radius: 20px;
    background: #f3e8ff;
    color: #5E227F;
}

/* Title */
.kartu-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

/* Button */
.kartu-button {
    width: 100%;
    margin-top: 12px;
    border: 2px solid #5E227F;
    background: none;
    color: #5E227F;
    border-radius: 6px;
    padding: 6px;
    transition: 0.3s;
}

.kartu-link:hover .kartu-button {
    background: #5E227F;
    color: #fff;
}

/* FIX SWIPER KOSONG */
.swiper {
    height: auto !important;
  
}

.swiper-wrapper {
    height: auto !important;
    align-items: stretch !important;
}
.kontainer {
  
    max-width: 1200px;
    margin: 0 auto; /* bikin center ke tengah */
    padding: 0 15px;
}

.kartu-wrapper {

    width: 100%;
    padding: 10px;
    height: auto !important;
}

/* HILANGKAN RUANG BAWAH */
.kontainer.swiper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* ========================= */
/* TEXT */
/* ========================= */
.subjudul {
    color: #5E227F;
    font-weight: 700;
    margin: 20px 0;
}

.promo,
.artikel {
    font-size: 0.9rem;
    padding: 6px;
    background: #5E227F;
    color: #fff;
}

/* ========================= */
/* CAROUSEL PROMO */
/* ========================= */
.promo-carousel,
.artikel-carousel {
    height: 320px;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {

    body {
        font-size: 0.8rem;
    }

    .menu {
        position: fixed;
        width: 100%;
    }

    .promo-carousel,
    .artikel-carousel {
        height: 200px;
    }

    .carousel-img {
        height: 200px;
    }

    .doctor-card {
        margin-bottom: 15px;
    }

    .table-doctor-schedule th,
    .table-doctor-schedule td {
        font-size: 12px;
        padding: 8px;
    }

    /* .kartu-link {
        margin-right: 10px;
    } */
}
/* ================= HERO ================= */
/* HERO WRAPPER */
.hero-section {
    position: relative;
    margin-bottom: 80px;
}

/* HERO BACKGROUND */
.hero-bg {
    height: 620px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    overflow: hidden;
}

/* DESKTOP LARGE */
@media (min-width: 1200px) {
    .hero-bg {
        height: 680px;
        background-size: cover;
        background-position: center center;
    }
}

/* TABLET */
@media (max-width: 991px) {
    .hero-bg {
        height: 520px;
        background-size: cover;
        background-position: center center;
    }
}

/* ================= MOBILE MODE: LANGSUNG TAMPIL FITUR ================= */
@media (max-width: 768px) {

    /* HERO BANNER DIKECILKAN */
    .hero-bg {
        height: 160px !important;
        background-size: cover;
        background-position: center center;
        position: relative;
    }

    /* SEMBUNYIKAN TEKS HERO */
    .hero-title,
    .hero-subtitle,
    .hero-content .btn-contact {
        display: none !important;
    }

    /* OVERLAY HERO TIPIS */
    /*.hero-overlay {*/
    /*    background: linear-gradient(*/
    /*        rgba(0,0,0,0.25),*/
    /*        rgba(0,0,0,0.35)*/
    /*    );*/
    /*    height: 100%;*/
    /*    display: flex;*/
    /*    align-items: flex-end;*/
    /*    justify-content: center;*/
    /*}*/

    /* HERO CONTENT KOSONG */
    .hero-content {
        padding: 0;
        margin: 0;
        max-width: 100%;
    }

    .hero-features {
        margin-top: -60px !important;
        display: flex;
        flex-direction: row !important;
        justify-content: flex-start;
        gap: 12px;
        padding: 0 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        z-index: 10;
    }

    .hero-features {
        display: none !important;
    }

    .feature-box {
        min-width: 260px;
        flex: 0 0 auto;
        scroll-snap-align: center;

        background: #5E227F;
        color: #fff;
        padding: 20px 20px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        gap: 15px;

        box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        transition: 0.3s;
    }

    .feature-box:hover {
        transform: translateY(-5px);
        background: #7b2cbf;
    }

    .feature-box i {
        font-size: 24px;
        min-width: 30px;
        color: #fff;
    }

    .feature-box h5 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 5px;
        color: #fff;
    }

    .feature-box p {
        font-size: 0.9rem;
        margin: 0;
        color: rgba(255,255,255,0.9);
        line-height: 1.4;
    }
}

    .feature-box i {
        font-size: 28px;
        color: #fff;
    }

    .feature-box h5 {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 5px;
        color: #fff;
    }

    .feature-box p {
        font-size: 0.92rem;
        margin: 0;
        color: rgba(255,255,255,0.9);
        line-height: 1.4;
    }

    /* SECTION RAPAT */
    .hero-section {
        margin-bottom: 40px !important;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .hero-bg {
        height: 520px;
        background-size: contain;
        background-position: center top;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
}

/* OVERLAY */
.hero-overlay {
    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.4)
    );
    height: 100%;
    display: flex;
    align-items: center;
}

/* CONTENT */
.hero-content {
    max-width: 600px;
}

/* TITLE */
.hero-title {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
}

/* SUBTITLE */
.hero-subtitle {
    color: #ddd;
    margin-top: 10px;
    font-size: 1rem;
}

/* FLOATING FEATURE */
.hero-features {
    position: relative;
    margin-top: -60px;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 40px;
    z-index: 10;
}

/* FEATURE BOX */
.feature-box {
    background: #5E227F;
    color: #fff;
    padding: 20px 25px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 260px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: #7b2cbf;
}

.feature-box i {
    font-size: 24px;
}
/* BUTTON LIHAT SEMUA */
.btn-lihat {
    background: transparent;
    border: 2px solid #5E227F;
    color: #5E227F;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-lihat:hover {
    background: #5E227F;
    color: #fff;
}

/* GRID KATEGORI */
.kategori-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ITEM */
.kategori-item {
    display: block;
    height: 180px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

/* OVERLAY */
.kategori-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

/* TEXT */
/* .kategori-text {
    position: absolute;
    z-index: 2;
    color: #fff;
    font-weight: 600;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
} */

/* HOVER */
.kategori-item:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .kategori-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.feedback-form {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.rating {
    direction: rtl;
    display: inline-flex;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: 0.3s;
}

.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
    color: #ffc107;
    transform: scale(1.2);
}
/* ========================= */
/* ABOUT SECTION */
/* ========================= */
.about-content {
    background: linear-gradient(135deg, #ffffff, #f9f5ff);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(94, 34, 127, 0.08);
    position: relative;
    overflow: hidden;
}

/* Tag */
.about-content .tag {
    display: inline-block;
    background: rgba(94, 34, 127, 0.1);
    color: #5E227F;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

/* Title */
.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2d0b3a;
    line-height: 1.4;
    margin-bottom: 30px;
}

/* ========================= */
/* STATS */
/* ========================= */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* Card */
.stat {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* Hover effect */
.stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(94, 34, 127, 0.15);
}

/* Number */
.stat h3 {
    font-size: 28px;
    font-weight: 700;
    color: #5E227F;
    margin-bottom: 5px;
}

/* Text */
.stat p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content h2 {
        font-size: 26px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .stats {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 30px 20px;
    }

    .about-content h2 {
        font-size: 22px;
    }
}
/* ========================= */
/* ABOUT SECTION */
/* ========================= */
.about-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9f5ff, #ffffff);
}

/* Container utama */
.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* ========================= */
/* VIDEO */
/* ========================= */
.about-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: 0.4s;
}

.about-video:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(94, 34, 127, 0.25);
}

.about-video iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}

/* overlay elegan */
.about-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    pointer-events: none;
}

/* ========================= */
/* CONTENT */
/* ========================= */
.about-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(94, 34, 127, 0.08);
}

/* Tag */
.about-content .tag {
    display: inline-block;
    background: rgba(94, 34, 127, 0.1);
    color: #5E227F;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
}

/* Title */
.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2d0b3a;
    line-height: 1.4;
    margin-bottom: 25px;
}

/* ========================= */
/* STATS */
/* ========================= */
.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat {
    background: #fafafa;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eee;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(94, 34, 127, 0.15);
}

.stat h3 {
    font-size: 26px;
    font-weight: 700;
    color: #5E227F;
    margin-bottom: 5px;
}

.stat p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content {
        padding: 30px;
    }

    .about-content h2 {
        font-size: 26px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-section {
        padding: 40px 15px;
    }

    .about-content {
        padding: 25px;
    }

    .about-content h2 {
        font-size: 22px;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}

/* layanan mode hp */
@media (max-width: 768px) {

    .kontainer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .kartu-item {
        width: 85% !important; /* bikin card pas di tengah */
        margin: 0 auto;
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
    }

}
.tombol {
    display: inline-block;
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #5E227F, #9333ea);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(94, 34, 127, 0.25);
}

.tombol:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(94, 34, 127, 0.35);
    background: linear-gradient(135deg, #7b2cbf, #a855f7);
}

/* modal buat janji dokter */


/* ================= MODAL BACKDROP ================= */
.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    z-index: 999999;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
}

/* 🔥 AKTIF (CENTER) */
.custom-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* ================= MODAL BOX ================= */
.modal-box {
    width: 90%;
    max-width: 420px;
    background: #fff;
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    position: relative;

    box-shadow: 0 15px 40px rgba(94,34,127,0.25);
    animation: zoomIn 0.3s ease;
}

/* ================= ANIMATION ================= */
@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ================= CLOSE ================= */
.close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    color: #aaa;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #5E227F;
    transform: rotate(90deg);
}

/* ================= TITLE ================= */
.modal-box h3 {
    font-weight: 700;
    color: #5E227F;
    margin-bottom: 20px;
}

/* ================= BUTTON ================= */
.pilihan-btn {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

/* BPJS */
.bpjs-btn {
    background: linear-gradient(135deg, #5E227F, #9333ea);
    color: #fff;
}

.bpjs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(94,34,127,0.4);
}

/* UMUM */
.umum-btn {
    background: #f3e5f5;
    color: #5E227F;
}

.umum-btn:hover {
    background: #e1bee7;
}

/* ================= INFO ================= */
.info-modal p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.info-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, #5E227F, #9333ea);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.info-btn:hover {
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 576px) {
    .modal-box {
        padding: 20px;
        border-radius: 14px;
    }

    .pilihan-btn {
        font-size: 13px;
        padding: 10px;
    }
}

/* ================= ANIMASI ================= */
@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ================= CLOSE BUTTON ================= */
.close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    color: #aaa;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #5E227F;
    transform: rotate(90deg);
}

/* ================= TITLE ================= */
.elegant-modal h3,
.info-modal h3 {
    font-weight: 700;
    color: #5E227F;
    margin-bottom: 20px;
}

/* ================= BUTTON PILIHAN ================= */
.pilihan-btn {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* BPJS */
.bpjs-btn {
    background: linear-gradient(135deg, #5E227F, #9333ea);
    color: #fff;
}

.bpjs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(94,34,127,0.4);
}

/* UMUM */
.umum-btn {
    background: #f3e5f5;
    color: #5E227F;
}

.umum-btn:hover {
    background: #e1bee7;
    transform: translateY(-2px);
}

/* ICON */
.pilihan-btn i {
    font-size: 16px;
    transition: 0.3s;
}

.pilihan-btn:hover i {
    transform: scale(1.2);
}

/* ================= TEXT ================= */
.info-modal p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* ================= BUTTON LINK ================= */
.info-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, #5E227F, #9333ea);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(94,34,127,0.4);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 576px) {

    .elegant-modal,
    .info-modal {
        padding: 20px;
        border-radius: 14px;
    }

    .pilihan-btn {
        font-size: 13px;
        padding: 10px;
    }

    .info-modal p {
        font-size: 13px;
    }
}
        .kategori-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 20px;
        }

        /* card */
        .kategori-item {
            height: 220px;
            background-size: cover;
            background-position: center;
            border-radius: 14px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.4s ease;
        }

        /* overlay */
        .kategori-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
            transition: 0.4s;
        }

        /* text */
        .kategori-text {
            position: relative;
            color: white;
            font-size: 22px;
            font-weight: 600;
            letter-spacing: 0.5px;
            z-index: 2;
            transform: translateY(10px);
            transition: 0.3s;
        }

        /* hover effect */
        .kategori-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        }

        .kategori-item:hover .kategori-overlay {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
        }

        .kategori-item:hover .kategori-text {
            transform: translateY(0);
        }

        /* responsive */
        @media(max-width:992px) {

            .kategori-container {
                grid-template-columns: repeat(2, 1fr);
            }

        }

        @media(max-width:576px) {

            .kategori-container {
                grid-template-columns: 1fr;
            }

        }
