/* =========================
   CONTAINER
========================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   HERO
========================= */
.hero-ekstra {
    text-align: start;
    padding: 40px 0 0;
}

.hero-ekstra h1 {
    font-size: 36px;
    font-weight: 600;
    color: #444;
}

.hero-ekstra p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #4b5563;
}

/* =========================
   INTRO DESCRIPTION
========================= */
.ekstra-intro {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.ekstra-intro p {
    font-size: 18px;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    color: #4b5563;
}

/* =========================
   FILTER
========================= */
.filter-ekstra {
    padding: 40px 0 0 0;
    text-align: center;
    background: #ffffff;
}

/* =========================
   CUSTOM DROPDOWN
========================= */

.ekstra-dropdown {
    position: relative;
    display: inline-block;
}

.ekstra-toggle {
    padding: 12px 45px 12px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    /* tambahkan ini */
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.ekstra-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Arrow */
.ekstra-toggle .arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.dropdown.active .arrow {
    transform: translateY(-50%) rotate(-135deg);
}

/* Dropdown Menu */
.ekstra-menu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 100;
}

.ekstra-dropdown.active .ekstra-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Items */
.dropdown-item {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    text-decoration: none;
    color: #1f2937;
    transition: background 0.2s ease;
}

.dropdown-item:hover {
    background: #f3f4f6;
}

/* =========================
   SECTION
========================= */
.ekstra-section {
    padding: 80px 20px;
}

.ekstra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* =========================
   CARD
========================= */
.ekstra-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.ekstra-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.ekstra-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    margin-bottom: 12px;
}

.ekstra-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

.ekstra-link {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #0992C2;
    transition: all 0.3s ease;
}

.ekstra-link:hover {
    text-decoration: underline;
    transform: translateX(3px);
}

/* =========================
   EMPTY
========================= */
.ekstra-empty {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    padding: 40px 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .hero-ekstra h1 {
        font-size: 28px;
    }

    .hero-ekstra p {
        font-size: 16px;
    }

    .ekstra-grid {
        grid-template-columns: 1fr;
    }
}