.e-katalog-wrapper {
    display: flex;
    padding: 50px 50px 100px 50px;
    justify-content: center;
    align-items: center;
}

.e-katalog-content {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;

    align-items: stretch; /* penting */
}
.e-katalog-content a {
    text-decoration: none;
    color: #04293B;
}

.katalog-card {
    padding: 30px;
    text-align: center;
    border: 1px solid #04293B;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;

    display: flex;
    flex-direction: column;
    height: 100%;
}

.katalog-card:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.katalog-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.katalog-card h4 {
    font-size: 18px;
    margin-bottom: 7px;
}

.katalog-card p {
    font-size: 15px;
}

.katalog-card .container {
    padding: 0 10px;
}

.search-katalog {
    padding: 0px 50px;
    display: flex;
    flex-direction: column;
}

/*.search-box {*/
/*    position: relative;*/
/*    width: 100%;*/
/*}*/

/*.search-box input {*/
/*    width: 100%;*/
/*    font-family: 'Poppins', sans-serif;*/
/*    font-size: 15px;*/
/*    padding: 10px 40px 10px 15px;*/
/*    border-radius: 7px;*/
/*    border: 1px solid #04293B;*/
/*}*/

/*.search-box i {*/
/*    position: absolute;*/
/*    right: 12px;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*}*/

.detail-katalog-logo {
    display: flex;
    justify-content: end;
}

.detail-katalog-photo {
    display: flex;
    justify-content: end;
}

.detail-katalog-photo img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    border: #04293B 2px solid;
}

.detail-katalog-logo img {
    width: 500px;
    height: auto;
    object-fit: contain;
}

.detail-katalog-text {
    padding: 0px 100px 100px 100px;
}

.detail-katalog-text p {
    text-align: justify;
    font-size: 15px;
    line-height: 1.8;
}

.detail-katalog-images {
    width: 100%;
    padding: 0px 100px 100px 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.detail-katalog-images img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: #04293B 1px solid;
    border-radius: 20px;
}

.detail-katalog-contact-map {
    display: flex;
    flex-direction: row;
    padding: 0px 100px 100px 100px;
}

.detail-katalog-contact {
    flex: 1;
}

.detail-katalog-contact h1 {
    margin-bottom: 50px;
}

.detail-katalog-map {
    flex: 1;
}

.map-embed {
    width: 700px;
    height: 450px;
    border: 1px solid #04293B;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    
    .e-katalog-wrapper {
                padding: 20px;

    }
    .e-katalog-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .katalog-card {
        padding: 20px;
    }

    .katalog-card img {
        height: 100px;
    }

    .katalog-card h4 {
        font-size: 15px;
    }

    .katalog-card p {
        font-size: 14px;
    }

    .search-katalog {
        padding: 0px 20px;
        display: flex;
        flex-direction: column;
    }

    .detail-katalog-logo img {
        width: 100%;
    }

    .detail-katalog-photo img {
        width: 100%;
        height: 300px;
    }

    .detail-katalog-logo {
        justify-content: center;
    }

    .detail-katalog-photo {
        justify-content: center;
    }

    .detail-katalog-text {
        padding: 0px 50px 50px 50px;
    }

    .detail-katalog-images {
        width: 100%;
        padding: 0px 50px 50px 50px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .detail-katalog-images img {
        width: 100%;
        height: 200px;
    }

    .detail-katalog-text p {
        text-align: justify;
        font-size: 12px;
    }

    .detail-katalog-contact-map {
        display: flex;
        flex-direction: column;
        padding: 0px 50px 50px 50px;
    }

    .map-embed {
        width: 100%;
        height: 400px;
    }

}

/* ========== SEARCH & FILTER STYLES ========== */
        .search-katalogs {
            font-family: 'Poppins', sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 50px;
        }

        .search-katalog {
            width: 100%;
            max-width: 1400px;
        }

        /* Search Box Enhanced */
        .search-wrapper {
            font-family: 'Poppins', sans-serif;
            margin-bottom: 1.5rem;
        }

        .search-box-enhanced {
            font-family: 'Poppins', sans-serif;
            position: relative;
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(10, 37, 64, 0.12);
            display: flex;
            align-items: center;
            padding: 0.5rem;
            transition: all 0.3s ease;
        }

        .search-box-enhanced:focus-within {
            box-shadow: 0 12px 40px rgba(10, 37, 64, 0.18);
            transform: translateY(-2px);
        }

        .search-icon {
            position: absolute;
            left: 1.5rem;
            color: #9ca3af;
            transition: color 0.3s ease;
            pointer-events: none;
            z-index: 2;
        }

        .search-box-enhanced:focus-within .search-icon {
            color: #ffd700;
        }

        .search-input {
            flex: 1;
            border: none;
            outline: none;
            padding: 1rem 1rem 1rem 3.5rem;
            font-size: 1rem;
            color: #1f2937;
            font-family: 'Montserrat', sans-serif;
            background: transparent;
        }

        .search-input::placeholder {
            color: #9ca3af;
        }

        .search-button {
            background: linear-gradient(135deg, #0a2540 0%, #0d2f52 100%);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9375rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(10, 37, 64, 0.3);
        }

        .search-button:hover {
            background: linear-gradient(135deg, #0d2f52 0%, #0a2540 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(10, 37, 64, 0.4);
        }

        /* Filter Section */
        .filter-section {
            font-family: 'Poppins', sans-serif;
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
        }

        .filter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            align-items: end;
        }

        .filter-item {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .filter-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: #374151;
            margin-bottom: 0.25rem;
            font-family: 'Montserrat', sans-serif;
        }

        .filter-label svg {
            color: #ffd700;
        }

        .filter-select {
            width: 100%;
            padding: 0.875rem 1rem;
            border-radius: 10px;
            border: 2px solid #e5e7eb;
            background: #f9fafb;
            color: #1f2937;
            font-weight: 500;
            font-size: 0.9375rem;
            font-family: 'Montserrat', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230a2540' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
            background-color: #f9fafb;
            padding-right: 2.5rem;
        }

        .filter-select:hover {
            border-color: #ffd700;
            background: white;
        }

        .filter-select:focus {
            outline: none;
            border-color: #0a2540;
            background: white;
            box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.1);
        }

        .filter-reset {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .reset-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 0.875rem 1.5rem;
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9375rem;
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
            margin-top: 1.875rem;
        }

        .reset-btn:hover {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
        }

        .reset-btn svg {
            transition: transform 0.3s ease;
        }

        .reset-btn:hover svg {
            transform: rotate(180deg);
        }

        @media (max-width: 1024px) {
            .search-katalog {
                padding: 0;
            }

            .search-box-enhanced {
                flex-direction: column;
                padding: 0.75rem;
                gap: 0.75rem;
            }

            .search-input {
                padding: 0.875rem 1rem;
            }

            .search-icon {
                display: none;
            }

            .search-button {
                width: 100%;
            }

            .filter-section {
                padding: 1.5rem;
            }

            .filter-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .reset-btn {
                margin-top: 0.5rem;
            }
        }
